From 720296fe264432af1c41f51b8a3e7d1e05374308 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 15:45:00 +0100 Subject: [PATCH 01/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20configure=20autom?= =?UTF-8?q?ated=20releases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 14 +- .github/workflows/release.yml | 21 + libs/tooling/nx-plugin/config/package.json | 3 + libs/tooling/nx-plugin/config/project.json | 6 + .../tooling/nx-plugin/generators/package.json | 5 +- .../tooling/nx-plugin/generators/project.json | 6 + .../tooling/nx-plugin/validators/package.json | 3 + .../tooling/nx-plugin/validators/project.json | 6 + package-lock.json | 65891 +++++++++------- package.json | 8 + release.config.js | 41 + 11 files changed, 38360 insertions(+), 27644 deletions(-) create mode 100644 .github/workflows/release.yml create mode 100644 release.config.js diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93f3c49..3e1a4c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,9 +14,11 @@ jobs: with: fetch-depth: 0 - uses: nrwl/nx-set-shas@v3 - - run: npm ci - - - run: npx nx format:check - - run: npx nx affected -t lint --parallel=3 - - run: npx nx affected -t test --parallel=3 --configuration=ci - - run: npx nx affected -t build --parallel=3 + - name: Install deps + run: npm ci + - name: Lint affected + run: npx nx affected -t lint + - name: Test affected + run: npx nx affected -t test --configuration=ci + - name: Build affected + run: npx nx affected -t build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..8b42266 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: RELEASE +on: [workflow_dispatch] +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: nrwl/nx-set-shas@v3 + - name: Install deps + run: npm ci + - name: Lint + run: npx nx run-many -t lint + - name: Test + run: npx nx run-many -t test --configuration=ci + - name: Release + run: npx semantic-release + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/libs/tooling/nx-plugin/config/package.json b/libs/tooling/nx-plugin/config/package.json index 0fbb0e6..4615f51 100644 --- a/libs/tooling/nx-plugin/config/package.json +++ b/libs/tooling/nx-plugin/config/package.json @@ -7,5 +7,8 @@ }, "devDependencies": { "@types/inquirer": "^8.2.6" + }, + "publishConfig": { + "access": "public" } } diff --git a/libs/tooling/nx-plugin/config/project.json b/libs/tooling/nx-plugin/config/project.json index 32cdd86..9f5c5f6 100644 --- a/libs/tooling/nx-plugin/config/project.json +++ b/libs/tooling/nx-plugin/config/project.json @@ -38,6 +38,12 @@ "codeCoverage": true } } + }, + "release": { + "executor": "nx-release:build-update-publish", + "options": { + "libName": "@ax/nx-plugin-config" + } } }, "tags": ["scope:tooling"] diff --git a/libs/tooling/nx-plugin/generators/package.json b/libs/tooling/nx-plugin/generators/package.json index bf77ac7..27681bc 100644 --- a/libs/tooling/nx-plugin/generators/package.json +++ b/libs/tooling/nx-plugin/generators/package.json @@ -2,5 +2,8 @@ "name": "@ax/nx-plugin-generators", "version": "0.0.1", "type": "commonjs", - "generators": "./generators.json" + "generators": "./generators.json", + "publishConfig": { + "access": "public" + } } diff --git a/libs/tooling/nx-plugin/generators/project.json b/libs/tooling/nx-plugin/generators/project.json index 2b0f5cc..c641151 100644 --- a/libs/tooling/nx-plugin/generators/project.json +++ b/libs/tooling/nx-plugin/generators/project.json @@ -42,6 +42,12 @@ "codeCoverage": true } } + }, + "release": { + "executor": "nx-release:build-update-publish", + "options": { + "libName": "@ax/nx-plugin-generators" + } } }, "tags": ["scope:tooling"] diff --git a/libs/tooling/nx-plugin/validators/package.json b/libs/tooling/nx-plugin/validators/package.json index f249022..51131cd 100644 --- a/libs/tooling/nx-plugin/validators/package.json +++ b/libs/tooling/nx-plugin/validators/package.json @@ -5,5 +5,8 @@ "generators": "./generators.json", "dependencies": { "chalk": "^5.3.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/libs/tooling/nx-plugin/validators/project.json b/libs/tooling/nx-plugin/validators/project.json index ed76bf0..0feef33 100644 --- a/libs/tooling/nx-plugin/validators/project.json +++ b/libs/tooling/nx-plugin/validators/project.json @@ -42,6 +42,12 @@ "codeCoverage": true } } + }, + "release": { + "executor": "nx-release:build-update-publish", + "options": { + "libName": "@ax/nx-plugin-validators" + } } }, "tags": ["scope:tooling"] diff --git a/package-lock.json b/package-lock.json index 2b8449d..06db705 100644 --- a/package-lock.json +++ b/package-lock.json @@ -46,6 +46,11 @@ "@nx/web": "16.3.2", "@nx/workspace": "16.1.1", "@schematics/angular": "~16.0.0", + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/commit-analyzer": "^11.1.0", + "@semantic-release/exec": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@semantic-release/release-notes-generator": "^12.1.0", "@swc-node/register": "~1.4.2", "@swc/cli": "~0.1.62", "@swc/core": "~1.3.51", @@ -54,6 +59,7 @@ "@types/node": "18.7.1", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", + "conventional-changelog-conventionalcommits": "^7.0.2", "cypress": "^12.11.0", "eslint": "~8.15.0", "eslint-config-prettier": "8.1.0", @@ -72,7 +78,9 @@ "markdown-toc": "^1.2.0", "npm-run-all": "^4.1.5", "nx": "16.1.1", + "nx-release": "^3.1.6", "prettier": "^2.6.2", + "replace-json-property": "^1.9.0", "source-map-explorer": "^2.5.3", "ts-jest": "^29.1.0", "ts-node": "10.9.1", @@ -837,17 +845,62 @@ "dev": true }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", @@ -1328,9 +1381,9 @@ } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "dev": true, "engines": { "node": ">=6.9.0" @@ -1403,13 +1456,13 @@ } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -8235,6 +8288,163 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/core": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", + "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/auth-token": "^4.0.0", + "@octokit/graphql": "^7.0.0", + "@octokit/request": "^8.0.2", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/endpoint": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", + "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/graphql": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", + "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/request": "^8.0.1", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", + "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", + "dev": true, + "peer": true + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", + "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/types": "^12.4.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=5" + } + }, + "node_modules/@octokit/plugin-retry": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", + "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=5" + } + }, + "node_modules/@octokit/plugin-throttling": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", + "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/types": "^12.2.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^5.0.0" + } + }, + "node_modules/@octokit/request": { + "version": "8.1.6", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", + "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/endpoint": "^9.0.0", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/request-error": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", + "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/types": "^12.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/types": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", + "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", + "dev": true, + "peer": true, + "dependencies": { + "@octokit/openapi-types": "^19.1.0" + } + }, "node_modules/@parcel/watcher": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", @@ -8275,6 +8485,51 @@ "node": ">=14" } }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dev": true, + "peer": true, + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true, + "peer": true + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", + "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==", + "dev": true, + "peer": true, + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@schematics/angular": { "version": "16.0.6", "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.6.tgz", @@ -8291,3302 +8546,3132 @@ "yarn": ">= 1.13.0" } }, - "node_modules/@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", + "node_modules/@semantic-release/changelog": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", + "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", "dev": true, + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "fs-extra": "^11.0.0", + "lodash": "^4.17.4" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" } }, - "node_modules/@sigstore/tuf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", - "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", + "node_modules/@semantic-release/commit-analyzer": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", + "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "tuf-js": "^1.1.7" + "conventional-changelog-angular": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "import-from-esm": "^1.0.3", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^18.17 || >=20.6.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "node": ">=14.17" } }, - "node_modules/@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "node_modules/@semantic-release/exec": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/exec/-/exec-6.0.3.tgz", + "integrity": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==", "dev": true, "dependencies": { - "type-detect": "4.0.8" + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "parse-json": "^5.0.0" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" } }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "node_modules/@semantic-release/exec/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "@sinonjs/commons": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@swc-node/core": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", - "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", + "node_modules/@semantic-release/exec/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": ">= 10" + "node": ">=10" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" - }, - "peerDependencies": { - "@swc/core": ">= 1.3" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc-node/register": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", - "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", + "node_modules/@semantic-release/exec/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "dependencies": { - "@swc-node/core": "^1.8.2", - "@swc-node/sourcemap-support": "^0.1.11", - "chalk": "4", - "debug": "^4.3.3", - "pirates": "^4.0.4", - "tslib": "^2.3.1", - "typescript": "^4.5.3" + "engines": { + "node": ">=8" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc-node/register/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@semantic-release/git": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", + "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "micromatch": "^4.0.0", + "p-reduce": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.17" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "semantic-release": ">=18.0.0" } }, - "node_modules/@swc-node/register/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@semantic-release/git/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@swc-node/register/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@semantic-release/git/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc-node/register/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/@semantic-release/git/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@swc-node/register/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@semantic-release/github": { + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", + "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "@octokit/core": "^5.0.0", + "@octokit/plugin-paginate-rest": "^9.0.0", + "@octokit/plugin-retry": "^6.0.0", + "@octokit/plugin-throttling": "^8.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^6.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^3.0.0", + "url-join": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@swc-node/register/node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, + "peer": true, "engines": { - "node": ">=4.2.0" + "node": ">=18" } }, - "node_modules/@swc-node/sourcemap-support": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", - "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", + "node_modules/@semantic-release/github/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", "dev": true, + "peer": true, "dependencies": { - "source-map-support": "^0.5.21" + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/@swc/cli": { - "version": "0.1.62", - "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", - "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", + "node_modules/@semantic-release/github/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, + "peer": true, "dependencies": { - "@mole-inc/bin-wrapper": "^8.0.1", - "commander": "^7.1.0", - "fast-glob": "^3.2.5", - "semver": "^7.3.8", - "slash": "3.0.0", - "source-map": "^0.7.3" - }, - "bin": { - "spack": "bin/spack.js", - "swc": "bin/swc.js", - "swcx": "bin/swcx.js" + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">= 12.13" - }, - "peerDependencies": { - "@swc/core": "^1.2.66", - "chokidar": "^3.5.1" + "node": ">=18" }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc/core": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", - "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", + "node_modules/@semantic-release/github/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, - "hasInstallScript": true, + "peer": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/swc" - }, - "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.67", - "@swc/core-darwin-x64": "1.3.67", - "@swc/core-linux-arm-gnueabihf": "1.3.67", - "@swc/core-linux-arm64-gnu": "1.3.67", - "@swc/core-linux-arm64-musl": "1.3.67", - "@swc/core-linux-x64-gnu": "1.3.67", - "@swc/core-linux-x64-musl": "1.3.67", - "@swc/core-win32-arm64-msvc": "1.3.67", - "@swc/core-win32-ia32-msvc": "1.3.67", - "@swc/core-win32-x64-msvc": "1.3.67" - }, - "peerDependencies": { - "@swc/helpers": "^0.5.0" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12" }, - "peerDependenciesMeta": { - "@swc/helpers": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", - "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/github/node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "peer": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=10" + "node": ">=8.6.0" } }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", - "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/github/node_modules/globby": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "peer": true, + "dependencies": { + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, "engines": { - "node": ">=10" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", - "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", - "cpu": [ - "arm" - ], + "node_modules/@semantic-release/github/node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "peer": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, "engines": { - "node": ">=10" + "node": ">= 14" } }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", - "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/github/node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "peer": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, "engines": { - "node": ">=10" + "node": ">= 14" } }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", - "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/github/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "peer": true, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", - "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/github/node_modules/mime": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.1.tgz", + "integrity": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==", "dev": true, - "optional": true, - "os": [ - "linux" + "funding": [ + "https://github.com/sponsors/broofa" ], + "peer": true, + "bin": { + "mime": "bin/cli.js" + }, "engines": { - "node": ">=10" + "node": ">=16" } }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", - "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/github/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "peer": true, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", - "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/github/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "peer": true, "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", - "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", - "cpu": [ - "ia32" - ], + "node_modules/@semantic-release/github/node_modules/url-join": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", + "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "peer": true, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", - "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/npm": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", + "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "peer": true, + "dependencies": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^8.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.0.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" + }, "engines": { - "node": ">=10" + "node": "^18.17 || >=20" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, - "dependencies": { - "tslib": "^2.4.0" + "peer": true, + "engines": { + "node": ">=18" } }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "node_modules/@semantic-release/npm/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, + "peer": true, "dependencies": { - "defer-to-connect": "^2.0.0" + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", - "dev": true - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "node_modules/@semantic-release/npm/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, + "peer": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, "engines": { - "node": ">= 10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, + "peer": true, "engines": { - "node": ">=10.13.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true + "node_modules/@semantic-release/npm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "peer": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } }, - "node_modules/@tufjs/canonical-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", - "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", + "node_modules/@semantic-release/npm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, + "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@tufjs/models": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", - "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", + "node_modules/@semantic-release/npm/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, + "peer": true, "dependencies": { - "@tufjs/canonical-json": "1.0.0", - "minimatch": "^9.0.0" + "lru-cache": "^10.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@tufjs/models/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@semantic-release/npm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "peer": true, + "engines": { + "node": ">=16.17.0" } }, - "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/@semantic-release/npm/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" + "peer": true, + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "peer": true, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "node_modules/@semantic-release/npm/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "peer": true, + "engines": { + "node": "14 || >=16.14" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "node_modules/@semantic-release/npm/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "node_modules/@semantic-release/npm/node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, + "peer": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "node_modules/@semantic-release/npm/node_modules/normalize-url": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", + "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" + "peer": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "node_modules/@semantic-release/npm/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "peer": true, "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "node_modules/@semantic-release/npm/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "peer": true, "dependencies": { - "@types/node": "*" + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "node_modules/@semantic-release/npm/node_modules/parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, + "peer": true, "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "node_modules/@semantic-release/npm/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, - "dependencies": { - "@types/node": "*" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "node_modules/@semantic-release/npm/node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, + "peer": true, "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/eslint": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", - "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "node_modules/@semantic-release/npm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "peer": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "dev": true + "node_modules/@semantic-release/npm/node_modules/type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "node_modules/@semantic-release/release-notes-generator": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", + "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", "dev": true, "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "conventional-changelog-angular": "^7.0.0", + "conventional-changelog-writer": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^1.0.3", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-pkg-up": "^11.0.0" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", "dev": true, - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "node_modules/@sigstore/protobuf-specs": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", + "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true + "node_modules/@sigstore/tuf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", + "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", + "dev": true, + "dependencies": { + "@sigstore/protobuf-specs": "^0.1.0", + "tuf-js": "^1.1.7" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "node_modules/@types/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", "dev": true }, - "node_modules/@types/http-proxy": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", - "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@types/inquirer": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", - "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", - "dependencies": { - "@types/through": "*", - "rxjs": "^7.2.0" + "node_modules/@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { + "node_modules/@sinonjs/commons": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "*" + "type-detect": "4.0.8" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, "dependencies": { - "@types/istanbul-lib-report": "*" + "@sinonjs/commons": "^3.0.0" } }, - "node_modules/@types/jest": { - "version": "29.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", - "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "node_modules/@swc-node/core": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", + "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", "dev": true, - "dependencies": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@swc/core": ">= 1.3" } }, - "node_modules/@types/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "node_modules/@swc-node/register": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", + "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", "dev": true, "dependencies": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" + "@swc-node/core": "^1.8.2", + "@swc-node/sourcemap-support": "^0.1.11", + "chalk": "4", + "debug": "^4.3.3", + "pirates": "^4.0.4", + "tslib": "^2.3.1", + "typescript": "^4.5.3" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" } }, - "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/lodash": { - "version": "4.14.195", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", - "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", - "dev": true - }, - "node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", - "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true - }, - "node_modules/@types/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", - "dev": true - }, - "node_modules/@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", - "dev": true, - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", - "dev": true, - "dependencies": { - "@types/express": "*" - } - }, - "node_modules/@types/serve-static": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", - "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "node_modules/@swc-node/register/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@types/sinonjs__fake-timers": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", - "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", - "dev": true - }, - "node_modules/@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", - "dev": true - }, - "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "node_modules/@swc-node/register/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@types/node": "*" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@types/stack-utils": { + "node_modules/@swc-node/register/node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "node_modules/@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { - "@types/node": "*" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/@types/tough-cookie": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", - "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "node_modules/@swc-node/register/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "node_modules/@swc-node/register/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@types/node": "*" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "node_modules/@swc-node/register/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "node_modules/@swc-node/sourcemap-support": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", + "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", "dev": true, - "optional": true, "dependencies": { - "@types/node": "*" + "source-map-support": "^0.5.21" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", - "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", + "node_modules/@swc/cli": { + "version": "0.1.62", + "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", + "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/type-utils": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "@mole-inc/bin-wrapper": "^8.0.1", + "commander": "^7.1.0", + "fast-glob": "^3.2.5", + "semver": "^7.3.8", + "slash": "3.0.0", + "source-map": "^0.7.3" }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "bin": { + "spack": "bin/spack.js", + "swc": "bin/swc.js", + "swcx": "bin/swcx.js" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "engines": { + "node": ">= 12.13" }, "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "@swc/core": "^1.2.66", + "chokidar": "^3.5.1" }, "peerDependenciesMeta": { - "typescript": { + "chokidar": { "optional": true } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", - "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", + "node_modules/@swc/core": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", + "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, + "hasInstallScript": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.67", + "@swc/core-darwin-x64": "1.3.67", + "@swc/core-linux-arm-gnueabihf": "1.3.67", + "@swc/core-linux-arm64-gnu": "1.3.67", + "@swc/core-linux-arm64-musl": "1.3.67", + "@swc/core-linux-x64-gnu": "1.3.67", + "@swc/core-linux-x64-musl": "1.3.67", + "@swc/core-win32-arm64-msvc": "1.3.67", + "@swc/core-win32-ia32-msvc": "1.3.67", + "@swc/core-win32-x64-msvc": "1.3.67" }, "peerDependencies": { - "eslint": "*" + "@swc/helpers": "^0.5.0" }, "peerDependenciesMeta": { - "typescript": { + "@swc/helpers": { "optional": true } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", - "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", + "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node": ">=10" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", + "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8.0.0" + "node": ">=10" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", + "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", + "cpu": [ + "arm" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4.0" + "node": ">=10" } }, - "node_modules/@typescript-eslint/parser": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", - "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", + "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "debug": "^4.3.4" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=10" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", - "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", + "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=10" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", - "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", + "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=10" } }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", + "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=10" } }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", + "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=10" } }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", + "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=10" } }, - "node_modules/@typescript-eslint/types": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", - "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", + "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=10" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", - "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "tslib": "^2.4.0" } }, - "node_modules/@typescript-eslint/utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", - "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.7", - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/typescript-estree": "5.59.7", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "defer-to-connect": "^2.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node": ">=10" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", - "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "dev": true }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">= 10" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=10.13.0" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@tufjs/canonical-json": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", + "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/@tufjs/models": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", + "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "@tufjs/canonical-json": "1.0.0", + "minimatch": "^9.0.0" }, "engines": { - "node": ">=8.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@typescript-eslint/utils/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/@tufjs/models/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", - "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", + "node_modules/@tufjs/models/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "eslint-visitor-keys": "^3.3.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@verdaccio/commons-api": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", - "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", "dev": true, "dependencies": { - "http-errors": "2.0.0", - "http-status-codes": "2.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@verdaccio/config": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", - "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "js-yaml": "4.1.0", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "yup": "0.32.11" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@babel/types": "^7.0.0" } }, - "node_modules/@verdaccio/config/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/@verdaccio/config/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/@verdaccio/config/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "@babel/types": "^7.20.7" } }, - "node_modules/@verdaccio/core": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", - "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "dependencies": { - "ajv": "8.12.0", - "core-js": "3.30.2", - "http-errors": "2.0.0", - "http-status-codes": "2.2.0", - "process-warning": "1.0.0", - "semver": "7.5.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/connect": "*", + "@types/node": "*" } }, - "node_modules/@verdaccio/core/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "@types/node": "*" } }, - "node_modules/@verdaccio/core/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" } }, - "node_modules/@verdaccio/core/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@verdaccio/file-locking": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", - "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "dependencies": { - "lockfile": "1.0.4" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/node": "*" } }, - "node_modules/@verdaccio/local-storage": { - "version": "10.3.3", - "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", - "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", "dev": true, "dependencies": { - "@verdaccio/commons-api": "10.2.0", - "@verdaccio/file-locking": "10.3.1", - "@verdaccio/streams": "10.2.1", - "async": "3.2.4", - "debug": "4.3.4", - "lodash": "4.17.21", - "lowdb": "1.0.0", - "mkdirp": "1.0.4" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "node_modules/@verdaccio/local-storage/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/@types/eslint": { + "version": "8.40.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", + "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/@verdaccio/logger-7": { - "version": "6.0.0-6-next.16", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", - "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, "dependencies": { - "@verdaccio/logger-commons": "6.0.0-6-next.39", - "pino": "7.11.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/eslint": "*", + "@types/estree": "*" } }, - "node_modules/@verdaccio/logger-commons": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", - "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/logger-prettify": "6.0.0-6-next.10", - "colorette": "2.0.20", - "debug": "4.3.4" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "node_modules/@verdaccio/logger-prettify": { - "version": "6.0.0-6-next.10", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", - "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", + "node_modules/@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", "dev": true, "dependencies": { - "colorette": "2.0.20", - "dayjs": "1.11.7", - "lodash": "4.17.21", - "pino-abstract-transport": "1.0.0", - "sonic-boom": "3.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@verdaccio/logger-prettify/node_modules/dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", - "dev": true - }, - "node_modules/@verdaccio/middleware": { - "version": "6.0.0-6-next.50", - "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", - "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", "dev": true, "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "2.6.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" - } - }, - "node_modules/@verdaccio/middleware/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" + "@types/node": "*" } }, - "node_modules/@verdaccio/middleware/node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "dev": true }, - "node_modules/@verdaccio/search": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", - "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", - "dev": true, - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" - } + "node_modules/@types/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "dev": true }, - "node_modules/@verdaccio/signature": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", - "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dev": true, "dependencies": { - "debug": "4.3.4", - "jsonwebtoken": "9.0.0", - "lodash": "4.17.21" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" - } - }, - "node_modules/@verdaccio/streams": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", - "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", - "dev": true, - "engines": { - "node": ">=12", - "npm": ">=5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/node": "*" } }, - "node_modules/@verdaccio/tarball": { - "version": "11.0.0-6-next.40", - "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", - "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", - "dev": true, + "node_modules/@types/inquirer": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", + "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "lodash": "4.17.21" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/through": "*", + "rxjs": "^7.2.0" } }, - "node_modules/@verdaccio/ui-theme": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", - "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", "dev": true }, - "node_modules/@verdaccio/url": { - "version": "11.0.0-6-next.37", - "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", - "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "debug": "4.3.4", - "lodash": "4.17.21", - "validator": "13.9.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@verdaccio/utils": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", - "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "semver": "7.5.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "@types/istanbul-lib-report": "*" } }, - "node_modules/@verdaccio/utils/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@types/jest": { + "version": "29.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", + "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "expect": "^29.0.0", + "pretty-format": "^29.0.0" } }, - "node_modules/@verdaccio/utils/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" } }, - "node_modules/@verdaccio/utils/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "@types/node": "*" } }, - "node_modules/@verdaccio/utils/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/@types/lodash": { + "version": "4.14.195", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", + "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", "dev": true }, - "node_modules/@vitejs/plugin-basic-ssl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", - "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", - "dev": true, - "engines": { - "node": ">=14.6.0" - }, - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" - } + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", - "dev": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } + "node_modules/@types/node": { + "version": "18.7.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", + "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", "dev": true }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" + "@types/node": "*" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "dev": true }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "node_modules/@types/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "dev": true, "dependencies": { - "@xtuc/ieee754": "^1.2.0" + "@types/express": "*" } }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "node_modules/@types/serve-static": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", + "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", "dev": true, "dependencies": { - "@xtuc/long": "4.2.2" + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "node_modules/@types/sinonjs__fake-timers": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", "dev": true }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } + "node_modules/@types/sizzle": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@types/node": "*" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", - "dev": true, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/through": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", + "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@types/node": "*" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "node_modules/@types/tough-cookie": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", + "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@types/node": "*" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" + "@types/yargs-parser": "*" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/@yarnpkg/lockfile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", - "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, - "node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.48", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", - "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", + "node_modules/@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", "dev": true, + "optional": true, "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=18.12.0" + "@types/node": "*" } }, - "node_modules/@zkochan/js-yaml": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", - "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", + "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/type-utils": "5.60.1", + "@typescript-eslint/utils": "5.60.1", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@zkochan/js-yaml/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", + "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", "dev": true, "dependencies": { - "event-target-shim": "^5.0.0" + "@typescript-eslint/typescript-estree": "5.60.1", + "@typescript-eslint/utils": "5.60.1", + "debug": "^4.3.4", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=6.5" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", + "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", "dev": true, "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/typescript-estree": "5.60.1", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" }, "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true, - "bin": { - "acorn": "bin/acorn" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "dev": true, - "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" - } - }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "dev": true, "peerDependencies": { - "acorn": "^8" + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=4.0" } }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "node_modules/@typescript-eslint/parser": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", + "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/typescript-estree": "5.60.1", + "debug": "^4.3.4" + }, "engines": { - "node": ">= 10.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", + "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", "dev": true, "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/visitor-keys": "5.60.1" }, "engines": { - "node": ">=8.9" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", + "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "@typescript-eslint/typescript-estree": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "debug": "^4.3.4", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=8.9.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", "dev": true, - "dependencies": { - "debug": "4" - }, "engines": { - "node": ">= 6.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", "dev": true, "dependencies": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": ">= 8.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", "dev": true, "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "node_modules/@typescript-eslint/types": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", + "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", + "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", "dev": true, "dependencies": { - "ajv": "^8.0.0" + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/visitor-keys": "5.60.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, - "peerDependencies": { - "ajv": "^8.0.0" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, "peerDependenciesMeta": { - "ajv": { + "typescript": { "optional": true } } }, - "node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "node_modules/@typescript-eslint/utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", + "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.3" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.7", + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/typescript-estree": "5.59.7", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, "engines": { - "node": ">=6" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", + "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7" }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", "dev": true, "dependencies": { - "ansi-wrap": "0.1.0" + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" + }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=4" + "node": ">=8.0.0" } }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" } }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", + "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", "dev": true, "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "@typescript-eslint/types": "5.60.1", + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">= 8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/apache-md5": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", - "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", + "node_modules/@verdaccio/commons-api": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", + "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", "dev": true, + "dependencies": { + "http-errors": "2.0.0", + "http-status-codes": "2.2.0" + }, "engines": { "node": ">=8" - } - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/are-we-there-yet/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/@verdaccio/config": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", + "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "js-yaml": "4.1.0", + "lodash": "4.17.21", + "minimatch": "3.1.2", + "yup": "0.32.11" }, "engines": { - "node": ">= 6" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "node_modules/@verdaccio/config/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/@verdaccio/config/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "node_modules/@verdaccio/config/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "node_modules/@verdaccio/core": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", + "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "ajv": "8.12.0", + "core-js": "3.30.2", + "http-errors": "2.0.0", + "http-status-codes": "2.2.0", + "process-warning": "1.0.0", + "semver": "7.5.0" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "node_modules/@verdaccio/core/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/@verdaccio/core/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "node_modules/@verdaccio/core/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@verdaccio/file-locking": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", + "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "lockfile": "1.0.4" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "node_modules/@verdaccio/local-storage": { + "version": "10.3.3", + "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", + "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "@verdaccio/commons-api": "10.2.0", + "@verdaccio/file-locking": "10.3.1", + "@verdaccio/streams": "10.2.1", + "async": "3.2.4", + "debug": "4.3.4", + "lodash": "4.17.21", + "lowdb": "1.0.0", + "mkdirp": "1.0.4" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "node_modules/@verdaccio/local-storage/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "node_modules/@verdaccio/logger-7": { + "version": "6.0.0-6-next.16", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", + "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", "dev": true, "dependencies": { - "safer-buffer": "~2.1.0" + "@verdaccio/logger-commons": "6.0.0-6-next.39", + "pino": "7.11.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "node_modules/@verdaccio/logger-commons": { + "version": "6.0.0-6-next.39", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", + "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", "dev": true, + "dependencies": { + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/logger-prettify": "6.0.0-6-next.10", + "colorette": "2.0.20", + "debug": "4.3.4" + }, "engines": { - "node": ">=0.8" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/@verdaccio/logger-prettify": { + "version": "6.0.0-6-next.10", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", + "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", "dev": true, + "dependencies": { + "colorette": "2.0.20", + "dayjs": "1.11.7", + "lodash": "4.17.21", + "pino-abstract-transport": "1.0.0", + "sonic-boom": "3.3.0" + }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "node_modules/@verdaccio/logger-prettify/node_modules/dayjs": { + "version": "1.11.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", "dev": true }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "node_modules/@verdaccio/middleware": { + "version": "6.0.0-6-next.50", + "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", + "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", "dev": true, + "dependencies": { + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "express": "4.18.2", + "express-rate-limit": "5.5.1", + "lodash": "4.17.21", + "lru-cache": "7.18.3", + "mime": "2.6.0" + }, "engines": { - "node": ">= 4.0.0" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "node_modules/@verdaccio/middleware/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/autolinker": { - "version": "0.28.1", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", - "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", - "dev": true, - "dependencies": { - "gulp-header": "^1.7.1" + "node": ">=12" } }, - "node_modules/autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "node_modules/@verdaccio/middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } - ], - "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, "bin": { - "autoprefixer": "bin/autoprefixer" + "mime": "cli.js" }, "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=4.0.0" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "node_modules/@verdaccio/search": { + "version": "6.0.0-6-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", + "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=12", + "npm": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "node_modules/@verdaccio/signature": { + "version": "6.0.0-6-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", + "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", "dev": true, + "dependencies": { + "debug": "4.3.4", + "jsonwebtoken": "9.0.0", + "lodash": "4.17.21" + }, "engines": { - "node": "*" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true - }, - "node_modules/axios": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", - "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", + "node_modules/@verdaccio/streams": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", + "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", "dev": true, - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "engines": { + "node": ">=12", + "npm": ">=5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/axios/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/@verdaccio/tarball": { + "version": "11.0.0-6-next.40", + "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", + "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "lodash": "4.17.21" }, "engines": { - "node": ">= 6" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/axios/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "node_modules/@verdaccio/ui-theme": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", + "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", "dev": true }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "node_modules/@verdaccio/url": { + "version": "11.0.0-6-next.37", + "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", + "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "@verdaccio/core": "6.0.0-6-next.71", + "debug": "4.3.4", + "lodash": "4.17.21", + "validator": "13.9.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "node_modules/@verdaccio/utils": { + "version": "6.0.0-6-next.39", + "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", + "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" + "@verdaccio/core": "6.0.0-6-next.71", + "lodash": "4.17.21", + "minimatch": "3.1.2", + "semver": "7.5.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" }, - "peerDependencies": { - "@babel/core": "^7.8.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@verdaccio/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=10" } }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@verdaccio/utils/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "*" } }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@verdaccio/utils/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" } }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/@verdaccio/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@vitejs/plugin-basic-ssl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", + "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=14.6.0" + }, + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0" } }, - "node_modules/babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dev": true, "dependencies": { - "find-cache-dir": "^3.3.2", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/babel-plugin-const-enum": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", - "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-typescript": "^7.3.3", - "@babel/traverse": "^7.16.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dev": true, "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dev": true, "dependencies": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/babel-plugin-transform-typescript-metadata": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", - "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0" + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "node_modules/@yarnpkg/parsers": { + "version": "3.0.0-rc.48", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", + "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", "dev": true, "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "engines": { + "node": ">=18.12.0" } }, - "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "node_modules/@zkochan/js-yaml": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", + "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "argparse": "^2.0.1" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/@zkochan/js-yaml/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, "dependencies": { - "safe-buffer": "5.1.2" + "event-target-shim": "^5.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=6.5" } }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "dev": true, "dependencies": { - "tweetnacl": "^0.14.3" + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" } }, - "node_modules/bcryptjs": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", - "dev": true + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "engines": { - "node": "*" + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/bin-check": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, - "dependencies": { - "execa": "^0.7.0", - "executable": "^4.1.0" - }, "engines": { - "node": ">=4" + "node": ">=0.4.0" } }, - "node_modules/bin-version": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", - "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true, - "dependencies": { - "execa": "^5.0.0", - "find-versions": "^5.0.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 10.0.0" } }, - "node_modules/bin-version-check": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", - "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "dev": true, "dependencies": { - "bin-version": "^6.0.0", - "semver": "^7.5.3", - "semver-truncate": "^3.0.0" + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8.9" } }, - "node_modules/bin-version-check/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": ">=10" + "node": ">=8.9.0" } }, - "node_modules/bin-version-check/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "debug": "4" }, "engines": { - "node": ">=10" + "node": ">= 6.0.0" } }, - "node_modules/bin-version-check/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/bin-version/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/agentkeepalive": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", + "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" + "debug": "^4.1.0", + "depd": "^2.0.0", + "humanize-ms": "^1.2.1" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/bin-version/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8.0.0" } }, - "node_modules/bin-version/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, "engines": { "node": ">=8" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "ajv": "^8.0.0" }, - "engines": { - "node": ">= 6" + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/blob-util": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", - "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "fast-deep-equal": "^3.1.3" }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "type-fest": "^0.21.3" }, "engines": { - "node": ">=0.6" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" } }, - "node_modules/bonjour-service/node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, "engines": { "node": ">=8" } }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" + "color-convert": "^1.9.0" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=4" } }, - "node_modules/bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", "dev": true, - "dependencies": { - "fast-json-stable-stringify": "2.x" - }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "node_modules/ansicolors": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", + "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", + "dev": true, + "peer": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "dependencies": { - "node-int64": "^0.4.0" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/btoa": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", - "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", + "node_modules/apache-md5": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", + "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", "dev": true, - "bin": { - "btoa": "bin/btoa.js" - }, "engines": { - "node": ">= 0.4.0" + "node": ">=8" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", "dev": true, "funding": [ { @@ -11601,3115 +11686,2992 @@ "type": "consulting", "url": "https://feross.org/support" } - ], + ] + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "dev": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, "engines": { - "node": "*" + "node": ">= 6" } }, - "node_modules/buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", - "dev": true - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "dependencies": { - "semver": "^7.0.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/argv-formatter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", + "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", "dev": true, - "engines": { - "node": ">= 0.8" - } + "peer": true }, - "node_modules/cacache": { - "version": "17.0.6", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", - "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dev": true, "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "deep-equal": "^2.0.5" } }, - "node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacache/node_modules/glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", "dev": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" - }, - "bin": { - "glob": "dist/cjs/src/bin.js" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacache/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, "engines": { - "node": ">=10.6.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", "dev": true, "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=8" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "safer-buffer": "~2.1.0" } }, - "node_modules/cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.8" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 4.0.0" } }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/atomic-sleep": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", + "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=8.0.0" } }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "node_modules/autolinker": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", + "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "gulp-header": "^1.7.1" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001511", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", - "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "dev": true, "funding": [ { "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" + "url": "https://tidelift.com/funding/github/npm/autoprefixer" } - ] - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, - "node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": "^10 || ^12 || >=14" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/chardet": { + "node_modules/aws-sign2": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/check-more-types": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": "*" } }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" - } + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "dev": true }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "node_modules/axios": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", + "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", "dev": true, - "engines": { - "node": ">=6.0" + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "node_modules/axios/node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "dev": true }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "deep-equal": "^2.0.5" } }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", "dev": true, "dependencies": { - "restore-cursor": "^3.1.0" + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", - "dev": true, - "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.8.0" } }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "string-width": "^4.2.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "10.* || >= 12.*" + "node": ">=8" }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "color-name": "~1.1.4" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/babel-loader": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", + "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", "dev": true, "dependencies": { - "ansi-regex": "^6.0.1" + "find-cache-dir": "^3.3.2", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">= 14.15.0" }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/clipanion": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", - "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", + "node_modules/babel-plugin-const-enum": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", + "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", "dev": true, "dependencies": { - "typanion": "^3.8.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-typescript": "^7.3.3", + "@babel/traverse": "^7.16.0" }, "peerDependencies": { - "typanion": "*" + "@babel/core": "^7.0.0-0" } }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, "engines": { - "node": ">=0.8" + "node": ">=8" } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/clone-deep/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" } }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", "dev": true, "dependencies": { - "mimic-response": "^1.0.0" + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/coffee-script": { - "version": "1.12.7", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", - "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", - "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", "dev": true, - "bin": { - "cake": "bin/cake", - "coffee": "bin/coffee" + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" }, - "engines": { - "node": ">=0.8.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", "dev": true, "dependencies": { - "color-name": "1.1.3" + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "node_modules/babel-plugin-transform-typescript-metadata": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", + "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", "dev": true, - "bin": { - "color-support": "bin.js" + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0" } }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { - "delayed-stream": "~1.0.0" + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, "engines": { - "node": ">=4.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", "dev": true, "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "safe-buffer": "5.1.2" }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true, "engines": { "node": ">= 0.8" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/compression/node_modules/safe-buffer": { + "node_modules/basic-auth/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/concat-with-sourcemaps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "tweetnacl": "^0.14.3" } }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "node_modules/bcryptjs": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", "dev": true }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true, - "engines": { - "node": ">=0.8" - } + "peer": true }, - "node_modules/connect-pause": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", - "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, "engines": { "node": "*" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", "dev": true, "dependencies": { - "safe-buffer": "5.2.1" + "execa": "^0.7.0", + "executable": "^4.1.0" }, "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true, - "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/cookies": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", - "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", + "node_modules/bin-version": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", + "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", "dev": true, "dependencies": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" + "execa": "^5.0.0", + "find-versions": "^5.0.0" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "dependencies": { - "is-what": "^3.14.1" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/mesqueeb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "node_modules/bin-version-check": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", + "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", "dev": true, "dependencies": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "bin-version": "^6.0.0", + "semver": "^7.5.3", + "semver-truncate": "^3.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copy-webpack-plugin/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "node_modules/bin-version-check/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "yallist": "^4.0.0" }, "engines": { - "node": ">=8.6.0" + "node": ">=10" } }, - "node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/bin-version-check/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/bin-version-check/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/bin-version/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", - "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", + "node_modules/bin-version/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/bin-version/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/core-js": { - "version": "3.30.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", - "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">=8" } }, - "node_modules/core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "dependencies": { - "browserslist": "^4.21.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "object-assign": "^4", - "vary": "^1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">= 6" } }, - "node_modules/corser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", - "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } + "node_modules/blob-util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", + "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", + "dev": true }, - "node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dev": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" + "ms": "2.0.0" } }, - "node_modules/critters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/critters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "side-channel": "^1.0.4" }, "engines": { - "node": ">=10" + "node": ">=0.6" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/critters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/critters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/bonjour-service/node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "dev": true }, - "node_modules/critters/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, - "node_modules/critters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/bottleneck": { + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", + "dev": true, + "peer": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "fill-range": "^7.0.1" }, "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/css-declaration-sorter": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", - "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "dev": true, - "engines": { - "node": "^10 || ^12 || >=14" + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, - "peerDependencies": { - "postcss": "^8.0.9" + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/css-loader": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", - "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.19", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" + "fast-json-stable-stringify": "2.x" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "node": ">= 6" } }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", - "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "cssnano": "^6.0.1", - "jest-worker": "^29.4.3", - "postcss": "^8.4.24", - "schema-utils": "^4.0.1", - "serialize-javascript": "^6.0.1" + "node-int64": "^0.4.0" + } + }, + "node_modules/btoa": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", + "dev": true, + "bin": { + "btoa": "bin/btoa.js" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "@swc/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "lightningcss": { - "optional": true - } + "node": ">= 0.4.0" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "type": "github", + "url": "https://github.com/sponsors/feross" }, { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" + "type": "patreon", + "url": "https://www.patreon.com/feross" }, { - "type": "github", - "url": "https://github.com/sponsors/ai" + "type": "consulting", + "url": "https://feross.org/support" } ], "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": "*" } }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "dev": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", "dev": true, "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "semver": "^7.0.0" } }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "node": ">= 0.8" } }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/cacache": { + "version": "17.0.6", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", + "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", "dev": true, - "bin": { - "cssesc": "bin/cssesc" + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/cssnano": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", - "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "cssnano-preset-default": "^6.0.1", - "lilconfig": "^2.1.0" + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2", + "path-scurry": "^1.10.0" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/cssnano-preset-default": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", - "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", + "node_modules/cacache/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^4.0.0", - "postcss-calc": "^9.0.0", - "postcss-colormin": "^6.0.0", - "postcss-convert-values": "^6.0.0", - "postcss-discard-comments": "^6.0.0", - "postcss-discard-duplicates": "^6.0.0", - "postcss-discard-empty": "^6.0.0", - "postcss-discard-overridden": "^6.0.0", - "postcss-merge-longhand": "^6.0.0", - "postcss-merge-rules": "^6.0.1", - "postcss-minify-font-values": "^6.0.0", - "postcss-minify-gradients": "^6.0.0", - "postcss-minify-params": "^6.0.0", - "postcss-minify-selectors": "^6.0.0", - "postcss-normalize-charset": "^6.0.0", - "postcss-normalize-display-values": "^6.0.0", - "postcss-normalize-positions": "^6.0.0", - "postcss-normalize-repeat-style": "^6.0.0", - "postcss-normalize-string": "^6.0.0", - "postcss-normalize-timing-functions": "^6.0.0", - "postcss-normalize-unicode": "^6.0.0", - "postcss-normalize-url": "^6.0.0", - "postcss-normalize-whitespace": "^6.0.0", - "postcss-ordered-values": "^6.0.0", - "postcss-reduce-initial": "^6.0.0", - "postcss-reduce-transforms": "^6.0.0", - "postcss-svgo": "^6.0.0", - "postcss-unique-selectors": "^6.0.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/cssnano-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", - "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=10.6.0" } }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", "dev": true, "dependencies": { - "css-tree": "~2.2.0" + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "node": ">=8" } }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" + "pump": "^3.0.0" }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true - }, - "node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "dev": true - }, - "node_modules/cssstyle": { + "node_modules/cachedir": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", + "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", "dev": true, - "dependencies": { - "cssom": "~0.3.6" - }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/cypress": { - "version": "12.16.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", - "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@cypress/request": "^2.88.10", - "@cypress/xvfb": "^1.2.4", - "@types/node": "^14.14.31", - "@types/sinonjs__fake-timers": "8.1.1", - "@types/sizzle": "^2.3.2", - "arch": "^2.2.0", - "blob-util": "^2.0.2", - "bluebird": "^3.7.2", - "buffer": "^5.6.0", - "cachedir": "^2.3.0", - "chalk": "^4.1.0", - "check-more-types": "^2.24.0", - "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.1", - "commander": "^6.2.1", - "common-tags": "^1.8.0", - "dayjs": "^1.10.4", - "debug": "^4.3.4", - "enquirer": "^2.3.6", - "eventemitter2": "6.4.7", - "execa": "4.1.0", - "executable": "^4.1.1", - "extract-zip": "2.0.1", - "figures": "^3.2.0", - "fs-extra": "^9.1.0", - "getos": "^3.2.1", - "is-ci": "^3.0.0", - "is-installed-globally": "~0.4.0", - "lazy-ass": "^1.6.0", - "listr2": "^3.8.3", - "lodash": "^4.17.21", - "log-symbols": "^4.0.0", - "minimist": "^1.2.8", - "ospath": "^1.2.2", - "pretty-bytes": "^5.6.0", - "proxy-from-env": "1.0.0", - "request-progress": "^3.0.0", - "semver": "^7.3.2", - "supports-color": "^8.1.1", - "tmp": "~0.2.1", - "untildify": "^4.0.0", - "yauzl": "^2.10.0" - }, - "bin": { - "cypress": "bin/cypress" + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" }, - "engines": { - "node": "^14.0.0 || ^16.0.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cypress/node_modules/@types/node": { - "version": "14.18.53", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", - "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", - "dev": true + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "node_modules/cypress/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=6" } }, - "node_modules/cypress/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/cypress/node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/caniuse-lite": { + "version": "1.0.30001511", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", + "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/cardinal": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", + "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" }, + "bin": { + "cdl": "bin/cdl.js" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "engines": { - "node": ">=8" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/cypress/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=10" } }, - "node_modules/cypress/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, - "node_modules/cypress/node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "node_modules/check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", "dev": true, "engines": { - "node": ">= 6" + "node": ">= 0.8.0" } }, - "node_modules/cypress/node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">=10" + "node": ">= 8.10.0" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/cypress/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, "engines": { "node": ">=10" } }, - "node_modules/cypress/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6.0" } }, - "node_modules/cypress/node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "engines": { - "node": ">=8.12.0" + "node": ">=8" } }, - "node_modules/cypress/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "assert-plus": "^1.0.0" + "restore-cursor": "^3.1.0" }, "engines": { - "node": ">=0.10" + "node": ">=8" } }, - "node_modules/data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "node_modules/cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", "dev": true, - "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - }, "engines": { - "node": ">=12" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dayjs": { - "version": "1.11.9", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", - "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", "dev": true, "dependencies": { - "ms": "2.1.2" + "string-width": "^4.2.0" }, "engines": { - "node": ">=6.0" + "node": "10.* || >= 12.*" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, "dependencies": { - "mimic-response": "^3.1.0" + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "node_modules/cli-truncate/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, - "node_modules/deep-equal": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", - "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "node_modules/cli-truncate/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.0", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, "engines": { "node": ">= 10" } }, - "node_modules/default-gateway/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/clipanion": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", + "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" + "typanion": "^3.8.0" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "peerDependencies": { + "typanion": "*" } }, - "node_modules/default-gateway/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/default-gateway/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=6" } }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "node_modules/clone-deep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", "dev": true, "dependencies": { - "clone": "^1.0.2" + "mimic-response": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "engines": { - "node": ">=10" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/coffee-script": { + "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", + "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", "dev": true, + "bin": { + "cake": "bin/cake", + "coffee": "bin/coffee" + }, "engines": { - "node": ">=8" + "node": ">=0.8.0" } }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "color-name": "1.1.3" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, - "engines": { - "node": ">=0.4.0" + "bin": { + "color-support": "bin.js" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, "engines": { "node": ">= 0.8" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">= 10" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4.0.0" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "node_modules/detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", "dev": true, "dependencies": { - "address": "^1.0.1", - "debug": "4" - }, - "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" } }, - "node_modules/diacritics-map": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", - "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, "engines": { - "node": ">=0.8.0" + "node": ">= 0.6" } }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, "engines": { - "node": ">=0.3.1" + "node": ">= 0.8.0" } }, - "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.8" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" + "ms": "2.0.0" } }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/dns-packet": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", - "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, + "engines": [ + "node >= 0.8" + ], "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", "dev": true, "dependencies": { - "esutils": "^2.0.2" - }, + "source-map": "^0.6.1" + } + }, + "node_modules/concat-with-sourcemaps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { - "node": ">=6.0.0" + "node": ">=0.10.0" } }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, + "peer": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "ini": "^1.3.4", + "proto-list": "~1.2.1" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] + "peer": true }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true, - "dependencies": { - "webidl-conversions": "^7.0.0" - }, "engines": { - "node": ">=12" + "node": ">=0.8" } }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", "dev": true, - "dependencies": { - "domelementtype": "^2.2.0" - }, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": "*" } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "safe-buffer": "5.2.1" }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "engines": { + "node": ">= 0.6" } }, - "node_modules/dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.6" } }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "node_modules/conventional-changelog-angular": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", + "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", "dev": true, "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=16" } }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/conventional-changelog-conventionalcommits": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", + "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "compare-func": "^2.0.0" }, "engines": { - "node": ">= 6" + "node": ">=16" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "node_modules/conventional-changelog-writer": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz", + "integrity": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==", "dev": true, "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "conventional-commits-filter": "^4.0.0", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "meow": "^12.0.1", + "semver": "^7.5.2", + "split2": "^4.0.0" + }, + "bin": { + "conventional-changelog-writer": "cli.mjs" + }, + "engines": { + "node": ">=16" } }, - "node_modules/ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "node_modules/conventional-changelog-writer/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "safe-buffer": "^5.0.1" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "node_modules/conventional-changelog-writer/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "jake": "^10.8.5" + "lru-cache": "^6.0.0" }, "bin": { - "ejs": "bin/cli.js" + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.447", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", - "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", + "node_modules/conventional-changelog-writer/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "node_modules/conventional-commits-filter": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", + "integrity": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==", "dev": true, "engines": { - "node": ">=12" + "node": ">=16" + } + }, + "node_modules/conventional-commits-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", + "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", + "dev": true, + "dependencies": { + "is-text-path": "^2.0.0", + "JSONStream": "^1.3.5", + "meow": "^12.0.1", + "split2": "^4.0.0" }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "bin": { + "conventional-commits-parser": "cli.mjs" + }, + "engines": { + "node": ">=16" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true, "engines": { - "node": ">= 4" + "node": ">= 0.6" } }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", "dev": true, + "dependencies": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + }, "engines": { "node": ">= 0.8" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, - "optional": true, "dependencies": { - "iconv-lite": "^0.6.2" + "is-what": "^3.14.1" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "dev": true, - "optional": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/copy-webpack-plugin/node_modules/fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", "dev": true, "dependencies": { - "once": "^1.4.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" } }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=10.13.0" + "node": ">= 6" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "ansi-colors": "^4.1.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=8.6" + "node": ">=10.13.0" } }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", + "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true, "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "node_modules/core-js": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "dev": true, - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "node_modules/core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", "dev": true, - "optional": true, "dependencies": { - "prr": "~1.0.1" + "browserslist": "^4.21.5" }, - "bin": { - "errno": "cli.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "dependencies": { - "is-arrayish": "^0.2.1" - } + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true }, - "node_modules/errorhandler": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", - "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, "dependencies": { - "accepts": "~1.3.7", - "escape-html": "~1.0.3" + "object-assign": "^4", + "vary": "^1" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.10" } }, - "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "node_modules/corser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", + "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.4.0" } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/es-module-lexer": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", - "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "node_modules/critters": { + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "chalk": "^4.1.0", + "css-select": "^4.2.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "postcss": "^8.3.7", + "pretty-bytes": "^5.3.0" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/critters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "has": "^1.0.3" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/critters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", + "node_modules/critters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" + "node": ">=7.0.0" } }, - "node_modules/esbuild-wasm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", - "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", + "node_modules/critters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/critters/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/critters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "has-flag": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/escape-string-regexp": { + "node_modules/crypto-random-string": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, + "peer": true, + "dependencies": { + "type-fest": "^1.0.1" + }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, + "peer": true, "engines": { - "node": ">=6.0" + "node": ">=10" }, - "optionalDependencies": { - "source-map": "~0.6.1" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/css-declaration-sorter": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", + "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", "dev": true, - "optional": true, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "node_modules/css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 12.13.0" }, "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", - "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "eslint": ">=7.0.0" + "webpack": "^5.0.0" } }, - "node_modules/eslint-config-standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", - "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", + "node_modules/css-minimizer-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" + }, "engines": { - "node": ">=12.0.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "eslint": "^8.0.1", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", - "eslint-plugin-promise": "^6.0.0" + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "@swc/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "lightningcss": { + "optional": true + } } }, - "node_modules/eslint-config-standard-jsx": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", - "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", + "node_modules/css-minimizer-webpack-plugin/node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "peerDependencies": { - "eslint": "^8.8.0", - "eslint-plugin-react": "^7.28.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/eslint-plugin-cypress": { - "version": "2.13.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", - "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, - "dependencies": { - "globals": "^11.12.0" + "bin": { + "cssesc": "bin/cssesc" }, - "peerDependencies": { - "eslint": ">= 3.2.1" + "engines": { + "node": ">=4" } }, - "node_modules/eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "node_modules/cssnano": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", + "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", "dev": true, "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" + "cssnano-preset-default": "^6.0.1", + "lilconfig": "^2.1.0" }, "engines": { - "node": ">=8.10.0" + "node": "^14 || ^16 || >=18.0" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" + "type": "opencollective", + "url": "https://opencollective.com/cssnano" }, "peerDependencies": { - "eslint": ">=4.19.1" + "postcss": "^8.2.15" } }, - "node_modules/eslint-plugin-es/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "node_modules/cssnano-preset-default": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", + "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^4.0.0", + "postcss-calc": "^9.0.0", + "postcss-colormin": "^6.0.0", + "postcss-convert-values": "^6.0.0", + "postcss-discard-comments": "^6.0.0", + "postcss-discard-duplicates": "^6.0.0", + "postcss-discard-empty": "^6.0.0", + "postcss-discard-overridden": "^6.0.0", + "postcss-merge-longhand": "^6.0.0", + "postcss-merge-rules": "^6.0.1", + "postcss-minify-font-values": "^6.0.0", + "postcss-minify-gradients": "^6.0.0", + "postcss-minify-params": "^6.0.0", + "postcss-minify-selectors": "^6.0.0", + "postcss-normalize-charset": "^6.0.0", + "postcss-normalize-display-values": "^6.0.0", + "postcss-normalize-positions": "^6.0.0", + "postcss-normalize-repeat-style": "^6.0.0", + "postcss-normalize-string": "^6.0.0", + "postcss-normalize-timing-functions": "^6.0.0", + "postcss-normalize-unicode": "^6.0.0", + "postcss-normalize-url": "^6.0.0", + "postcss-normalize-whitespace": "^6.0.0", + "postcss-ordered-values": "^6.0.0", + "postcss-reduce-initial": "^6.0.0", + "postcss-reduce-transforms": "^6.0.0", + "postcss-svgo": "^6.0.0", + "postcss-unique-selectors": "^6.0.0" }, "engines": { - "node": ">=6" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", "dev": true, "engines": { - "node": ">=4" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "dependencies": { - "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-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "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.1" + "css-tree": "~2.2.0" }, "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "cssom": "~0.3.6" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/eslint-plugin-import/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/cypress": { + "version": "12.16.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", + "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", "dev": true, + "hasInstallScript": true, "dependencies": { - "minimist": "^1.2.0" + "@cypress/request": "^2.88.10", + "@cypress/xvfb": "^1.2.4", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "8.1.1", + "@types/sizzle": "^2.3.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", + "bluebird": "^3.7.2", + "buffer": "^5.6.0", + "cachedir": "^2.3.0", + "chalk": "^4.1.0", + "check-more-types": "^2.24.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", + "common-tags": "^1.8.0", + "dayjs": "^1.10.4", + "debug": "^4.3.4", + "enquirer": "^2.3.6", + "eventemitter2": "6.4.7", + "execa": "4.1.0", + "executable": "^4.1.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", + "getos": "^3.2.1", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", + "lazy-ass": "^1.6.0", + "listr2": "^3.8.3", + "lodash": "^4.17.21", + "log-symbols": "^4.0.0", + "minimist": "^1.2.8", + "ospath": "^1.2.2", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", + "request-progress": "^3.0.0", + "semver": "^7.3.2", + "supports-color": "^8.1.1", + "tmp": "~0.2.1", + "untildify": "^4.0.0", + "yauzl": "^2.10.0" }, "bin": { - "json5": "lib/cli.js" + "cypress": "bin/cypress" + }, + "engines": { + "node": "^14.0.0 || ^16.0.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-import/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/cypress/node_modules/@types/node": { + "version": "14.18.53", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", + "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", + "dev": true + }, + "node_modules/cypress/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "color-convert": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/cypress/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint-plugin-import/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/cypress/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "node_modules/cypress/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/eslint-plugin-n": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", - "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", + "node_modules/cypress/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/cypress/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cypress/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, "dependencies": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=12.22.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=7.0.0" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/eslint-plugin-n/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/cypress/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "node_modules/cypress/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=8" }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "node_modules/cypress/node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": ">=8.12.0" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/cypress/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "assert-plus": "^1.0.0" }, "engines": { - "node": "*" + "node": ">=0.10" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", "dev": true, "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } + "node_modules/dayjs": { + "version": "1.11.9", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", + "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", + "dev": true }, - "node_modules/eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "ms": "2.1.2" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=6.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "mimic-response": "^3.1.0" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "dev": true, "engines": { "node": ">=10" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", - "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-equal": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "peer": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4.0.0" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "execa": "^5.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">= 10" } }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "node_modules/default-gateway/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, "engines": { "node": ">=8" }, @@ -14717,1564 +14679,1573 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "clone": "^1.0.2" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/espree": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", - "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=0.4.0" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true, + "peer": true + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, "engines": { - "node": ">=0.10" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/detect-port": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", "dev": true, "dependencies": { - "estraverse": "^5.2.0" + "address": "^1.0.1", + "debug": "4" }, - "engines": { - "node": ">=4.0" + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/diacritics-map": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", + "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", "dev": true, "engines": { - "node": ">=4.0" + "node": ">=0.8.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=0.3.1" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "dev": true, "engines": { - "node": ">= 0.6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/eventemitter-asyncresource": { + "node_modules/dns-equal": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, - "node_modules/eventemitter2": { - "version": "6.4.7", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", - "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true + "node_modules/dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">=4" + "node": ">=6.0.0" } }, - "node_modules/execa/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/execa/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, - "node_modules/execa/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", "dev": true, "dependencies": { - "path-key": "^2.0.0" + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/execa/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true, - "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/execa/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "dependencies": { - "shebang-regex": "^1.0.0" + "domelementtype": "^2.2.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/execa/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/execa/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "is-obj": "^2.0.0" }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">=8" } }, - "node_modules/execa/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true - }, - "node_modules/executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "dev": true, - "dependencies": { - "pify": "^2.2.0" - }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/exit": { + "node_modules/duplexer": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", "dev": true, - "engines": { - "node": ">= 0.8.0" + "peer": true, + "dependencies": { + "readable-stream": "^2.0.2" } }, - "node_modules/expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", + "node_modules/duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", "dev": true, "dependencies": { - "fill-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" } }, - "node_modules/expand-range/node_modules/fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "node_modules/duplexify/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/expand-range/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true }, - "node_modules/expand-range/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "safe-buffer": "^5.0.1" } }, - "node_modules/exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "dev": true, "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" }, "engines": { - "node": ">= 0.10.0" + "node": ">=0.10.0" } }, - "node_modules/express-rate-limit": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", - "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", + "node_modules/electron-to-chromium": { + "version": "1.4.447", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", + "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", "dev": true }, - "node_modules/express-urlrewrite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", - "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, - "dependencies": { - "debug": "*", - "path-to-regexp": "^1.0.3" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/express-urlrewrite/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/express-urlrewrite/node_modules/path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", "dev": true, - "dependencies": { - "isarray": "0.0.1" - } + "peer": true }, - "node_modules/express/node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">= 4" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/express/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "dev": true, + "optional": true, "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "iconv-lite": "^0.6.2" } }, - "node_modules/express/node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "dependencies": { - "mime-db": "^1.28.0" - }, - "engines": { - "node": ">=0.10.0" + "once": "^1.4.0" } }, - "node_modules/ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dev": true, "dependencies": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">=4" + "node": ">=10.13.0" } }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "ansi-colors": "^4.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.6" } }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/external-editor/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "node_modules/env-ci": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", + "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", "dev": true, + "peer": true, "dependencies": { - "os-tmpdir": "~1.0.2" + "execa": "^8.0.0", + "java-properties": "^1.0.2" }, "engines": { - "node": ">=0.6.0" + "node": "^18.17 || >=20.6.1" } }, - "node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "node_modules/env-ci/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, + "peer": true, "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">= 10.17.0" + "node": ">=16.17" }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/extract-zip/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/env-ci/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, + "peer": true, "engines": { - "node": ">=8" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "node_modules/env-ci/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, + "peer": true, "engines": { - "node": ">=8" + "node": ">=16.17.0" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", + "node_modules/env-ci/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, + "peer": true, "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/env-ci/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "reusify": "^1.0.4" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "node_modules/env-ci/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "peer": true, "dependencies": { - "websocket-driver": ">=0.5.1" + "path-key": "^4.0.0" }, "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "dependencies": { - "pend": "~1.2.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/env-ci/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "peer": true, "dependencies": { - "escape-string-regexp": "^1.0.5" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/env-ci/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, + "peer": true, "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" + "node": ">=12" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/file-type": { - "version": "17.1.6", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", - "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", + "node_modules/env-ci/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0-alpha.9", - "token-types": "^5.0.0-alpha.2" - }, + "peer": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=14" }, "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "node_modules/env-ci/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "minimatch": "^5.0.1" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" + "bin": { + "envinfo": "dist/cli.js" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/filename-reserved-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", - "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "optional": true, + "dependencies": { + "prr": "~1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "errno": "cli.js" } }, - "node_modules/filenamify": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", - "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { - "filename-reserved-regex": "^3.0.0", - "strip-outer": "^2.0.0", - "trim-repeated": "^2.0.0" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "is-arrayish": "^0.2.1" } }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", "dev": true, "dependencies": { - "to-regex-range": "^5.0.1" + "accepts": "~1.3.7", + "escape-html": "~1.0.3" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", "dev": true, "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, "dependencies": { - "ms": "2.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", "dev": true }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", "dev": true, "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "node": ">= 0.4" } }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" + "has": "^1.0.3" } }, - "node_modules/find-versions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", - "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "semver-regex": "^4.0.5" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "node_modules/esbuild": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", + "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", "dev": true, + "hasInstallScript": true, "bin": { - "flat": "cli.js" + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.18", + "@esbuild/android-arm64": "0.17.18", + "@esbuild/android-x64": "0.17.18", + "@esbuild/darwin-arm64": "0.17.18", + "@esbuild/darwin-x64": "0.17.18", + "@esbuild/freebsd-arm64": "0.17.18", + "@esbuild/freebsd-x64": "0.17.18", + "@esbuild/linux-arm": "0.17.18", + "@esbuild/linux-arm64": "0.17.18", + "@esbuild/linux-ia32": "0.17.18", + "@esbuild/linux-loong64": "0.17.18", + "@esbuild/linux-mips64el": "0.17.18", + "@esbuild/linux-ppc64": "0.17.18", + "@esbuild/linux-riscv64": "0.17.18", + "@esbuild/linux-s390x": "0.17.18", + "@esbuild/linux-x64": "0.17.18", + "@esbuild/netbsd-x64": "0.17.18", + "@esbuild/openbsd-x64": "0.17.18", + "@esbuild/sunos-x64": "0.17.18", + "@esbuild/win32-arm64": "0.17.18", + "@esbuild/win32-ia32": "0.17.18", + "@esbuild/win32-x64": "0.17.18" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/esbuild-wasm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", + "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=12" } }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "node": ">=6" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=14" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "optional": true, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=0.10.0" } }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "node_modules/eslint": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", + "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", "dev": true, + "dependencies": { + "@eslint/eslintrc": "^1.2.3", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.2", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, "engines": { - "node": "*" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "7.2.13", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", - "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", + "node_modules/eslint-config-prettier": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", + "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", "dev": true, - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" + "bin": { + "eslint-config-prettier": "bin/cli.js" }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-config-standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", + "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" + "node": ">=12.0.0" }, "peerDependencies": { - "typescript": ">3.6.0", - "vue-template-compiler": "*", - "webpack": "^5.11.0" + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", + "eslint-plugin-promise": "^6.0.0" + } + }, + "node_modules/eslint-config-standard-jsx": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", + "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peerDependencies": { + "eslint": "^8.8.0", + "eslint-plugin-react": "^7.28.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" }, "peerDependenciesMeta": { - "vue-template-compiler": { + "eslint": { "optional": true } } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "ms": "^2.1.1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/eslint-plugin-cypress": { + "version": "2.13.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", + "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", "dev": true, + "dependencies": { + "globals": "^11.12.0" + }, "peerDependencies": { - "ajv": "^6.9.1" + "eslint": ">= 3.2.1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=8.10.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "eslint-visitor-keys": "^1.1.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", "dev": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "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-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "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.1" }, "engines": { - "node": ">=10" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" + "ms": "^2.1.1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "esutils": "^2.0.2" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=0.10.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/eslint-plugin-import/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "minimist": "^1.2.0" }, - "engines": { - "node": ">=8" + "bin": { + "json5": "lib/cli.js" } }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 0.12" + "node": "*" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">= 0.6" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "node_modules/eslint-plugin-import/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" + "node": ">=4" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", "dev": true, - "engines": { - "node": ">= 0.6" + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/eslint-plugin-n": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", + "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "builtins": "^5.0.1", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.11.0", + "minimatch": "^3.1.2", + "resolve": "^1.22.1", + "semver": "^7.3.8" }, "engines": { - "node": ">=14.14" + "node": ">=12.22.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/fs-minipass": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", - "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", + "node_modules/eslint-plugin-n/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "minipass": "^5.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "*" } }, - "node_modules/fs-monkey": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", - "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "node_modules/eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" }, "engines": { - "node": ">= 0.4" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "esutils": "^2.0.2" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/eslint-plugin-react/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": "*" } }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">=8.0.0" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/get-stream": { + "node_modules/eslint-utils": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "eslint-visitor-keys": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/getos": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", - "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, - "dependencies": { - "async": "^3.2.0" + "engines": { + "node": ">=10" } }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "assert-plus": "^1.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "node_modules/glob/node_modules/brace-expansion": { + "node_modules/eslint/node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/glob/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=10" + "node": ">=10.13.0" } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, "dependencies": { - "ini": "2.0.0" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=4" + "node": "*" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "define-properties": "^1.1.3" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, "engines": { "node": ">=10" }, @@ -16282,730 +16253,717 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "node_modules/espree": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", + "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "node": ">=4" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/gray-matter": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", - "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "dependencies": { - "ansi-red": "^0.1.1", - "coffee-script": "^1.12.4", - "extend-shallow": "^2.0.1", - "js-yaml": "^3.8.1", - "toml": "^2.3.2" + "estraverse": "^5.1.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-header": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "deprecated": "Removed event-stream from gulp-header", - "dev": true, - "dependencies": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" + "node": ">=0.10" } }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { - "duplexer": "^0.1.2" + "estraverse": "^5.2.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0" } }, - "node_modules/handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" + "node": ">=4.0" } }, - "node_modules/handlebars/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, "engines": { - "node": ">=4" + "node": ">= 0.6" } }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, "engines": { "node": ">=6" } }, - "node_modules/har-validator/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } + "node_modules/eventemitter-asyncresource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", + "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", + "dev": true }, - "node_modules/har-validator/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/eventemitter2": { + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", "dev": true }, - "node_modules/harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", "dev": true, "dependencies": { - "function-bind": "^1.1.1" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" }, "engines": { - "node": ">= 0.4.0" + "node": ">=4" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/execa/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/execa/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "node_modules/execa/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.1" + "path-key": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "shebang-regex": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/has-tostringtag": { + "node_modules/execa/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "which": "bin/which" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "node_modules/execa/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true }, - "node_modules/hdr-histogram-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", - "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", "dev": true, "dependencies": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", - "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", - "dev": true - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, - "bin": { - "he": "bin/he" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "node_modules/expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", "dev": true, "dependencies": { - "lru-cache": "^7.5.1" + "fill-range": "^2.1.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/expand-range/node_modules/fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "dev": true, + "dependencies": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "node_modules/expand-range/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/expand-range/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "dev": true, "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", "dev": true, "dependencies": { - "whatwg-encoding": "^2.0.0" + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ] - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", "dev": true }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", "depd": "2.0.0", - "inherits": "2.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", - "toidentifier": "1.0.1" + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.10.0" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "node_modules/express-rate-limit": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", + "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", "dev": true }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "node_modules/express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", + "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", "dev": true, "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" + "debug": "*", + "path-to-regexp": "^1.0.3" } }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "node_modules/express-urlrewrite/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/express-urlrewrite/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", "dev": true, "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" + "isarray": "0.0.1" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "node_modules/express/node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, "engines": { - "node": ">=10" + "node": ">=0.6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-server": { - "version": "14.1.1", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", - "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", + "node_modules/express/node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": 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.6", - "opener": "^1.5.1", - "portfinder": "^1.0.28", - "secure-compare": "3.0.1", - "union": "~0.5.0", - "url-join": "^4.0.1" - }, - "bin": { - "http-server": "bin/http-server" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, "engines": { - "node": ">=12" + "node": ">= 0.8" } }, - "node_modules/http-server/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "mime-db": "^1.28.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/http-server/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/http-server/node_modules/color-convert": { + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "is-extendable": "^0.1.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/http-server/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/http-server/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/http-signature": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", - "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^2.0.2", - "sshpk": "^1.14.1" + "os-tmpdir": "~1.0.2" }, "engines": { - "node": ">=0.10" + "node": ">=0.6.0" } }, - "node_modules/http-status-codes": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", - "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", - "dev": true + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } }, - "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "pump": "^3.0.0" }, "engines": { - "node": ">=10.19.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "dev": true, + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/human-signals": { + "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fast-redact": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", + "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", "dev": true, "engines": { - "node": ">=10.17.0" + "node": ">=6" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "dependencies": { - "ms": "^2.0.0" + "reusify": "^1.0.4" } }, - "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, - "bin": { - "husky": "lib/bin.js" + "dependencies": { + "websocket-driver": ">=0.5.1" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" + "node": ">=0.8.0" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" + "bser": "2.1.1" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "dependencies": { + "pend": "~1.2.0" } }, - "node_modules/identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "dependencies": { - "harmony-reflect": "^1.4.6" + "escape-string-regexp": "^1.0.5" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "engines": { + "node": ">=0.8.0" + } }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, "engines": { - "node": ">= 4" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/ignore-walk": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", - "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", + "node_modules/file-type": { + "version": "17.1.6", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", + "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", "dev": true, "dependencies": { - "minimatch": "^9.0.0" + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0-alpha.9", + "token-types": "^5.0.0-alpha.2" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" } }, - "node_modules/ignore-walk/node_modules/brace-expansion": { + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", @@ -17014,506 +16972,556 @@ "balanced-match": "^1.0.0" } }, - "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "dev": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/filename-reserved-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", + "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "node_modules/filenamify": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", + "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", "dev": true, "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "filename-reserved-regex": "^3.0.0", + "strip-outer": "^2.0.0", + "trim-repeated": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { - "node": ">=0.8.19" + "node": ">=8" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "ms": "2.0.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/ini": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", - "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/inquirer-autocomplete-prompt": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", - "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { - "ansi-escapes": "^4.3.2", - "figures": "^3.2.0", - "picocolors": "^1.0.0", - "run-async": "^2.4.1", - "rxjs": "^7.5.4" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=12" - }, - "peerDependencies": { - "inquirer": "^8.0.0" + "node": ">=8" } }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/find-up-simple": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", + "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/find-versions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", + "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "semver-regex": "^4.0.5" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "bin": { + "flat": "cli.js" } }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" }, "engines": { - "node": ">=8" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "engines": { - "node": ">= 0.4" + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "dev": true, + "engines": { + "node": "*" + } }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "7.2.13", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", + "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", "dev": true, "dependencies": { - "has-bigints": "^1.0.1" + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "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 + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "binary-extensions": "^2.0.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "color-name": "~1.1.4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "dependencies": { - "ci-info": "^3.2.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" }, - "bin": { - "is-ci": "bin.js" + "engines": { + "node": ">=10" } }, - "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "dependencies": { - "has": "^1.0.3" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">= 0.4" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "bin": { - "is-docker": "cli.js" + "dependencies": { + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.12" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "dev": true, "engines": { - "node": ">=12" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=14.14" } }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "node_modules/fs-minipass": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", + "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", "dev": true, + "dependencies": { + "minipass": "^5.0.0" + }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "node_modules/fs-monkey": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", + "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", "dev": true }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, "engines": { "node": ">= 0.4" }, @@ -17521,128 +17529,111 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "node_modules/is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", - "dev": true - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.0.0" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "node_modules/get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2" + "engines": { + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" }, "engines": { "node": ">= 0.4" @@ -17651,661 +17642,695 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/getos": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", + "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "async": "^3.2.0" } }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "assert-plus": "^1.0.0" } }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "node_modules/git-log-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", + "integrity": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peer": true, + "dependencies": { + "argv-formatter": "~1.0.0", + "spawn-error-forwarder": "~1.0.0", + "split2": "~1.0.0", + "stream-combiner2": "~1.1.1", + "through2": "~2.0.0", + "traverse": "~0.6.6" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/git-log-parser/node_modules/split2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", + "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", "dev": true, + "peer": true, "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "through2": "~2.0.0" } }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "is-docker": "^2.0.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "ini": "2.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=10" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "define-properties": "^1.1.3" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/globby/node_modules/fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8.6.0" } }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jackspeak": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", - "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", "dev": true, "dependencies": { - "@isaacs/cliui": "^8.0.2" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" }, "engines": { - "node": ">=14" + "node": ">=10.19.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/gray-matter": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", + "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", "dev": true, "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "bin": { - "jake": "bin/cli.js" + "ansi-red": "^0.1.1", + "coffee-script": "^1.12.4", + "extend-shallow": "^2.0.1", + "js-yaml": "^3.8.1", + "toml": "^2.3.2" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/gulp-header": { + "version": "1.8.12", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", + "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", + "deprecated": "Removed event-stream from gulp-header", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "concat-with-sourcemaps": "*", + "lodash.template": "^4.4.0", + "through2": "^2.0.0" } }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "duplexer": "^0.1.2" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jake/node_modules/color-convert": { + "node_modules/handle-thing": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/jake/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" + "node": ">=4" } }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "node_modules/har-validator/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", - "import-local": "^3.0.2", - "jest-cli": "^29.5.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "node_modules/har-validator/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" + "function-bind": "^1.1.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4.0" } }, - "node_modules/jest-changed-files/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-changed-files/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-changed-files/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/hdr-histogram-js": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", + "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "@assemblyscript/loader": "^0.10.1", + "base64-js": "^1.2.0", + "pako": "^1.0.3" + } + }, + "node_modules/hdr-histogram-percentiles-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", + "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", + "dev": true + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hook-std": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", + "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", + "dev": true, + "peer": true, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "lru-cache": "^7.5.1" }, "engines": { - "node": ">=7.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "whatwg-encoding": "^2.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=12" } }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 0.8" } }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8.0.0" } }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12.0.0" }, "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" + "@types/express": "^4.17.13" }, "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { + "@types/express": { "optional": true } } }, - "node_modules/jest-config/node_modules/ansi-styles": { + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/http-server": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", + "dev": 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.6", + "opener": "^1.5.1", + "portfinder": "^1.0.28", + "secure-compare": "3.0.1", + "union": "~0.5.0", + "url-join": "^4.0.1" + }, + "bin": { + "http-server": "bin/http-server" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/http-server/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -18320,7 +18345,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-config/node_modules/chalk": { + "node_modules/http-server/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -18336,7 +18361,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-config/node_modules/color-convert": { + "node_modules/http-server/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -18348,45 +18373,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-config/node_modules/color-name": { + "node_modules/http-server/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-config/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-config/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/jest-config/node_modules/supports-color": { + "node_modules/http-server/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -18398,359 +18391,373 @@ "node": ">=8" } }, - "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "node_modules/http-signature": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "assert-plus": "^1.0.0", + "jsprim": "^2.0.2", + "sshpk": "^1.14.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/http-status-codes": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", + "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", + "dev": true + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=10.19.0" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 6" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=10.17.0" } }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "ms": "^2.0.0" } }, - "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true, - "dependencies": { - "detect-newline": "^3.0.0" + "bin": { + "husky": "lib/bin.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "harmony-reflect": "^1.4.6" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">= 4" } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/ignore-walk": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", + "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "minimatch": "^9.0.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/jest-environment-jsdom": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", - "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", + "node_modules/ignore-walk/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/jsdom": "^20.0.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0", - "jsdom": "^20.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "balanced-match": "^1.0.0" } }, - "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "node_modules/immutable": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", + "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "node_modules/import-from-esm": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", + "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "debug": "^4.3.4", + "import-meta-resolve": "^4.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=16.20" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/index-to-position": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", + "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", + "dev": true, + "engines": { + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/ini": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", + "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=12.0.0" } }, - "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "node_modules/inquirer-autocomplete-prompt": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", + "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "ansi-escapes": "^4.3.2", + "figures": "^3.2.0", + "picocolors": "^1.0.0", + "run-async": "^2.4.1", + "rxjs": "^7.5.4" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" + }, + "peerDependencies": { + "inquirer": "^8.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { + "node_modules/inquirer/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -18765,7 +18772,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/chalk": { + "node_modules/inquirer/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -18781,7 +18788,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/color-convert": { + "node_modules/inquirer/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -18793,13 +18800,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-message-util/node_modules/color-name": { + "node_modules/inquirer/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-message-util/node_modules/supports-color": { + "node_modules/inquirer/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -18811,577 +18818,650 @@ "node": ">=8" } }, - "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "node_modules/into-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", + "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "from2": "^2.3.0", + "p-is-promise": "^3.0.0" }, - "peerDependencies": { - "jest-resolve": "*" + "engines": { + "node": ">=12" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-preset-angular": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", - "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", - "dev": true, - "dependencies": { - "bs-logger": "^0.2.6", - "esbuild-wasm": ">=0.13.8", - "jest-environment-jsdom": "^29.0.0", - "jest-util": "^29.0.0", - "pretty-format": "^29.0.0", - "ts-jest": "^29.0.0" - }, - "engines": { - "node": "^14.15.0 || >=16.10.0" - }, - "optionalDependencies": { - "esbuild": ">=0.13.8" - }, - "peerDependencies": { - "@angular-devkit/build-angular": ">=13.0.0 <17.0.0", - "@angular/compiler-cli": ">=13.0.0 <17.0.0", - "@angular/core": ">=13.0.0 <17.0.0", - "@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0", - "jest": "^29.0.0", - "typescript": ">=4.4" - } - }, - "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.10" } }, - "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "has-bigints": "^1.0.1" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "binary-extensions": "^2.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "node_modules/jest-resolve/node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ci-info": "^3.2.0" }, - "engines": { - "node": ">=8" + "bin": { + "is-ci": "bin.js" } }, - "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "has": "^1.0.3" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-runner/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true }, - "node_modules/jest-runtime/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runtime/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "kind-of": "^3.0.2" }, "engines": { - "node": "*" + "node": ">=0.10.0" } }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "isobject": "^3.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "call-bind": "^1.0.2" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-text-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", + "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", + "dev": true, + "dependencies": { + "text-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-util/node_modules/color-convert": { + "node_modules/is-weakmap": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "node_modules/jest-util/node_modules/supports-color": { + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "node_modules/issue-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", + "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", + "dev": true, + "peer": true, + "dependencies": { + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" + }, + "engines": { + "node": ">=10.13" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -19393,51 +19473,94 @@ "node": ">=8" } }, - "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, "engines": { "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", + "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", "dev": true, + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, "engines": { "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-validate/node_modules/chalk": { + "node_modules/jake/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -19453,7 +19576,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-validate/node_modules/color-convert": { + "node_modules/jake/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -19465,13 +19588,25 @@ "node": ">=7.0.0" } }, - "node_modules/jest-validate/node_modules/color-name": { + "node_modules/jake/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-validate/node_modules/supports-color": { + "node_modules/jake/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jake/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -19483,26 +19618,134 @@ "node": ">=8" } }, - "node_modules/jest-watcher": { + "node_modules/java-properties": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/jest": { "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", "dev": true, "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", "@jest/test-result": "^29.5.0", "@jest/types": "^29.5.0", "@types/node": "*", - "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "emittery": "^0.13.1", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", "jest-util": "^29.5.0", - "string-length": "^4.0.1" + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { + "node_modules/jest-circus/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -19517,7 +19760,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/chalk": { + "node_modules/jest-circus/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -19533,7 +19776,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/color-convert": { + "node_modules/jest-circus/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -19545,13 +19788,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-watcher/node_modules/color-name": { + "node_modules/jest-circus/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-watcher/node_modules/supports-color": { + "node_modules/jest-circus/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -19563,221 +19806,147 @@ "node": ">=8" } }, - "node_modules/jest-worker": { + "node_modules/jest-cli": { "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", "dev": true, "dependencies": { - "@types/node": "*", + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, - "node_modules/jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "dev": true, - "dependencies": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" }, "peerDependencies": { - "canvas": "^2.5.0" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { - "canvas": { + "node-notifier": { "optional": true } } }, - "node_modules/jsdom/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jsdom/node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/jsdom/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "node": ">=4" + "node": ">=7.0.0" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/json-parse-helpfulerror": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", - "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "jju": "^1.1.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/json-server": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", - "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", "dev": true, "dependencies": { - "body-parser": "^1.19.0", - "chalk": "^4.1.2", - "compression": "^1.7.4", - "connect-pause": "^0.1.1", - "cors": "^2.8.5", - "errorhandler": "^1.5.1", - "express": "^4.17.1", - "express-urlrewrite": "^1.4.0", - "json-parse-helpfulerror": "^1.0.3", - "lodash": "^4.17.21", - "lodash-id": "^0.14.1", - "lowdb": "^1.0.0", - "method-override": "^3.0.0", - "morgan": "^1.10.0", - "nanoid": "^3.1.23", - "please-upgrade-node": "^3.2.0", - "pluralize": "^8.0.0", - "server-destroy": "^1.0.1", - "standard": "^17.0.0", - "yargs": "^17.0.1" - }, - "bin": { - "json-server": "lib/cli/bin.js" + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/json-server/node_modules/ansi-styles": { + "node_modules/jest-config/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -19792,7 +19961,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/json-server/node_modules/chalk": { + "node_modules/jest-config/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -19808,7 +19977,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/json-server/node_modules/color-convert": { + "node_modules/jest-config/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -19820,13 +19989,45 @@ "node": ">=7.0.0" } }, - "node_modules/json-server/node_modules/color-name": { + "node_modules/jest-config/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/json-server/node_modules/supports-color": { + "node_modules/jest-config/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jest-config/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jest-config/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -19838,427 +20039,359 @@ "node": ">=8" } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", "dev": true, - "bin": { - "json5": "lib/cli.js" + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jsonc-eslint-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", - "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "acorn": "^8.5.0", - "eslint-visitor-keys": "^3.0.0", - "espree": "^9.0.0", - "semver": "^7.3.5" + "color-convert": "^2.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ota-meshi" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "universalify": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true, - "engines": [ - "node >= 0.2.0" - ] - }, - "node_modules/JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - }, - "bin": { - "JSONStream": "bin.js" + "color-name": "~1.1.4" }, "engines": { - "node": "*" + "node": ">=7.0.0" } }, - "node_modules/jsonwebtoken": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "jws": "^3.2.2", - "lodash": "^4.17.21", - "ms": "^2.1.1", - "semver": "^7.3.8" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=12", - "npm": ">=6" + "node": ">=8" } }, - "node_modules/jsprim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", - "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", "dev": true, - "engines": [ - "node >=0.6.0" - ], "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", - "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/karma-source-map-support": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", - "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "source-map-support": "^0.5.5" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/keygrip": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", - "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "tsscmp": "1.0.6" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", + "node_modules/jest-environment-jsdom": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", + "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", "dev": true, "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0", + "jsdom": "^20.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/launch-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", - "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", "dev": true, "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" - } - }, - "node_modules/lazy-ass": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", - "dev": true, + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, "engines": { - "node": "> 0.8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/lazy-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", "dev": true, "dependencies": { - "set-getter": "^0.1.0" + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", "dev": true, "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "source-map": "~0.6.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "klona": "^2.0.4" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 14.15.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "less": "^3.5.0 || ^4.0.0", - "webpack": "^5.0.0" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/less/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "optional": true, "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/less/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/less/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/less/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true, - "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 0.8.0" + "node": ">=7.0.0" } }, - "node_modules/license-webpack-plugin": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", - "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "webpack-sources": "^3.0.0" + "has-flag": "^4.0.0" }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-sources": { - "optional": true - } - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", - "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", - "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" } }, - "node_modules/lint-staged": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", - "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", "dev": true, "dependencies": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", - "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.2" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/ansi-styles": { + "node_modules/jest-message-util/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20273,19 +20406,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/lint-staged/node_modules/color-convert": { + "node_modules/jest-message-util/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -20297,261 +20434,228 @@ "node": ">=7.0.0" } }, - "node_modules/lint-staged/node_modules/color-name": { + "node_modules/jest-message-util/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/lint-staged/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/lint-staged/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" }, "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, "engines": { - "node": ">=10" + "node": ">=6" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "node_modules/jest-preset-angular": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", + "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", "dev": true, + "dependencies": { + "bs-logger": "^0.2.6", + "esbuild-wasm": ">=0.13.8", + "jest-environment-jsdom": "^29.0.0", + "jest-util": "^29.0.0", + "pretty-format": "^29.0.0", + "ts-jest": "^29.0.0" + }, "engines": { - "node": ">=14.18.0" + "node": "^14.15.0 || >=16.10.0" + }, + "optionalDependencies": { + "esbuild": ">=0.13.8" + }, + "peerDependencies": { + "@angular-devkit/build-angular": ">=13.0.0 <17.0.0", + "@angular/compiler-cli": ">=13.0.0 <17.0.0", + "@angular/core": ">=13.0.0 <17.0.0", + "@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0", + "jest": "^29.0.0", + "typescript": ">=4.4" } }, - "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", "dev": true, "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" }, "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "path-key": "^4.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=7.0.0" } }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "node_modules/jest-resolve/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/lint-staged/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true, - "engines": { - "node": ">= 14" - } - }, - "node_modules/list-item": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", - "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", - "dev": true, - "dependencies": { - "expand-range": "^1.8.1", - "extend-shallow": "^2.0.1", - "is-number": "^2.1.0", - "repeat-string": "^1.5.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/listr2": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", - "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", "dev": true, "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.1", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/listr2/node_modules/ansi-styles": { + "node_modules/jest-runner/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20566,23 +20670,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/listr2/node_modules/color-convert": { + "node_modules/jest-runner/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -20594,213 +20698,204 @@ "node": ">=7.0.0" } }, - "node_modules/listr2/node_modules/color-name": { + "node_modules/jest-runner/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/listr2/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/listr2/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", "dev": true, "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/loader-runner": { + "node_modules/jest-runtime/node_modules/ansi-styles": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">= 12.13.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "p-locate": "^4.1.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/lockfile": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", - "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "signal-exit": "^3.0.2" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/lodash-id": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", - "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", + "node_modules/jest-runtime/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, "engines": { - "node": ">= 4" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "node_modules/jest-runtime/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "lodash._reinterpolate": "^3.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", "dev": true, "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { + "node_modules/jest-snapshot/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20815,7 +20910,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-symbols/node_modules/chalk": { + "node_modules/jest-snapshot/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20831,7 +20926,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/log-symbols/node_modules/color-convert": { + "node_modules/jest-snapshot/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -20843,13 +20938,13 @@ "node": ">=7.0.0" } }, - "node_modules/log-symbols/node_modules/color-name": { + "node_modules/jest-snapshot/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/log-symbols/node_modules/supports-color": { + "node_modules/jest-snapshot/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -20861,25 +20956,24 @@ "node": ">=8" } }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", "dev": true, "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/log-update/node_modules/ansi-styles": { + "node_modules/jest-util/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20894,7 +20988,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-update/node_modules/color-convert": { + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -20906,1482 +21016,1467 @@ "node": ">=7.0.0" } }, - "node_modules/log-update/node_modules/color-name": { + "node_modules/jest-util/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "engines": { + "node": ">=10" }, - "bin": { - "loose-envify": "cli.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lowdb": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", - "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.3", - "is-promise": "^2.1.0", - "lodash": "4", - "pify": "^3.0.0", - "steno": "^0.4.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/lowdb/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">=4" + "node": ">=7.0.0" } }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", "dev": true, "dependencies": { - "yallist": "^3.0.2" + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/make-fetch-happen": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", - "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/make-fetch-happen/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "dependencies": { - "tmpl": "1.0.5" - } + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "dev": true }, - "node_modules/markdown-link": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", - "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, - "node_modules/markdown-toc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", - "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { - "concat-stream": "^1.5.2", - "diacritics-map": "^0.1.0", - "gray-matter": "^2.1.0", - "lazy-cache": "^2.0.2", - "list-item": "^1.1.1", - "markdown-link": "^0.1.1", - "minimist": "^1.2.0", - "mixin-deep": "^1.1.3", - "object.pick": "^1.2.0", - "remarkable": "^1.7.1", - "repeat-string": "^1.6.1", - "strip-color": "^0.1.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, "bin": { - "markdown-toc": "cli.js" - }, - "engines": { - "node": ">=0.10.0" + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", - "dev": true - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "dev": true, + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "dependencies": { - "fs-monkey": "^1.0.4" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": ">= 4.0.0" + "node": ">= 6" } }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "node_modules/jsdom/node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, "engines": { - "node": ">= 0.10.0" + "node": ">=6" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/jsdom/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, "engines": { - "node": ">= 8" + "node": ">= 4.0.0" } }, - "node_modules/method-override": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", - "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "dependencies": { - "debug": "3.1.0", - "methods": "~1.1.2", - "parseurl": "~1.3.2", - "vary": "~1.1.2" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">= 0.10" + "node": ">=4" } }, - "node_modules/method-override/node_modules/debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", "dev": true, "dependencies": { - "ms": "2.0.0" + "jju": "^1.1.0" } }, - "node_modules/method-override/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/json-server": { + "version": "0.17.3", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", + "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", "dev": true, "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.21", + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "standard": "^17.0.0", + "yargs": "^17.0.1" + }, + "bin": { + "json-server": "lib/cli/bin.js" }, "engines": { - "node": ">=8.6" + "node": ">=12" } }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "node_modules/json-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "bin": { - "mime": "cli.js" + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/json-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/json-server/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "mime-db": "1.52.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 0.6" + "node": ">=7.0.0" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/json-server/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/json-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/mimic-response": { + "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, + "bin": { + "json5": "lib/cli.js" + }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/mini-css-extract-plugin": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", - "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", + "node_modules/jsonc-eslint-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", + "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", "dev": true, "dependencies": { - "schema-utils": "^4.0.0" + "acorn": "^8.5.0", + "eslint-visitor-keys": "^3.0.0", + "espree": "^9.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">= 12.13.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/sponsors/ota-meshi" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, - "node_modules/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "universalify": "^2.0.0" }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", "dev": true, - "engines": { - "node": ">=8" - } + "engines": [ + "node >= 0.2.0" + ] }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" }, "engines": { - "node": ">= 8" + "node": "*" } }, - "node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/jsonwebtoken": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", + "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "jws": "^3.2.2", + "lodash": "^4.17.21", + "ms": "^2.1.1", + "semver": "^7.3.8" }, "engines": { - "node": ">=8" + "node": ">=12", + "npm": ">=6" } }, - "node_modules/minipass-collect/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-fetch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", - "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", + "node_modules/jsprim": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", "dev": true, + "engines": [ + "node >=0.6.0" + ], "dependencies": { - "minipass": "^5.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" } }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "node_modules/jsx-ast-utils": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", + "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { - "node": ">= 8" + "node": ">=4.0" } }, - "node_modules/minipass-flush/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" } }, - "node_modules/minipass-flush/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "dev": true, "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" } }, - "node_modules/minipass-json-stream/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" + "source-map-support": "^0.5.5" } }, - "node_modules/minipass-json-stream/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "node_modules/keygrip": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "tsscmp": "1.0.6" }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/minipass-pipeline/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/keyv": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", + "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" + "json-buffer": "3.0.1" } }, - "node_modules/minipass-pipeline/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/minipass-sized/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, "engines": { "node": ">= 8" } }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" } }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "node_modules/lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, "engines": { - "node": ">=0.10.0" + "node": "> 0.8" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "node_modules/lazy-cache": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", + "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4" + "set-getter": "^0.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "node_modules/less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", "dev": true, "dependencies": { - "minimist": "^1.2.6" + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" }, "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" + "lessc": "bin/lessc" }, "engines": { - "node": ">= 0.8.0" + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" } }, - "node_modules/morgan/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/less-loader": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", + "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", "dev": true, "dependencies": { - "ms": "2.0.0" + "klona": "^2.0.4" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" } }, - "node_modules/morgan/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "optional": true, "dependencies": { - "ee-first": "1.1.1" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "engines": { - "node": ">= 0.8" + "node": ">=6" } }, - "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "node_modules/less/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, + "optional": true, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "node_modules/less/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, + "optional": true, "bin": { - "multicast-dns": "cli.js" + "semver": "bin/semver" } }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "dependencies": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" - }, "engines": { - "node": ">=0.8.0" + "node": ">=6" } }, - "node_modules/mv/node_modules/glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": "*" + "node": ">= 0.8.0" } }, - "node_modules/mv/node_modules/rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", + "node_modules/license-webpack-plugin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", + "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", "dev": true, "dependencies": { - "glob": "^6.0.1" + "webpack-sources": "^3.0.0" }, - "bin": { - "rimraf": "bin.js" + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-sources": { + "optional": true + } } }, - "node_modules/nanoclone": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", - "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">=10" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "node_modules/ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", + "node_modules/lines-and-columns": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", + "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", "dev": true, - "bin": { - "ncp": "bin/ncp" + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/needle": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", - "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "node_modules/lint-staged": { + "version": "13.2.3", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", + "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", "dev": true, - "optional": true, "dependencies": { - "debug": "^3.2.6", - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.2" }, "bin": { - "needle": "bin/needle" + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">= 4.4.x" - } - }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, - "dependencies": { - "ms": "^2.1.1" + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/needle/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/lint-staged/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "optional": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", "dev": true, "engines": { - "node": ">= 0.6" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/nice-napi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", - "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", + "node_modules/lint-staged/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "!win32" - ], "dependencies": { - "node-addon-api": "^3.0.0", - "node-gyp-build": "^4.2.2" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", - "dev": true - }, - "node_modules/node-addon-api": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", - "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", + "node_modules/lint-staged/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "node_modules/lint-staged/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "node": ">=14" } }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "node_modules/lint-staged/node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", "dev": true, "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "node_modules/lint-staged/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": ">= 6.13.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-gyp": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", - "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", + "node_modules/lint-staged/node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", "dev": true, - "dependencies": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^11.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, "engines": { - "node": "^12.13 || ^14.13 || >=16" + "node": ">=14.18.0" } }, - "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "engines": { + "node": ">=8" } }, - "node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, "engines": { - "node": "*" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-gyp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/lint-staged/node_modules/listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": "*" + "node": "^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, - "node_modules/nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "node_modules/lint-staged/node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "abbrev": "^1.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", + "node_modules/lint-staged/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "node_modules/lint-staged/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-bundled": { + "node_modules/lint-staged/node_modules/slice-ansi": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "dependencies": { - "npm-normalize-package-bin": "^3.0.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm-install-checks": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.1.1.tgz", - "integrity": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==", + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "semver": "^7.1.1" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-normalize-package-bin": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", - "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "node_modules/lint-staged/node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", "dev": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 14" } }, - "node_modules/npm-package-arg": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", - "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", + "node_modules/list-item": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", + "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", "dev": true, "dependencies": { - "hosted-git-info": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" + "expand-range": "^1.8.1", + "extend-shallow": "^2.0.1", + "is-number": "^2.1.0", + "repeat-string": "^1.5.2" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/npm-packlist": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", - "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", + "node_modules/listr2": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", "dev": true, "dependencies": { - "ignore-walk": "^6.0.0" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.1", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-pick-manifest": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", - "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", + "node": ">=10.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } + }, + "node_modules/listr2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", - "semver": "^7.3.5" + "color-convert": "^2.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/npm-registry-fetch": { - "version": "14.0.5", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", - "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "make-fetch-happen": "^11.0.0", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", - "proc-log": "^3.0.0" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "node_modules/listr2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "bin": { - "npm-run-all": "bin/npm-run-all/index.js", - "run-p": "bin/run-p/index.js", - "run-s": "bin/run-s/index.js" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 4" + "node": ">=7.0.0" } }, - "node_modules/npm-run-all/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/listr2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/listr2/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/npm-run-all/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" }, "engines": { - "node": ">=4.8" + "node": ">=4" } }, - "node_modules/npm-run-all/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, "engines": { - "node": ">=0.8.0" + "node": ">=4" } }, - "node_modules/npm-run-all/node_modules/has-flag": { + "node_modules/load-json-file/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, "engines": { "node": ">=4" } }, - "node_modules/npm-run-all/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { "node": ">=4" } }, - "node_modules/npm-run-all/node_modules/pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" - }, "engines": { - "node": ">=0.10" + "node": ">=6.11.5" } }, - "node_modules/npm-run-all/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true, - "bin": { - "semver": "bin/semver" + "engines": { + "node": ">= 12.13.0" } }, - "node_modules/npm-run-all/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "shebang-regex": "^1.0.0" + "p-locate": "^4.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/npm-run-all/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/lockfile": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", + "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "signal-exit": "^3.0.2" } }, - "node_modules/npm-run-all/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, + "node_modules/lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", + "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, "engines": { - "node": ">=4" + "node": ">= 4" } }, - "node_modules/npm-run-all/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "dev": true + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } + "peer": true }, - "node_modules/npm-run-path": { + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.escaperegexp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", + "dev": true, + "peer": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true, + "peer": true + }, + "node_modules/lodash.isstring": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } + "peer": true }, - "node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "dev": true + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "lodash._reinterpolate": "^3.0.0" } }, - "node_modules/nwsapi": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", - "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==", + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, - "node_modules/nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.1.1.tgz", - "integrity": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==", + "node_modules/lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "dev": true, + "peer": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "16.1.1", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.1.1", - "@nx/nx-darwin-x64": "16.1.1", - "@nx/nx-linux-arm-gnueabihf": "16.1.1", - "@nx/nx-linux-arm64-gnu": "16.1.1", - "@nx/nx-linux-arm64-musl": "16.1.1", - "@nx/nx-linux-x64-gnu": "16.1.1", - "@nx/nx-linux-x64-musl": "16.1.1", - "@nx/nx-win32-arm64-msvc": "16.1.1", - "@nx/nx-win32-x64-msvc": "16.1.1" + "is-unicode-supported": "^0.1.0" }, - "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" + "engines": { + "node": ">=10" }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nx/node_modules/ansi-styles": { + "node_modules/log-symbols/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -22396,13 +22491,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/nx/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/nx/node_modules/chalk": { + "node_modules/log-symbols/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -22418,7 +22507,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/nx/node_modules/color-convert": { + "node_modules/log-symbols/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -22430,2032 +22519,2296 @@ "node": ">=7.0.0" } }, - "node_modules/nx/node_modules/color-name": { + "node_modules/log-symbols/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/nx/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "*" - } - }, - "node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "node": ">=8" } }, - "node_modules/nx/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nx/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/nx/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/log-update/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=8" + "node": ">=7.0.0" } }, - "node_modules/nx/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/log-update/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "node_modules/lowdb/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "yallist": "^3.0.2" } }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "node_modules/magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "@jridgewell/sourcemap-codec": "^1.4.13" }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "semver": "^6.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/on-exit-leak-free": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", - "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", "dev": true, "dependencies": { - "ee-first": "1.1.1" + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" }, "engines": { - "node": ">= 0.8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=12" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { - "wrappy": "1" + "tmpl": "1.0.5" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/markdown-link": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", + "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "node_modules/markdown-toc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", + "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", "dev": true, "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "concat-stream": "^1.5.2", + "diacritics-map": "^0.1.0", + "gray-matter": "^2.1.0", + "lazy-cache": "^2.0.2", + "list-item": "^1.1.1", + "markdown-link": "^0.1.1", + "minimist": "^1.2.0", + "mixin-deep": "^1.1.3", + "object.pick": "^1.2.0", + "remarkable": "^1.7.1", + "repeat-string": "^1.6.1", + "strip-color": "^0.1.0" }, - "engines": { - "node": ">=12" + "bin": { + "markdown-toc": "cli.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "node_modules/marked": { + "version": "9.1.6", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", + "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", "dev": true, + "peer": true, "bin": { - "opener": "bin/opener-bin.js" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "marked": "bin/marked.js" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 16" } }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "node_modules/marked-terminal": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", + "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", "dev": true, + "peer": true, "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "ansi-escapes": "^6.2.0", + "cardinal": "^2.1.1", + "chalk": "^5.3.0", + "cli-table3": "^0.6.3", + "node-emoji": "^2.1.3", + "supports-hyperlinks": "^3.0.0" }, "engines": { - "node": ">=10" + "node": ">=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "marked": ">=1 <12" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/marked-terminal/node_modules/ansi-escapes": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", + "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", "dev": true, + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "type-fest": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/marked-terminal/node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "peer": true, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/math-random": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", + "dev": true + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.6" } }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "fs-monkey": "^1.0.4" }, "engines": { - "node": ">=8" + "node": ">= 4.0.0" } }, - "node_modules/os-filter-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", "dev": true, - "dependencies": { - "arch": "^2.1.0" - }, "engines": { - "node": ">=4" + "node": ">= 0.10.0" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/meow": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", + "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=16.10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ospath": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "node_modules/method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", "dev": true, + "dependencies": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/p-limit": { + "node_modules/method-override/node_modules/debug": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, + "ms": "2.0.0" + } + }, + "node_modules/method-override/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "p-limit": "^2.2.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">=8" + "node": ">=8.6" } }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "dependencies": { - "p-try": "^2.0.0" + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" + "mime-db": "1.52.0" }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, "engines": { - "node": ">= 4" + "node": ">=6" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pacote": { - "version": "15.1.3", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz", - "integrity": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==", + "node_modules/mini-css-extract-plugin": { + "version": "2.7.5", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", + "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", "dev": true, "dependencies": { - "@npmcli/git": "^4.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^5.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^1.3.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "lib/bin.js" + "schema-utils": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", "dev": true, "dependencies": { - "callsites": "^3.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/parse-json/node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, "engines": { - "node": ">= 0.10" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "devOptional": true, - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "node": ">=8" } }, - "node_modules/parse5-html-rewriting-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz", - "integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==", + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, "dependencies": { - "entities": "^4.3.0", - "parse5": "^7.0.0", - "parse5-sax-parser": "^7.0.0" + "minipass": "^3.0.0" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5-html-rewriting-stream/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node": ">= 8" } }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "parse5": "^6.0.1" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "node_modules/minipass-collect/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/parse5-sax-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", - "integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==", + "node_modules/minipass-fetch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", + "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", "dev": true, "dependencies": { - "parse5": "^7.0.0" + "minipass": "^5.0.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "devOptional": true, "engines": { - "node": ">=0.12" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">= 8" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/path-is-absolute": { + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minipass-json-stream": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "node_modules/minipass-json-stream/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/path-scurry": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz", - "integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==", + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2" + "minipass": "^3.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=8" } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", - "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": "14 || >=16.14" + "node": ">=8" } }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/peek-readable": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", - "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==", + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "engines": { - "node": ">=14.16" + "dependencies": { + "yallist": "^4.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "engines": { + "node": ">=8" } }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "node_modules/minipass-sized/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, - "engines": { - "node": ">=8.6" + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "engines": { + "node": ">= 8" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" + "dependencies": { + "yallist": "^4.0.0" }, "engines": { - "node": ">=0.10" + "node": ">=8" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/pino": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", - "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==", + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "dependencies": { - "atomic-sleep": "^1.0.0", - "fast-redact": "^3.0.0", - "on-exit-leak-free": "^0.2.0", - "pino-abstract-transport": "v0.5.0", - "pino-std-serializers": "^4.0.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "real-require": "^0.1.0", - "safe-stable-stringify": "^2.1.0", - "sonic-boom": "^2.2.1", - "thread-stream": "^0.15.1" + "is-plain-object": "^2.0.4" }, - "bin": { - "pino": "bin.js" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pino-abstract-transport": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", - "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "readable-stream": "^4.0.0", - "split2": "^4.0.0" + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "node_modules/pino-abstract-transport/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "node_modules/morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/pino-abstract-transport/node_modules/readable-stream": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.1.tgz", - "integrity": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==", + "node_modules/morgan/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "ms": "2.0.0" } }, - "node_modules/pino-std-serializers": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", - "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==", + "node_modules/morgan/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/pino/node_modules/pino-abstract-transport": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz", - "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==", + "node_modules/morgan/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dev": true, "dependencies": { - "duplexify": "^4.1.2", - "split2": "^4.0.0" + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/pino/node_modules/sonic-boom": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz", - "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==", + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", "dev": true, - "dependencies": { - "atomic-sleep": "^1.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, - "node_modules/piscina": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", - "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "dependencies": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0" + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" }, - "optionalDependencies": { - "nice-napi": "^1.0.2" + "bin": { + "multicast-dns": "cli.js" } }, - "node_modules/pkg-conf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", - "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/mv": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", "dev": true, "dependencies": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" + "mkdirp": "~0.5.1", + "ncp": "~2.0.0", + "rimraf": "~2.4.0" }, "engines": { - "node": ">=6" + "node": ">=0.8.0" } }, - "node_modules/pkg-conf/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "node_modules/mv/node_modules/glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", "dev": true, "dependencies": { - "locate-path": "^3.0.0" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/pkg-conf/node_modules/load-json-file": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", - "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "node_modules/mv/node_modules/rimraf": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" + "glob": "^6.0.1" }, - "engines": { - "node": ">=6" + "bin": { + "rimraf": "bin.js" } }, - "node_modules/pkg-conf/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/nanoclone": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", + "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", "dev": true, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">=6" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/pkg-conf/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "node_modules/ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "ncp": "bin/ncp" } }, - "node_modules/pkg-conf/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", "dev": true, + "optional": true, "dependencies": { - "p-limit": "^2.0.0" + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" }, "engines": { - "node": ">=6" + "node": ">= 4.4.x" } }, - "node_modules/pkg-conf/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "optional": true, "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" + "ms": "^2.1.1" } }, - "node_modules/pkg-conf/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/needle/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/pkg-conf/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/pkg-conf/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nerf-dart": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", + "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", "dev": true, - "engines": { - "node": ">=4" - } + "peer": true }, - "node_modules/pkg-conf/node_modules/type-fest": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", - "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "node_modules/nice-napi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", + "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", "dev": true, - "engines": { - "node": ">=6" + "hasInstallScript": true, + "optional": true, + "os": [ + "!win32" + ], + "dependencies": { + "node-addon-api": "^3.0.0", + "node-gyp-build": "^4.2.2" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, + "node_modules/node-addon-api": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", + "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", + "dev": true + }, + "node_modules/node-emoji": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", + "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", "dev": true, + "peer": true, "dependencies": { - "find-up": "^4.0.0" + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" } }, - "node_modules/pkginfo": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", - "integrity": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==", + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, "engines": { - "node": ">= 0.4.0" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "dependencies": { - "semver-compare": "^1.0.0" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, "engines": { - "node": ">=4" + "node": ">= 6.13.0" } }, - "node_modules/portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "node_modules/node-gyp": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", + "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", "dev": true, "dependencies": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^11.0.3", + "nopt": "^6.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">= 0.12.0" - } - }, - "node_modules/portfinder/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "dependencies": { - "lodash": "^4.17.14" + "node": "^12.13 || ^14.13 || >=16" } }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/postcss": { - "version": "8.4.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", - "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", + "node_modules/node-gyp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/postcss-calc": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", - "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "node_modules/node-gyp/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" + "node": "*" } }, - "node_modules/postcss-colormin": { + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/nopt": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", - "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" + "abbrev": "^1.0.0" }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "bin": { + "nopt": "bin/nopt.js" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/postcss-convert-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", - "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", + "node_modules/normalize-package-data": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", + "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "hosted-git-info": "^6.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-discard-comments": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", - "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10.0" } }, - "node_modules/postcss-discard-duplicates": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", - "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10.0" } }, - "node_modules/postcss-discard-empty": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", - "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-overridden": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", - "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "node_modules/npm": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", + "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/config", + "@npmcli/fs", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/promise-spawn", + "@npmcli/run-script", + "@sigstore/tuf", + "abbrev", + "archy", + "cacache", + "chalk", + "ci-info", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "fs-minipass", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minimatch", + "minipass", + "minipass-pipeline", + "ms", + "node-gyp", + "nopt", + "normalize-package-data", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "p-map", + "pacote", + "parse-conflict-json", + "proc-log", + "qrcode-terminal", + "read", + "semver", + "spdx-expression-parse", + "ssri", + "strip-ansi", + "supports-color", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], "dev": true, + "peer": true, "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^7.2.1", + "@npmcli/config": "^8.0.2", + "@npmcli/fs": "^3.1.0", + "@npmcli/map-workspaces": "^3.0.4", + "@npmcli/package-json": "^5.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.2", + "@sigstore/tuf": "^2.2.0", + "abbrev": "^2.0.0", + "archy": "~1.0.0", + "cacache": "^18.0.1", + "chalk": "^5.3.0", + "ci-info": "^4.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.3", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.16", + "fs-minipass": "^3.0.3", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "hosted-git-info": "^7.0.1", + "ini": "^4.1.1", + "init-package-json": "^6.0.0", + "is-cidr": "^5.0.3", + "json-parse-even-better-errors": "^3.0.1", + "libnpmaccess": "^8.0.1", + "libnpmdiff": "^6.0.3", + "libnpmexec": "^7.0.4", + "libnpmfund": "^5.0.1", + "libnpmhook": "^10.0.0", + "libnpmorg": "^6.0.1", + "libnpmpack": "^6.0.3", + "libnpmpublish": "^9.0.2", + "libnpmsearch": "^7.0.0", + "libnpmteam": "^6.0.0", + "libnpmversion": "^5.0.1", + "make-fetch-happen": "^13.0.0", + "minimatch": "^9.0.3", + "minipass": "^7.0.4", + "minipass-pipeline": "^1.2.4", + "ms": "^2.1.2", + "node-gyp": "^10.0.1", + "nopt": "^7.2.0", + "normalize-package-data": "^6.0.0", + "npm-audit-report": "^5.0.0", + "npm-install-checks": "^6.3.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-profile": "^9.0.0", + "npm-registry-fetch": "^16.1.0", + "npm-user-validate": "^2.0.0", + "npmlog": "^7.0.1", + "p-map": "^4.0.0", + "pacote": "^17.0.5", + "parse-conflict-json": "^3.0.1", + "proc-log": "^3.0.0", + "qrcode-terminal": "^0.12.0", + "read": "^2.1.0", + "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1", + "ssri": "^10.0.5", + "strip-ansi": "^7.1.0", + "supports-color": "^9.4.0", + "tar": "^6.2.0", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^3.0.0", + "validate-npm-package-name": "^5.0.0", + "which": "^4.0.0", + "write-file-atomic": "^5.0.1" }, - "engines": { - "node": ">=10.0.0" + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" }, - "peerDependencies": { - "postcss": "^8.0.0" + "engines": { + "node": "^18.17.0 || >=20.5.0" } }, - "node_modules/postcss-loader": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.2.4.tgz", - "integrity": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==", + "node_modules/npm-bundled": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", + "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", "dev": true, "dependencies": { - "cosmiconfig": "^8.1.3", - "cosmiconfig-typescript-loader": "^4.3.0", - "klona": "^2.0.6", - "semver": "^7.3.8" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "ts-node": ">=10", - "typescript": ">=4", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - }, - "typescript": { - "optional": true - } + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-loader/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/postcss-loader/node_modules/cosmiconfig": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", - "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "node_modules/npm-install-checks": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.1.1.tgz", + "integrity": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==", "dev": true, "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" + "semver": "^7.1.1" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-loader/node_modules/cosmiconfig-typescript-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", - "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "@types/node": "*", - "cosmiconfig": ">=7", - "ts-node": ">=10", - "typescript": ">=3" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-loader/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-merge-longhand": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", - "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", + "node_modules/npm-packlist": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", + "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.0" + "ignore-walk": "^6.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-merge-rules": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", - "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", + "node_modules/npm-pick-manifest": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", + "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.0", - "postcss-selector-parser": "^6.0.5" + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^10.0.0", + "semver": "^7.3.5" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-minify-font-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", - "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", + "node_modules/npm-registry-fetch": { + "version": "14.0.5", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", + "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "make-fetch-happen": "^11.0.0", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^10.0.0", + "proc-log": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-minify-gradients": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", - "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", "dev": true, "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": ">= 4" } }, - "node_modules/postcss-minify-params": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", - "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", + "node_modules/npm-run-all/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-minify-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", - "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4.8" } }, - "node_modules/postcss-modules-extract-imports": { + "node_modules/npm-run-all/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/npm-run-all/node_modules/has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=4" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=4" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "node_modules/npm-run-all/node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" + "bin": { + "pidtree": "bin/pidtree.js" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=0.10" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0" + "shebang-regex": "^1.0.0" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-charset": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", - "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", + "node_modules/npm-run-all/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-display-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", - "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", + "node_modules/npm-run-all/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "has-flag": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-normalize-positions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", - "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "isexe": "^2.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "bin": { + "which": "bin/which" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", - "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "path-key": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-string": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", - "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", + "node_modules/npm/node_modules/@colors/colors": { + "version": "1.5.0", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.1.90" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", - "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", + "node_modules/npm/node_modules/@isaacs/cliui": { + "version": "8.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=12" } }, - "node_modules/postcss-normalize-unicode": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", - "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-normalize-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", - "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/@npmcli/agent": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", - "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "7.2.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/fs": "^3.1.0", + "@npmcli/installed-package-contents": "^2.0.2", + "@npmcli/map-workspaces": "^3.0.2", + "@npmcli/metavuln-calculator": "^7.0.0", + "@npmcli/name-from-folder": "^2.0.0", + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", + "@npmcli/query": "^3.0.1", + "@npmcli/run-script": "^7.0.2", + "bin-links": "^4.0.1", + "cacache": "^18.0.0", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^7.0.1", + "json-parse-even-better-errors": "^3.0.0", + "json-stringify-nice": "^1.1.4", + "minimatch": "^9.0.0", + "nopt": "^7.0.0", + "npm-install-checks": "^6.2.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "parse-conflict-json": "^3.0.0", + "proc-log": "^3.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.2", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^10.0.5", + "treeverse": "^3.0.0", + "walk-up-path": "^3.0.1" }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "bin": { + "arborist": "bin/index.js" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/postcss-ordered-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", - "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", + "node_modules/npm/node_modules/@npmcli/config": { + "version": "8.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" + "@npmcli/map-workspaces": "^3.0.2", + "ci-info": "^4.0.0", + "ini": "^4.1.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.5", + "walk-up-path": "^3.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/postcss-reduce-initial": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", - "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", + "node_modules/npm/node_modules/@npmcli/disparity-colors": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "ansi-styles": "^4.3.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-reduce-transforms": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", - "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", + "node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "3.1.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "semver": "^7.3.5" }, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-svgo": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", - "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", + "node_modules/npm/node_modules/@npmcli/git": { + "version": "5.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^3.0.2" + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >= 18" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "2.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "bin": { + "installed-package-contents": "lib/index.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-unique-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", - "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "3.0.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "@npmcli/name-from-folder": "^2.0.0", + "glob": "^10.2.2", + "minimatch": "^9.0.0", + "read-package-json-fast": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "cacache": "^18.0.0", + "json-parse-even-better-errors": "^3.0.0", + "pacote": "^17.0.0", + "semver": "^7.3.5" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">= 0.8.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "5.0.0", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.5.3" }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "which": "^4.0.0" + }, "engines": { - "node": ">=6" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/query": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "7.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/npm/node_modules/@pkgjs/parseargs": { + "version": "0.11.0", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "engines": { - "node": ">=10" + "node": ">=14" + } + }, + "node_modules/npm/node_modules/@sigstore/bundle": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "node_modules/npm/node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "node_modules/npm/node_modules/@sigstore/sign": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" + }, "engines": { - "node": ">= 0.6.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/process-warning": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", - "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", - "dev": true + "node_modules/npm/node_modules/@sigstore/tuf": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true + "node_modules/npm/node_modules/@tufjs/canonical-json": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "node_modules/npm/node_modules/@tufjs/models": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" }, "engines": { - "node": ">=10" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/npm/node_modules/abbrev": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/abort-controller": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "event-target-shim": "^5.0.0" }, "engines": { - "node": ">= 6" + "node": ">=6.5" } }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "node_modules/npm/node_modules/agent-base": { + "version": "7.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true - }, - "node_modules/property-expr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", - "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", - "dev": true - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=8" } }, - "node_modules/proxy-from-env": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", - "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", - "dev": true + "node_modules/npm/node_modules/ansi-regex": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "node_modules/npm/node_modules/ansi-styles": { + "version": "6.2.1", "dev": true, - "optional": true + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "dev": true + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "4.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "delegates": "^1.0.0", + "readable-stream": "^4.1.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", "dev": true, - "engines": { - "node": ">=6" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "node_modules/npm/node_modules/base64-js": { + "version": "1.5.1", "dev": true, "funding": [ { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" + "type": "github", + "url": "https://github.com/sponsors/feross" }, { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } - ] + ], + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/qs": { - "version": "6.10.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", - "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", + "node_modules/npm/node_modules/bin-links": { + "version": "4.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "side-channel": "^1.0.4" + "cmd-shim": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "read-cmd-shim": "^4.0.0", + "write-file-atomic": "^5.0.0" }, "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/querystringify": { + "node_modules/npm/node_modules/binary-extensions": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/npm/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm/node_modules/buffer": { + "version": "6.0.3", "dev": true, "funding": [ { @@ -24470,2429 +24823,2386 @@ "type": "consulting", "url": "https://feross.org/support" } - ] - }, - "node_modules/quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", - "dev": true + ], + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/npm/node_modules/builtins": { + "version": "5.0.1", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "semver": "^7.0.0" } }, - "node_modules/randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", + "node_modules/npm/node_modules/cacache": { + "version": "18.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, "engines": { - "node": ">= 0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/randomatic/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "node_modules/npm/node_modules/chalk": { + "version": "5.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/randomatic/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/npm/node_modules/ci-info": { + "version": "4.0.0", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/npm/node_modules/cidr-regex": { + "version": "4.0.3", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "dependencies": { - "safe-buffer": "^5.1.0" + "ip-regex": "^5.0.0" + }, + "engines": { + "node": ">=14" } }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "node_modules/npm/node_modules/cli-columns": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 0.8" + "node": ">= 10" } }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "pify": "^2.3.0" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/read-package-json": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", - "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", + "node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", - "npm-normalize-package-bin": "^3.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.3", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" + "string-width": "^4.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/cmd-shim": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/read-package-json/node_modules/brace-expansion": { + "node_modules/npm/node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "balanced-match": "^1.0.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/read-package-json/node_modules/glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" - }, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "bin": { - "glob": "dist/cjs/src/bin.js" + "color-support": "bin.js" + } + }, + "node_modules/npm/node_modules/columnify": { + "version": "1.6.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=8.0.0" } }, - "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "node_modules/npm/node_modules/columnify/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/read-package-json/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/npm/node_modules/columnify/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "brace-expansion": "^2.0.1" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=8" } }, - "node_modules/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/cross-spawn": { + "version": "7.0.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">= 8" } }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/npm/node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/read-pkg/node_modules/path-type": { + "node_modules/npm/node_modules/cssesc": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, - "dependencies": { - "pify": "^3.0.0" + "inBundle": true, + "license": "MIT", + "peer": true, + "bin": { + "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" } }, - "node_modules/read-pkg/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/npm/node_modules/debug": { + "version": "4.3.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ms": "2.1.2" + }, "engines": { - "node": ">=4" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", "dev": true, - "bin": { - "semver": "bin/semver" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "node_modules/npm/node_modules/defaults": { + "version": "1.0.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/readable-stream/node_modules/isarray": { + "node_modules/npm/node_modules/delegates": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "node_modules/npm/node_modules/diff": { + "version": "5.1.0", "dev": true, - "dependencies": { - "readable-stream": "^3.6.0" - }, + "inBundle": true, + "license": "BSD-3-Clause", + "peer": true, "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "node": ">=0.3.1" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/npm/node_modules/eastasianwidth": { + "version": "0.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, + "iconv-lite": "^0.6.2" + } + }, + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 6" + "node": ">=6" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/event-target-shim": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=8.10.0" + "node": ">=6" } }, - "node_modules/real-require": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz", - "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==", + "node_modules/npm/node_modules/events": { + "version": "3.3.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 12.13.0" + "node": ">=0.8.x" } }, - "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", - "dev": true + "node_modules/npm/node_modules/exponential-backoff": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 4.9.1" + } }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "node_modules/npm/node_modules/foreground-child": { + "version": "3.1.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "regenerate": "^1.4.2" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">=4" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "node_modules/npm/node_modules/fs-minipass": { + "version": "3.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "@babel/runtime": "^7.8.4" + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/regex-parser": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", - "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", - "dev": true + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "node_modules/npm/node_modules/gauge": { + "version": "5.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "node_modules/npm/node_modules/gauge/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "node_modules/npm/node_modules/gauge/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/npm/node_modules/glob": { + "version": "10.3.10", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "jsesc": "~0.5.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" }, "bin": { - "regjsparser": "bin/parser" + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.11", "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/remarkable": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", - "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/hasown": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "argparse": "^1.0.10", - "autolinker": "~0.28.0" - }, - "bin": { - "remarkable": "bin/remarkable.js" + "function-bind": "^1.1.2" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 0.4" } }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "node_modules/npm/node_modules/hosted-git-info": { + "version": "7.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "lru-cache": "^10.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.1", "dev": true, - "engines": { - "node": ">=0.10" - } + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, - "node_modules/request-progress": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "7.0.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "throttleit": "^1.0.0" + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/request/node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": ">=0.10.0" } }, - "node_modules/request/node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "node_modules/npm/node_modules/ieee754": { + "version": "1.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/npm/node_modules/ignore-walk": { + "version": "6.0.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "minimatch": "^9.0.0" }, "engines": { - "node": ">=0.6.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.6" + "node": ">=0.8.19" } }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "node_modules/npm/node_modules/indent-string": { + "version": "4.0.0", "dev": true, - "bin": { - "uuid": "bin/uuid" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/npm/node_modules/ini": { + "version": "4.1.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "node_modules/npm/node_modules/init-package-json": { + "version": "6.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "npm-package-arg": "^11.0.0", + "promzard": "^1.0.0", + "read": "^2.0.0", + "read-package-json": "^7.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^5.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true + "node_modules/npm/node_modules/ip": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "node_modules/npm/node_modules/ip-regex": { + "version": "5.0.0", "dev": true, - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "node_modules/npm/node_modules/is-cidr": { + "version": "5.0.3", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "dependencies": { - "resolve-from": "^5.0.0" + "cidr-regex": "4.0.3" }, "engines": { - "node": ">=8" + "node": ">=14" } }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/npm/node_modules/is-core-module": { + "version": "2.13.1", "dev": true, - "engines": { - "node": ">=8" + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-url-loader": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", - "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", "dev": true, - "dependencies": { - "adjust-sourcemap-loader": "^4.0.0", - "convert-source-map": "^1.7.0", - "loader-utils": "^2.0.0", - "postcss": "^8.2.14", - "source-map": "0.6.1" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/resolve-url-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/jackspeak": { + "version": "2.3.6", "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "peer": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "@isaacs/cliui": "^8.0.2" }, "engines": { - "node": ">=8.9.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/resolve-url-loader/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "3.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", "dev": true, - "engines": { - "node": ">=10" + "inBundle": true, + "license": "ISC", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", "dev": true, - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/npm/node_modules/just-diff": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "5.5.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "8.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "node_modules/npm/node_modules/libnpmdiff": { + "version": "6.0.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/disparity-colors": "^3.0.0", + "@npmcli/installed-package-contents": "^2.0.2", + "binary-extensions": "^2.2.0", + "diff": "^5.1.0", + "minimatch": "^9.0.0", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4", + "tar": "^6.2.0" + }, "engines": { - "node": ">= 4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/npm/node_modules/libnpmexec": { + "version": "7.0.5", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "ci-info": "^4.0.0", + "npm-package-arg": "^11.0.1", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "proc-log": "^3.0.0", + "read": "^2.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "walk-up-path": "^3.0.1" + }, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/npm/node_modules/libnpmfund": { + "version": "5.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "@npmcli/arborist": "^7.2.1" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/npm/node_modules/libnpmhook": { + "version": "10.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/npm/node_modules/libnpmorg": { + "version": "6.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "brace-expansion": "^1.1.7" + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" }, "engines": { - "node": "*" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/rollup": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.0.tgz", - "integrity": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==", + "node_modules/npm/node_modules/libnpmpack": { + "version": "6.0.4", "dev": true, - "bin": { - "rollup": "dist/bin/rollup" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4" }, "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "node_modules/npm/node_modules/libnpmpublish": { + "version": "9.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "ci-info": "^4.0.0", + "normalize-package-data": "^6.0.0", + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7", + "sigstore": "^2.1.0", + "ssri": "^10.0.5" + }, "engines": { - "node": ">=0.12.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "node_modules/npm/node_modules/libnpmsearch": { + "version": "7.0.1", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "queue-microtask": "^1.2.2" + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "node_modules/npm/node_modules/libnpmteam": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "tslib": "^2.1.0" + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "node_modules/npm/node_modules/libnpmversion": { + "version": "5.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "@npmcli/git": "^5.0.3", + "@npmcli/run-script": "^7.0.2", + "json-parse-even-better-errors": "^3.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "node_modules/npm/node_modules/lru-cache": { + "version": "10.1.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=10" + "node": "14 || >=16.14" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/sass": { - "version": "1.62.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", - "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "13.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" }, "engines": { - "node": ">=14.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/sass-loader": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz", - "integrity": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==", + "node_modules/npm/node_modules/minimatch": { + "version": "9.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "klona": "^2.0.6", - "neo-async": "^2.6.2" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 14.15.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.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 - } + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true + "node_modules/npm/node_modules/minipass": { + "version": "7.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "node_modules/npm/node_modules/minipass-collect": { + "version": "2.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "xmlchars": "^2.2.0" + "minipass": "^7.0.3" }, "engines": { - "node": ">=v12.22.7" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "node_modules/npm/node_modules/minipass-fetch": { + "version": "3.0.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": ">= 12.13.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/secure-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", - "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", - "dev": true - }, - "node_modules/select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "dev": true - }, - "node_modules/selfsigned": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", - "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "node-forge": "^1" + "minipass": "^3.0.0" }, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/semver": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", - "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", + "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "dev": true + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } }, - "node_modules/semver-regex": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", - "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", + "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", "dev": true, - "engines": { - "node": ">=12" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "yallist": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/semver-truncate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-3.0.0.tgz", - "integrity": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==", + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "semver": "^7.3.5" + "minipass": "^3.0.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { "yallist": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "minipass": "^3.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ms": "2.0.0" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "randombytes": "^2.1.0" + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "node_modules/npm/node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", "dev": true, - "dependencies": { - "ms": "2.0.0" + "inBundle": true, + "license": "MIT", + "peer": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", "dev": true, - "engines": { - "node": ">= 0.6" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "node_modules/npm/node_modules/mute-stream": { + "version": "1.0.0", "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">= 0.6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.3", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { "node": ">= 0.6" } }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "node_modules/npm/node_modules/node-gyp": { + "version": "10.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">= 0.8.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/server-destroy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", - "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", - "dev": true - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-getter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", - "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", + "node_modules/npm/node_modules/nopt": { + "version": "7.2.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "to-object-path": "^0.3.0" + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "node_modules/npm/node_modules/normalize-package-data": { + "version": "6.0.0", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "dependencies": { - "kind-of": "^6.0.2" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/shallow-clone/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/npm/node_modules/npm-audit-report": { + "version": "5.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/npm/node_modules/npm-bundled": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "shebang-regex": "^3.0.0" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "node_modules/npm/node_modules/npm-install-checks": { + "version": "6.3.0", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "semver": "^7.1.1" + }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/npm/node_modules/npm-package-arg": { + "version": "11.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/sigstore": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", - "integrity": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==", + "node_modules/npm/node_modules/npm-packlist": { + "version": "8.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "@sigstore/tuf": "^1.0.1", - "make-fetch-happen": "^11.0.1" - }, - "bin": { - "sigstore": "bin/sigstore.js" + "ignore-walk": "^6.0.4" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "9.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" + }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "node_modules/npm/node_modules/npm-profile": { + "version": "9.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "16.1.0", "dev": true, - "engines": { - "node": ">=12" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "node_modules/npm/node_modules/npm-user-validate": { + "version": "2.0.0", "dev": true, - "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "node_modules/npm/node_modules/npmlog": { + "version": "7.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" + "are-we-there-yet": "^4.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^5.0.0", + "set-blocking": "^2.0.0" }, "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" + "aggregate-error": "^3.0.0" }, "engines": { - "node": ">= 10" - } - }, - "node_modules/sonic-boom": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", - "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", - "dev": true, - "dependencies": { - "atomic-sleep": "^1.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "node_modules/npm/node_modules/pacote": { + "version": "17.0.5", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "is-plain-obj": "^1.0.0" + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/sort-keys-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", - "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "3.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "sort-keys": "^1.0.0" + "json-parse-even-better-errors": "^3.0.0", + "just-diff": "^6.0.0", + "just-diff-apply": "^5.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/npm/node_modules/path-key": { + "version": "3.1.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/source-map-explorer": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/source-map-explorer/-/source-map-explorer-2.5.3.tgz", - "integrity": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==", + "node_modules/npm/node_modules/path-scurry": { + "version": "1.10.1", "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "peer": true, "dependencies": { - "btoa": "^1.2.1", - "chalk": "^4.1.0", - "convert-source-map": "^1.7.0", - "ejs": "^3.1.5", - "escape-html": "^1.0.3", - "glob": "^7.1.6", - "gzip-size": "^6.0.0", - "lodash": "^4.17.20", - "open": "^7.3.1", - "source-map": "^0.7.4", - "temp": "^0.9.4", - "yargs": "^16.2.0" - }, - "bin": { - "sme": "bin/cli.js", - "source-map-explorer": "bin/cli.js" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/source-map-explorer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/npm/node_modules/postcss-selector-parser": { + "version": "6.0.13", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4" } }, - "node_modules/source-map-explorer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/npm/node_modules/proc-log": { + "version": "3.0.0", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-explorer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/npm/node_modules/process": { + "version": "0.11.10", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=7.0.0" + "node": ">= 0.6.0" } }, - "node_modules/source-map-explorer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/source-map-explorer/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.2", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/source-map-explorer/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "brace-expansion": "^1.1.7" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/source-map-explorer/node_modules/open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "node_modules/npm/node_modules/promzard": { + "version": "1.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" + "read": "^2.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-explorer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "inBundle": true, + "peer": true, + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" } }, - "node_modules/source-map-explorer/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "node_modules/npm/node_modules/read": { + "version": "2.1.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "mute-stream": "~1.0.0" }, "engines": { - "node": ">=10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-explorer/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "node_modules/npm/node_modules/read-package-json": { + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/source-map-loader": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", - "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "3.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "abab": "^2.0.6", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.2" + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.72.1" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-loader/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/npm/node_modules/readable-stream": { + "version": "4.4.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" }, "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">= 4" } }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "deprecated": "Please use @jridgewell/sourcemap-codec instead", - "dev": true + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/npm/node_modules/semver": { + "version": "7.5.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "node_modules/npm/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "node_modules/npm/node_modules/shebang-command": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" } }, - "node_modules/spdy-transport": { + "node_modules/npm/node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, - "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/spdy-transport/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/npm/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/sigstore": { + "version": "2.1.0", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" }, "engines": { - "node": ">= 6" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/split2": { + "node_modules/npm/node_modules/smart-buffer": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 10.x" + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "node_modules/npm/node_modules/socks": { + "version": "2.7.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "node_modules/ssri": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.4.tgz", - "integrity": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==", + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "8.0.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "minipass": "^5.0.0" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 14" } }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.2.0", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", "dev": true, - "engines": { - "node": ">=8" - } + "inBundle": true, + "license": "CC-BY-3.0", + "peer": true }, - "node_modules/standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", - "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "eslint": "^8.41.0", - "eslint-config-standard": "17.1.0", - "eslint-config-standard-jsx": "^11.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-n": "^15.7.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react": "^7.32.2", - "standard-engine": "^15.0.0", - "version-guard": "^1.1.1" - }, - "bin": { - "standard": "bin/cmd.cjs" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/standard-engine": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", - "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.16", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "inBundle": true, + "license": "CC0-1.0", + "peer": true + }, + "node_modules/npm/node_modules/ssri": { + "version": "10.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "get-stdin": "^8.0.0", - "minimist": "^1.2.6", - "pkg-conf": "^3.1.0", - "xdg-basedir": "^4.0.0" + "minipass": "^7.0.3" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/standard/node_modules/@eslint/eslintrc": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", - "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "safe-buffer": "~5.2.0" } }, - "node_modules/standard/node_modules/@humanwhocodes/config-array": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", - "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "node_modules/npm/node_modules/string-width": { + "version": "4.2.3", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10.10.0" + "node": ">=8" } }, - "node_modules/standard/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/npm/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=8" } }, - "node_modules/standard/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/standard/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/standard/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/standard/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/standard/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/standard/node_modules/eslint": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", - "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", + "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.1.0", - "@eslint/js": "8.44.0", - "@humanwhocodes/config-array": "^0.11.10", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.1", - "espree": "^9.6.0", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=8" } }, - "node_modules/standard/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/npm/node_modules/strip-ansi": { + "version": "7.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/standard/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/npm/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "is-glob": "^4.0.3" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/standard/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/standard/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/npm/node_modules/supports-color": { + "version": "9.4.0", "dev": true, - "dependencies": { - "argparse": "^2.0.1" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/standard/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/standard/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/npm/node_modules/tar": { + "version": "6.2.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "p-locate": "^5.0.0" + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/standard/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "brace-expansion": "^1.1.7" + "minipass": "^3.0.0" }, "engines": { - "node": "*" + "node": ">= 8" } }, - "node_modules/standard/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "p-limit": "^3.0.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/standard/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/npm/node_modules/tar/node_modules/minipass": { + "version": "5.0.0", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { "node": ">=8" } }, - "node_modules/standard/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/treeverse": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">= 0.8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/steno": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", - "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", + "node_modules/npm/node_modules/tuf-js": { + "version": "2.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "graceful-fs": "^4.1.3" + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "node_modules/npm/node_modules/unique-filename": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "internal-slot": "^1.0.4" + "unique-slug": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/npm/node_modules/unique-slug": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "safe-buffer": "~5.1.0" + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", "dev": true, - "engines": { - "node": ">=0.6.19" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "5.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "builtins": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/npm/node_modules/walk-up-path": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" + "defaults": "^1.0.3" } }, - "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/npm/node_modules/which": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, "engines": { - "node": ">=8" + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/npm/node_modules/which/node_modules/isexe": { + "version": "3.1.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=8" + "node": ">=16" } }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.5", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/string.prototype.padend": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", - "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", + "node_modules/npm/node_modules/wrap-ansi": { + "version": "8.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "node_modules/npm/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -26900,874 +27210,629 @@ "node": ">=8" } }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", "dev": true, - "engines": { - "node": ">=8" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/strip-color": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", - "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", + "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "node_modules/npm/node_modules/write-file-atomic": { + "version": "5.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", "dev": true, - "engines": { - "node": ">=6" - } + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/strip-outer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-2.0.0.tgz", - "integrity": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dependencies": { + "boolbase": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/strong-log-transformer": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", - "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", + "node_modules/nwsapi": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", + "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==", + "dev": true + }, + "node_modules/nx": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.1.1.tgz", + "integrity": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==", "dev": true, + "hasInstallScript": true, "dependencies": { - "duplexer": "^0.1.1", - "minimist": "^1.2.0", - "through": "^2.3.4" + "@nrwl/tao": "16.1.1", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "^3.0.0-rc.18", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "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.0.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.0", + "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.3.0", + "v8-compile-cache": "2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" }, "bin": { - "sl-log-transformer": "bin/sl-log-transformer.js" + "nx": "bin/nx.js" }, - "engines": { - "node": ">=4" + "optionalDependencies": { + "@nx/nx-darwin-arm64": "16.1.1", + "@nx/nx-darwin-x64": "16.1.1", + "@nx/nx-linux-arm-gnueabihf": "16.1.1", + "@nx/nx-linux-arm64-gnu": "16.1.1", + "@nx/nx-linux-arm64-musl": "16.1.1", + "@nx/nx-linux-x64-gnu": "16.1.1", + "@nx/nx-linux-x64-musl": "16.1.1", + "@nx/nx-win32-arm64-msvc": "16.1.1", + "@nx/nx-win32-x64-msvc": "16.1.1" + }, + "peerDependencies": { + "@swc-node/register": "^1.4.2", + "@swc/core": "^1.2.173" + }, + "peerDependenciesMeta": { + "@swc-node/register": { + "optional": true + }, + "@swc/core": { + "optional": true + } } }, - "node_modules/strtok3": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", - "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", + "node_modules/nx-release": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/nx-release/-/nx-release-3.1.6.tgz", + "integrity": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==", "dev": true, "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - }, - "engines": { - "node": ">=14.16" + "@nx/devkit": "16.5.0", + "chalk": "^4.1.2", + "inquirer": "^8.2.5", + "ora": "^5.4.1", + "process": "0.11.10" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "peerDependencies": { + "tslib": "^2.6.0" } }, - "node_modules/style-loader": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", - "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "node_modules/nx-release/node_modules/@nrwl/devkit": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.0.tgz", + "integrity": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==", "dev": true, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "dependencies": { + "@nx/devkit": "16.5.0" } }, - "node_modules/stylehacks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", - "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", + "node_modules/nx-release/node_modules/@nx/devkit": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.0.tgz", + "integrity": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "@nrwl/devkit": "16.5.0", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.5.3", + "tmp": "~0.2.1", + "tslib": "^2.3.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "nx": ">= 15 <= 17" } }, - "node_modules/stylus": { - "version": "0.59.0", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.59.0.tgz", - "integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==", + "node_modules/nx-release/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@adobe/css-tools": "^4.0.1", - "debug": "^4.3.2", - "glob": "^7.1.6", - "sax": "~1.2.4", - "source-map": "^0.7.3" - }, - "bin": { - "stylus": "bin/stylus" + "color-convert": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=8" }, "funding": { - "url": "https://opencollective.com/stylus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/stylus-loader": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", - "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", + "node_modules/nx-release/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "fast-glob": "^3.2.12", - "normalize-path": "^3.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "stylus": ">=0.52.4", - "webpack": "^5.0.0" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/stylus-loader/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "node_modules/nx-release/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "color-name": "~1.1.4" }, "engines": { - "node": ">=8.6.0" + "node": ">=7.0.0" } }, - "node_modules/stylus/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/nx-release/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/nx-release/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=10" } }, - "node_modules/stylus/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/nx-release/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/nx-release/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=8" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/nx-release/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/svgo": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", - "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", + "node_modules/nx/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^5.1.0", - "css-tree": "^2.2.1", - "csso": "^5.0.5", - "picocolors": "^1.0.0" - }, - "bin": { - "svgo": "bin/svgo" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/svgo" - } - }, - "node_modules/svgo/node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/svgo/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } + "node_modules/nx/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, - "node_modules/svgo/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "node_modules/nx/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "domelementtype": "^2.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 4" + "node": ">=10" }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/svgo/node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "node_modules/nx/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/svgo/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" + "color-name": "~1.1.4" }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", - "dev": true, "engines": { - "node": ">=0.10" + "node": ">=7.0.0" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "node_modules/nx/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "node_modules/nx/node_modules/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", "dev": true, "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=10" + "node": "*" } }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "node_modules/nx/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" + "argparse": "^2.0.1" }, - "engines": { - "node": ">=6" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/nx/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/nx/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 8" + "node": ">=10" } }, - "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/nx/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/yallist": { + "node_modules/nx/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/temp": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", - "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "dev": true, - "dependencies": { - "mkdirp": "^0.5.1", - "rimraf": "~2.6.2" - }, "engines": { - "node": ">=6.0.0" + "node": "*" } }, - "node_modules/temp/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/temp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" + "node": ">= 0.4" } }, - "node_modules/temp/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": ">=10" + "node": ">= 0.4" } }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": ">= 10.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/terser-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "isobject": "^3.0.1" }, "engines": { - "node": ">= 10.13.0" + "node": ">=0.10.0" } }, - "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": ">= 10.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "node_modules/on-exit-leak-free": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", + "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" + "ee-first": "1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 0.8" } }, - "node_modules/test-exclude/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "wrappy": "1" } }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/thread-stream": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", - "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==", - "dev": true, - "dependencies": { - "real-require": "^0.1.0" - } - }, - "node_modules/throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", - "dev": true - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "dev": true - }, - "node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/to-regex-range/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/token-types": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", - "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=14.16" + "node": ">=6" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/toml": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", - "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", - "dev": true - }, - "node_modules/toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", - "dev": true - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true, - "bin": { - "tree-kill": "cli.js" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/trim-repeated": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-2.0.0.tgz", - "integrity": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==", + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, "dependencies": { - "escape-string-regexp": "^5.0.0" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, - "engines": { - "node": ">=12" - } - }, - "node_modules/trim-repeated/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, "engines": { "node": ">=12" }, @@ -27775,102 +27840,56 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", "dev": true, - "dependencies": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "^7.5.3", - "yargs-parser": "^21.0.1" - }, "bin": { - "ts-jest": "cli.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": ">=7.0.0-beta.0 <8", - "@jest/types": "^29.0.0", - "babel-jest": "^29.0.0", - "jest": "^29.0.0", - "typescript": ">=4.3 <6" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@jest/types": { - "optional": true - }, - "babel-jest": { - "optional": true - }, - "esbuild": { - "optional": true - } - } - }, - "node_modules/ts-jest/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "opener": "bin/opener-bin.js" } }, - "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, "engines": { - "node": ">=10" + "node": ">= 0.8.0" } }, - "node_modules/ts-jest/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/ts-loader": { - "version": "9.4.4", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", - "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "dependencies": { + "bl": "^4.1.0", "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "engines": { - "node": ">=12.0.0" + "node": ">=10" }, - "peerDependencies": { - "typescript": "*", - "webpack": "^5.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ts-loader/node_modules/ansi-styles": { + "node_modules/ora/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -27885,7 +27904,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/ts-loader/node_modules/chalk": { + "node_modules/ora/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -27901,7 +27920,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/ts-loader/node_modules/color-convert": { + "node_modules/ora/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -27913,13 +27932,13 @@ "node": ">=7.0.0" } }, - "node_modules/ts-loader/node_modules/color-name": { + "node_modules/ora/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/ts-loader/node_modules/supports-color": { + "node_modules/ora/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -27931,5175 +27950,14533 @@ "node": ">=8" } }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", "dev": true, "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" + "arch": "^2.1.0" }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } + "engines": { + "node": ">=4" } }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/tsconfig-paths-webpack-plugin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz", - "integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==", + "node_modules/ospath": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "dev": true + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.0.0" - }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/p-each-series": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", + "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "peer": true, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/p-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", + "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", "dev": true, + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "p-map": "^5.1.0" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/p-filter/node_modules/aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", "dev": true, + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/p-filter/node_modules/clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "escape-string-regexp": "5.0.0" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/p-filter/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, + "peer": true, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" - }, - "node_modules/tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", + "node_modules/p-filter/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, + "peer": true, "engines": { - "node": ">=0.6.x" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "node_modules/p-filter/node_modules/p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", "dev": true, + "peer": true, "dependencies": { - "tslib": "^1.8.1" + "aggregate-error": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">=12" }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/tuf-js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", - "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true, - "dependencies": { - "@tufjs/models": "1.0.4", - "debug": "^4.3.4", - "make-fetch-happen": "^11.1.1" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "node_modules/p-is-promise": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", + "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, - "node_modules/typanion": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.13.0.tgz", - "integrity": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "aggregate-error": "^3.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "node_modules/p-reduce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "@types/retry": "0.12.0", + "retry": "^0.13.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/typed-assert": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", - "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", - "dev": true + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "node_modules/typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "node_modules/pacote": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz", + "integrity": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==", "dev": true, + "dependencies": { + "@npmcli/git": "^4.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^6.0.1", + "@npmcli/run-script": "^6.0.0", + "cacache": "^17.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^5.0.0", + "npm-package-arg": "^10.0.0", + "npm-packlist": "^7.0.0", + "npm-pick-manifest": "^8.0.0", + "npm-registry-fetch": "^14.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^6.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^1.3.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "pacote": "lib/bin.js" }, "engines": { - "node": ">=12.20" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" + "dependencies": { + "callsites": "^3.0.0" }, "engines": { - "node": ">=0.8.0" + "node": ">=6" } }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "node_modules/parse-json/node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "devOptional": true, "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" + "entities": "^4.4.0" }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "node_modules/parse5-html-rewriting-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz", + "integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "entities": "^4.3.0", + "parse5": "^7.0.0", + "parse5-sax-parser": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "node_modules/parse5-html-rewriting-stream/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, "engines": { - "node": ">=4" + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/union": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", - "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dev": true, "dependencies": { - "qs": "^6.4.0" - }, - "engines": { - "node": ">= 0.8.0" + "parse5": "^6.0.1" } }, - "node_modules/unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/parse5-sax-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", + "integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==", "dev": true, "dependencies": { - "unique-slug": "^4.0.0" + "parse5": "^7.0.0" }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "devOptional": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 0.8" } }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { - "node": ">= 10.0.0" + "node": ">=8" } }, - "node_modules/unix-crypt-td-js": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", - "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", - "dev": true - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz", + "integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2" }, - "bin": { - "update-browserslist-db": "cli.js" + "engines": { + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", + "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", "dev": true, - "dependencies": { - "punycode": "^2.1.0" + "engines": { + "node": "14 || >=16.14" } }, - "node_modules/url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "node_modules/peek-readable": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", + "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==", "dev": true, "engines": { - "node": ">= 0.4.0" + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "dev": true }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, - "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" }, "engines": { - "node": ">=10.12.0" + "node": ">=0.10" } }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "node_modules/pino": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", + "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==", "dev": true, "dependencies": { - "builtins": "^5.0.0" + "atomic-sleep": "^1.0.0", + "fast-redact": "^3.0.0", + "on-exit-leak-free": "^0.2.0", + "pino-abstract-transport": "v0.5.0", + "pino-std-serializers": "^4.0.0", + "process-warning": "^1.0.0", + "quick-format-unescaped": "^4.0.3", + "real-require": "^0.1.0", + "safe-stable-stringify": "^2.1.0", + "sonic-boom": "^2.2.1", + "thread-stream": "^0.15.1" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "bin": { + "pino": "bin.js" } }, - "node_modules/validator": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", - "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", + "node_modules/pino-abstract-transport": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", + "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", "dev": true, - "engines": { - "node": ">= 0.10" + "dependencies": { + "readable-stream": "^4.0.0", + "split2": "^4.0.0" } }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "node_modules/pino-abstract-transport/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dev": true, - "engines": { - "node": ">= 0.8" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/verdaccio": { - "version": "5.25.0", - "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.25.0.tgz", - "integrity": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==", + "node_modules/pino-abstract-transport/node_modules/readable-stream": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.1.tgz", + "integrity": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==", "dev": true, "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/local-storage": "10.3.3", - "@verdaccio/logger-7": "6.0.0-6-next.16", - "@verdaccio/middleware": "6.0.0-6-next.50", - "@verdaccio/search": "6.0.0-6-next.2", - "@verdaccio/signature": "6.0.0-6-next.2", - "@verdaccio/streams": "10.2.1", - "@verdaccio/tarball": "11.0.0-6-next.40", - "@verdaccio/ui-theme": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "async": "3.2.4", - "body-parser": "1.20.2", - "clipanion": "3.2.0", - "compression": "1.7.4", - "cookies": "0.8.0", - "cors": "2.8.5", - "debug": "^4.3.4", - "envinfo": "7.8.1", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "fast-safe-stringify": "2.1.1", - "handlebars": "4.7.7", - "js-yaml": "4.1.0", - "JSONStream": "1.3.5", - "jsonwebtoken": "9.0.0", - "kleur": "4.1.5", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "3.0.0", - "mkdirp": "1.0.4", - "mv": "2.1.1", - "pkginfo": "0.4.1", - "request": "2.88.2", - "semver": "7.5.1", - "validator": "13.9.0", - "verdaccio-audit": "11.0.0-6-next.34", - "verdaccio-htpasswd": "11.0.0-6-next.41" - }, - "bin": { - "verdaccio": "bin/verdaccio" + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" }, "engines": { - "node": ">=12.18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/verdaccio-audit": { - "version": "11.0.0-6-next.34", - "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-11.0.0-6-next.34.tgz", - "integrity": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==", + "node_modules/pino-std-serializers": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", + "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==", + "dev": true + }, + "node_modules/pino/node_modules/pino-abstract-transport": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz", + "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==", "dev": true, "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "express": "4.18.2", - "https-proxy-agent": "5.0.1", - "node-fetch": "cjs" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "duplexify": "^4.1.2", + "split2": "^4.0.0" } }, - "node_modules/verdaccio-htpasswd": { - "version": "11.0.0-6-next.41", - "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-11.0.0-6-next.41.tgz", - "integrity": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==", + "node_modules/pino/node_modules/sonic-boom": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz", + "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/file-locking": "11.0.0-6-next.7", - "apache-md5": "1.1.8", - "bcryptjs": "2.4.3", - "core-js": "3.30.2", - "debug": "4.3.4", - "http-errors": "2.0.0", - "unix-crypt-td-js": "1.1.4" - }, + "atomic-sleep": "^1.0.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, "engines": { - "node": ">=14", - "npm": ">=6" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": ">= 6" } }, - "node_modules/verdaccio-htpasswd/node_modules/@verdaccio/file-locking": { - "version": "11.0.0-6-next.7", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-11.0.0-6-next.7.tgz", - "integrity": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==", + "node_modules/piscina": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", + "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", "dev": true, "dependencies": { - "lockfile": "1.0.4" - }, - "engines": { - "node": ">=12" + "eventemitter-asyncresource": "^1.0.0", + "hdr-histogram-js": "^2.0.1", + "hdr-histogram-percentiles-obj": "^3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "optionalDependencies": { + "nice-napi": "^1.0.2" } }, - "node_modules/verdaccio/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/verdaccio/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/pkg-conf": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", + "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=6" } }, - "node_modules/verdaccio/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "node_modules/pkg-conf/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, "engines": { "node": ">=6" } }, - "node_modules/verdaccio/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/pkg-conf/node_modules/load-json-file": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", + "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", "dev": true, + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/verdaccio/node_modules/mime": { + "node_modules/pkg-conf/node_modules/locate-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, - "bin": { - "mime": "cli.js" + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=6" } }, - "node_modules/verdaccio/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" + "dependencies": { + "p-try": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/verdaccio/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "p-limit": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/verdaccio/node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/pkg-conf/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/verdaccio/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "node_modules/pkg-conf/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" + "engines": { + "node": ">=6" } }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true + "node_modules/pkg-conf/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/version-guard": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", - "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", + "node_modules/pkg-conf/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", "dev": true, "engines": { - "node": ">=0.10.48" + "node": ">=6" } }, - "node_modules/vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { - "esbuild": "^0.17.5", - "postcss": "^8.4.23", - "rollup": "^3.21.0" - }, - "bin": { - "vite": "bin/vite.js" + "find-up": "^4.0.0" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } + "node": ">=8" } }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "node_modules/pkginfo": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", + "integrity": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==", "dev": true, - "dependencies": { - "xml-name-validator": "^4.0.0" - }, "engines": { - "node": ">=14" + "node": ">= 0.4.0" } }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", "dev": true, "dependencies": { - "makeerror": "1.0.12" + "semver-compare": "^1.0.0" } }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "dev": true, "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.12.0" } }, - "node_modules/wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "node_modules/portfinder/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, "dependencies": { - "minimalistic-assert": "^1.0.0" + "lodash": "^4.17.14" } }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "defaults": "^1.0.3" + "ms": "^2.1.1" } }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "node_modules/postcss": { + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >=14" } }, - "node_modules/webpack": { - "version": "5.80.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", - "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", "dev": true, "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^14 || ^16 || >=18.0" }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/webpack-dev-middleware": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz", - "integrity": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==", + "node_modules/postcss-colormin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", + "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", "dev": true, "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.12", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - } + "postcss": "^8.2.15" } }, - "node_modules/webpack-dev-server": { - "version": "4.13.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz", - "integrity": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==", + "node_modules/postcss-convert-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", + "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", "dev": true, "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "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-dev-middleware": "^5.3.1", - "ws": "^8.13.0" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } + "postcss": "^8.2.15" } }, - "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "node_modules/postcss-discard-comments": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", + "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", "dev": true, "engines": { - "node": ">= 10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "node_modules/postcss-discard-duplicates": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", + "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", "dev": true, - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "postcss": "^8.2.15" } }, - "node_modules/webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "node_modules/postcss-discard-empty": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", + "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, "engines": { - "node": ">=10.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", - "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", + "node_modules/postcss-discard-overridden": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", + "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", "dev": true, "engines": { - "node": ">=6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, "engines": { - "node": ">=10.13.0" + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "node_modules/webpack-subresource-integrity": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", - "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", + "node_modules/postcss-loader": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.2.4.tgz", + "integrity": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==", "dev": true, "dependencies": { - "typed-assert": "^1.0.8" + "cosmiconfig": "^8.1.3", + "cosmiconfig-typescript-loader": "^4.3.0", + "klona": "^2.0.6", + "semver": "^7.3.8" }, "engines": { - "node": ">= 12" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", - "webpack": "^5.12.0" + "postcss": "^7.0.0 || ^8.0.1", + "ts-node": ">=10", + "typescript": ">=4", + "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "html-webpack-plugin": { + "ts-node": { + "optional": true + }, + "typescript": { "optional": true } } }, - "node_modules/webpack/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/postcss-loader/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/d-fischer" } }, - "node_modules/webpack/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/postcss-loader/node_modules/cosmiconfig-typescript-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", + "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", "dev": true, + "engines": { + "node": ">=12", + "npm": ">=6" + }, "peerDependencies": { - "ajv": "^6.9.1" + "@types/node": "*", + "cosmiconfig": ">=7", + "ts-node": ">=10", + "typescript": ">=3" } }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/postcss-loader/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "argparse": "^2.0.1" }, - "engines": { - "node": ">=8.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/postcss-merge-longhand": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", + "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.0" + }, "engines": { - "node": ">=4.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/webpack/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/postcss-merge-rules": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", + "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.0", + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">= 10.13.0" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "node_modules/postcss-minify-font-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", + "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", "dev": true, "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.8.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "node_modules/postcss-minify-gradients": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", + "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.8.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "node_modules/postcss-minify-params": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", + "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", "dev": true, "dependencies": { - "iconv-lite": "0.6.3" + "browserslist": "^4.21.4", + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=12" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/postcss-minify-selectors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", + "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/whatwg-mimetype": { + "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", "dev": true, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", "dev": true, "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", "dev": true, "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "postcss-selector-parser": "^6.0.4" }, "engines": { - "node": ">= 8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "icss-utils": "^5.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "node_modules/postcss-normalize-charset": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", + "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" + "engines": { + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, + "node_modules/postcss-normalize-display-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", + "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", + "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "node_modules/postcss-normalize-positions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", + "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", "dev": true, "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wildcard": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", - "dev": true - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", + "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/postcss-normalize-string": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", + "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", + "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/postcss-normalize-unicode": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", + "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=7.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/postcss-normalize-url": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", + "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", + "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=7.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "node_modules/postcss-ordered-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", + "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", "dev": true, "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "node_modules/postcss-reduce-initial": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", + "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, "engines": { - "node": ">=10.0.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "postcss": "^8.2.15" } }, - "node_modules/xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "node_modules/postcss-reduce-transforms": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", + "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "node_modules/postcss-svgo": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", + "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.0.2" + }, "engines": { - "node": ">=0.4" + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "node_modules/postcss-unique-selectors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", + "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "engines": { - "node": ">= 6" + "node": ">= 0.8.0" } }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "bin": { + "prettier": "bin-prettier.js" }, "engines": { - "node": ">=12" + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/yargs/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dev": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", "dev": true, "engines": { - "node": ">=6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6.0" } }, - "node_modules/yup": { - "version": "0.32.11", - "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", - "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/process-warning": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", + "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/lodash": "^4.14.175", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "nanoclone": "^0.2.1", - "property-expr": "^2.0.4", - "toposort": "^2.0.2" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { "node": ">=10" } }, - "node_modules/zone.js": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.13.1.tgz", - "integrity": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, "dependencies": { - "tslib": "^2.3.0" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, - "@adobe/css-tools": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", - "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", + "node_modules/property-expr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", + "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", "dev": true }, - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } + "peer": true }, - "@angular-devkit/architect": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.6.tgz", - "integrity": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==", + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "requires": { - "@angular-devkit/core": "16.0.6", - "rxjs": "7.8.1" + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" } }, - "@angular-devkit/build-angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.0.6.tgz", - "integrity": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==", + "node_modules/proxy-from-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", + "dev": true + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "requires": { - "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/build-webpack": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@babel/core": "7.21.4", - "@babel/generator": "7.21.4", - "@babel/helper-annotate-as-pure": "7.18.6", - "@babel/helper-split-export-declaration": "7.18.6", - "@babel/plugin-proposal-async-generator-functions": "7.20.7", - "@babel/plugin-transform-async-to-generator": "7.20.7", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.4", - "@babel/runtime": "7.21.0", - "@babel/template": "7.20.7", - "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "16.0.6", - "@vitejs/plugin-basic-ssl": "1.0.1", - "ansi-colors": "4.1.3", - "autoprefixer": "10.4.14", - "babel-loader": "9.1.2", - "babel-plugin-istanbul": "6.1.1", - "browserslist": "4.21.5", - "cacache": "17.0.6", - "chokidar": "3.5.3", - "copy-webpack-plugin": "11.0.0", - "critters": "0.0.16", - "css-loader": "6.7.3", - "esbuild": "0.17.18", - "esbuild-wasm": "0.17.18", - "glob": "8.1.0", - "https-proxy-agent": "5.0.1", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "karma-source-map-support": "1.4.0", - "less": "4.1.3", - "less-loader": "11.1.0", - "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.1", - "magic-string": "0.30.0", - "mini-css-extract-plugin": "2.7.5", - "mrmime": "1.0.1", - "open": "8.4.2", - "ora": "5.4.1", - "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "2.3.1", - "piscina": "3.2.0", - "postcss": "8.4.23", - "postcss-loader": "7.2.4", - "resolve-url-loader": "5.0.0", - "rxjs": "7.8.1", - "sass": "1.62.1", - "sass-loader": "13.2.2", - "semver": "7.4.0", - "source-map-loader": "4.0.1", - "source-map-support": "0.5.21", - "terser": "5.17.1", - "text-table": "0.2.0", - "tree-kill": "1.2.2", - "tslib": "2.5.0", - "vite": "4.3.9", - "webpack": "5.80.0", - "webpack-dev-middleware": "6.0.2", - "webpack-dev-server": "4.13.2", - "webpack-merge": "5.8.0", - "webpack-subresource-integrity": "5.1.0" - }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "dev": true - } + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "@angular-devkit/build-webpack": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1600.6.tgz", - "integrity": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==", + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "dev": true, - "requires": { - "@angular-devkit/architect": "0.1600.6", - "rxjs": "7.8.1" + "engines": { + "node": ">=6" } }, - "@angular-devkit/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", - "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", "dev": true, - "requires": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" - } + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] }, - "@angular-devkit/schematics": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", - "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", + "node_modules/qs": { + "version": "6.10.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", + "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", "dev": true, - "requires": { - "@angular-devkit/core": "16.0.6", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@angular-eslint/bundled-angular-compiler": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz", - "integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==", + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, - "@angular-eslint/eslint-plugin": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz", - "integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, - "requires": { - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/utils": "5.59.7" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-format-unescaped": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", + "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", + "dev": true + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@angular-eslint/eslint-plugin-template": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz", - "integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==", + "node_modules/randomatic": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", + "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", "dev": true, - "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/type-utils": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "aria-query": "5.1.3", - "axobject-query": "3.1.1" + "dependencies": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "engines": { + "node": ">= 0.10.0" } }, - "@angular-eslint/template-parser": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz", - "integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==", + "node_modules/randomatic/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "dev": true, - "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "eslint-scope": "^7.0.0" + "engines": { + "node": ">=0.10.0" } }, - "@angular-eslint/utils": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-16.0.3.tgz", - "integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==", + "node_modules/randomatic/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@typescript-eslint/utils": "5.59.7" + "engines": { + "node": ">=0.10.0" } }, - "@angular/animations": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.6.tgz", - "integrity": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==", - "requires": { - "tslib": "^2.3.0" + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" } }, - "@angular/cdk": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.1.3.tgz", - "integrity": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==", - "requires": { - "parse5": "^7.1.2", - "tslib": "^2.3.0" + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "@angular/cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.0.6.tgz", - "integrity": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==", + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dev": true, - "requires": { - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "@schematics/angular": "16.0.6", - "@yarnpkg/lockfile": "1.1.0", - "ansi-colors": "4.1.3", - "ini": "4.0.0", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "npm-package-arg": "10.1.0", - "npm-pick-manifest": "8.0.1", - "open": "8.4.2", - "ora": "5.4.1", - "pacote": "15.1.3", - "resolve": "1.22.2", - "semver": "7.4.0", - "symbol-observable": "4.0.0", - "yargs": "17.7.2" + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "peer": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" } }, - "@angular/common": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", - "integrity": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==", - "requires": { - "tslib": "^2.3.0" + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "peer": true + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.10.0" } }, - "@angular/compiler": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.0.6.tgz", - "integrity": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==", - "requires": { - "tslib": "^2.3.0" + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" } }, - "@angular/compiler-cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.0.6.tgz", - "integrity": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==", + "node_modules/read-package-json": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", + "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", "dev": true, - "requires": { - "@babel/core": "7.21.8", - "@jridgewell/sourcemap-codec": "^1.4.14", - "chokidar": "^3.0.0", - "convert-source-map": "^1.5.1", - "reflect-metadata": "^0.1.2", - "semver": "^7.0.0", - "tslib": "^2.3.0", - "yargs": "^17.2.1" + "dependencies": { + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^5.0.0", + "npm-normalize-package-bin": "^3.0.0" }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "dev": true, "dependencies": { - "@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - } - } - }, - "@angular/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.6.tgz", - "integrity": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==", - "requires": { - "tslib": "^2.3.0" + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "@angular/forms": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.6.tgz", - "integrity": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==", - "requires": { - "tslib": "^2.3.0" + "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", + "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "@angular/language-service": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-16.0.6.tgz", - "integrity": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==", - "dev": true - }, - "@angular/platform-browser": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.6.tgz", - "integrity": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==", - "requires": { - "tslib": "^2.3.0" + "node_modules/read-package-json/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, - "@angular/platform-browser-dynamic": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.6.tgz", - "integrity": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==", - "requires": { - "tslib": "^2.3.0" + "node_modules/read-package-json/node_modules/glob": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2", + "path-scurry": "^1.10.0" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@angular/router": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-16.0.6.tgz", - "integrity": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==", - "requires": { - "tslib": "^2.3.0" + "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", + "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "@assemblyscript/loader": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", - "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", - "dev": true - }, - "@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "node_modules/read-package-json/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, - "requires": { - "@babel/highlight": "^7.22.5" + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", - "dev": true - }, - "@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", + "node_modules/read-pkg-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", + "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", + "deprecated": "Renamed to read-package-up", "dev": true, - "requires": { - "@babel/types": "^7.21.4", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "dependencies": { + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "node_modules/read-pkg-up/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, - "requires": { - "@babel/types": "^7.18.6" + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "node_modules/read-pkg-up/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "engines": { + "node": "14 || >=16.14" } }, - "@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "node_modules/read-pkg-up/node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, - "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "@babel/helper-create-class-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", - "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "node_modules/read-pkg-up/node_modules/parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "semver": "^6.3.0" - }, "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", - "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "node_modules/read-pkg-up/node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.0" - }, "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "engines": { + "node": ">=16" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, - "@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - }, "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "engines": { + "node": ">=4" } }, - "@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "bin": { + "semver": "bin/semver" } }, - "@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - }, "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "node_modules/real-require": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz", + "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "engines": { + "node": ">= 12.13.0" } }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "node_modules/redeyed": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", + "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", "dev": true, - "requires": { - "@babel/types": "^7.18.6" + "peer": true, + "dependencies": { + "esprima": "~4.0.0" } }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "node_modules/reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", "dev": true }, - "@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, - "@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, - "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "regenerate": "^1.4.2" }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } + "engines": { + "node": ">=4" } }, - "@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "@babel/runtime": "^7.8.4" } }, - "@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", "dev": true }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" } }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" } }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", - "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", + "node_modules/registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "peer": true, + "dependencies": { + "@pnpm/npm-conf": "^2.1.0" + }, + "engines": { + "node": ">=14" } }, - "@babel/plugin-proposal-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", - "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/plugin-syntax-decorators": "^7.22.5" - }, "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" } }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "bin": { + "jsesc": "bin/jsesc" } }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "node_modules/remarkable": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", + "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "dependencies": { + "argparse": "^1.0.10", + "autolinker": "~0.28.0" + }, + "bin": { + "remarkable": "bin/remarkable.js" + }, + "engines": { + "node": ">= 0.10.0" } }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "engines": { + "node": ">=0.10.0" } }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "engines": { + "node": ">=0.10" } }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "node_modules/replace-json-property": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/replace-json-property/-/replace-json-property-1.9.0.tgz", + "integrity": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "dependencies": { + "chalk": "^4.1.0", + "commander": "^2.19.0", + "jsonfile": "^5.0.0" + }, + "bin": { + "replace-json-property": "bin/replace-json-property.bin.js", + "rjp": "bin/replace-json-property.bin.js" } }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "node_modules/replace-json-property/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "node_modules/replace-json-property/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "node_modules/replace-json-property/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } + "node_modules/replace-json-property/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } + "node_modules/replace-json-property/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", - "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "node_modules/replace-json-property/node_modules/jsonfile": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz", + "integrity": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "dependencies": { + "universalify": "^0.1.2" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "node_modules/replace-json-property/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "node_modules/replace-json-property/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "engines": { + "node": ">= 4.0.0" } }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" } }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "node_modules/request-progress": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "dependencies": { + "throttleit": "^1.0.0" } }, - "@babel/plugin-syntax-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", - "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", + "node_modules/request/node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "node_modules/request/node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" + "engines": { + "node": ">=0.6" } }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "bin": { + "uuid": "bin/uuid" } }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "engines": { + "node": ">=0.10.0" } }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "engines": { + "node": ">=0.10.0" } }, - "@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "engines": { + "node": ">=8" } }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "node_modules/resolve-url-loader": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", + "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.14", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=12" } }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" } }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "engines": { + "node": ">=0.10.0" } }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "node_modules/resolve.exports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", + "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "engines": { + "node": ">=10" } }, - "@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" } }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" + "engines": { + "node": ">= 4" } }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true }, - "@babel/plugin-transform-classes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", - "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "globals": "^11.1.0" - }, "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - }, "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "node_modules/rollup": { + "version": "3.26.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.0.tgz", + "integrity": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "engines": { + "node": ">=0.12.0" } }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" } }, - "@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dependencies": { + "tslib": "^2.1.0" } }, - "@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "engines": { + "node": ">=10" } }, - "@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.62.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", + "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "node_modules/sass-loader": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz", + "integrity": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" + "dependencies": { + "klona": "^2.0.6", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.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 + } } }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" } }, - "@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "node_modules/secure-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", + "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", + "dev": true + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, - "@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "node_modules/semantic-release": { + "version": "22.0.12", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", + "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", + "dev": true, + "peer": true, + "dependencies": { + "@semantic-release/commit-analyzer": "^11.0.0", + "@semantic-release/error": "^4.0.0", + "@semantic-release/github": "^9.0.0", + "@semantic-release/npm": "^11.0.0", + "@semantic-release/release-notes-generator": "^12.0.0", + "aggregate-error": "^5.0.0", + "cosmiconfig": "^8.0.0", + "debug": "^4.0.0", + "env-ci": "^10.0.0", + "execa": "^8.0.0", + "figures": "^6.0.0", + "find-versions": "^5.1.0", + "get-stream": "^6.0.0", + "git-log-parser": "^1.2.0", + "hook-std": "^3.0.0", + "hosted-git-info": "^7.0.0", + "import-from-esm": "^1.3.1", + "lodash-es": "^4.17.21", + "marked": "^9.0.0", + "marked-terminal": "^6.0.0", + "micromatch": "^4.0.2", + "p-each-series": "^3.0.0", + "p-reduce": "^3.0.0", + "read-pkg-up": "^11.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.3.2", + "semver-diff": "^4.0.0", + "signale": "^1.2.1", + "yargs": "^17.5.1" + }, + "bin": { + "semantic-release": "bin/semantic-release.js" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, + "node_modules/semantic-release/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": ">=18" } }, - "@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "node_modules/semantic-release/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" + "peer": true, + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", - "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "node_modules/semantic-release/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "peer": true + }, + "node_modules/semantic-release/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "peer": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "node_modules/semantic-release/node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "node_modules/semantic-release/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "node_modules/semantic-release/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" + "peer": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "node_modules/semantic-release/node_modules/execa/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-runtime": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", - "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", + "node_modules/semantic-release/node_modules/figures": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", + "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" + "peer": true, + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dev": true, + "peer": true, "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "node_modules/semantic-release/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": ">=16.17.0" } }, - "@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "node_modules/semantic-release/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "node_modules/semantic-release/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "node_modules/semantic-release/node_modules/is-unicode-supported": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", + "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "node_modules/semantic-release/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "@babel/plugin-transform-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", - "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "node_modules/semantic-release/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" + "peer": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/semantic-release/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "peer": true, "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "node_modules/semantic-release/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "node_modules/semantic-release/node_modules/p-reduce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", + "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/preset-env": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", - "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", + "node_modules/semantic-release/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, - "requires": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", - "@babel/plugin-proposal-async-generator-functions": "^7.20.7", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.21.0", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.21.0", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.21.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.20.7", - "@babel/plugin-transform-async-to-generator": "^7.20.7", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.21.0", - "@babel/plugin-transform-classes": "^7.21.0", - "@babel/plugin-transform-computed-properties": "^7.20.7", - "@babel/plugin-transform-destructuring": "^7.21.3", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.21.0", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.20.11", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", - "@babel/plugin-transform-modules-systemjs": "^7.20.11", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.21.3", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.20.5", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.20.7", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.21.4", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" + "peer": true, + "engines": { + "node": ">=12" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "node_modules/semantic-release/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" + "peer": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@babel/preset-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", - "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", + "node_modules/semantic-release/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-typescript": "^7.22.5" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "node_modules/semver": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", + "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", "dev": true }, - "@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", + "node_modules/semver-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" + "peer": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "node_modules/semver-regex": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", + "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "node_modules/semver-truncate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-3.0.0.tgz", + "integrity": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==", "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, "dependencies": { - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "optional": true - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@cypress/request": { - "version": "2.88.11", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", - "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "http-signature": "~1.3.6", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "performance-now": "^2.1.0", - "qs": "~6.10.3", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^8.3.2" + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "@cypress/xvfb": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", - "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "requires": { - "debug": "^3.1.0", - "lodash.once": "^4.1.1" - }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "ms": "2.0.0" } }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "@esbuild/android-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", - "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", - "dev": true, - "optional": true + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true }, - "@esbuild/android-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", - "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dev": true, - "optional": true + "dependencies": { + "randombytes": "^2.1.0" + } }, - "@esbuild/android-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", - "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, - "optional": true + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "@esbuild/darwin-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", - "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "optional": true + "dependencies": { + "ms": "2.0.0" + } }, - "@esbuild/darwin-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", - "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, - "optional": true + "engines": { + "node": ">= 0.6" + } }, - "@esbuild/freebsd-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", - "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, - "optional": true + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } }, - "@esbuild/freebsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", - "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", - "dev": true, - "optional": true + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true }, - "@esbuild/linux-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", - "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", - "dev": true, - "optional": true + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "@esbuild/linux-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", - "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", - "dev": true, - "optional": true + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true }, - "@esbuild/linux-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", - "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, - "optional": true + "engines": { + "node": ">= 0.6" + } }, - "@esbuild/linux-loong64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", - "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, - "optional": true + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "@esbuild/linux-mips64el": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", - "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", - "dev": true, - "optional": true + "node_modules/server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", + "dev": true }, - "@esbuild/linux-ppc64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", - "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", - "dev": true, - "optional": true + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true }, - "@esbuild/linux-riscv64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", - "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", + "node_modules/set-getter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", + "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", "dev": true, - "optional": true + "dependencies": { + "to-object-path": "^0.3.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "@esbuild/linux-s390x": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", - "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", - "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", - "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", - "dev": true, - "optional": true + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true }, - "@esbuild/openbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", - "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, - "optional": true + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } }, - "@esbuild/sunos-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", - "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "optional": true + "engines": { + "node": ">=0.10.0" + } }, - "@esbuild/win32-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", - "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "optional": true + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "@esbuild/win32-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", - "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "optional": true + "engines": { + "node": ">=8" + } }, - "@esbuild/win32-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", - "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", "dev": true, - "optional": true + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "node_modules/signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, + "peer": true, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "engines": { + "node": ">=6" } }, - "@eslint/js": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", - "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "node_modules/signale/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.4" + "peer": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true + "node_modules/signale/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.8.0" + } }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "node_modules/signale/node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, + "peer": true, "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" } }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "node_modules/signale/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" + "peer": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true + "node_modules/signale/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } }, - "@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "node_modules/signale/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0" - }, + "peer": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "node_modules/signale/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, + "peer": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "node_modules/signale/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, - "requires": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0" + "peer": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" } }, - "@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "node_modules/signale/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, - "requires": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "peer": true, + "engines": { + "node": ">=4" } }, - "@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "node_modules/signale/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, - "requires": { - "jest-get-type": "^29.4.3" + "peer": true, + "engines": { + "node": ">=4" } }, - "@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "node_modules/signale/node_modules/pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "peer": true, + "dependencies": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "engines": { + "node": ">=4" } }, - "@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "node_modules/signale/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, + "peer": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "node_modules/sigstore": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", + "integrity": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==", "dev": true, - "requires": { - "@sinclair/typebox": "^0.25.16" + "dependencies": { + "@sigstore/protobuf-specs": "^0.1.0", + "@sigstore/tuf": "^1.0.1", + "make-fetch-happen": "^11.0.1" + }, + "bin": { + "sigstore": "bin/sigstore.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - } + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true }, - "@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" + "peer": true, + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "slash": "^3.0.0" + "engines": { + "node": ">=8" } }, - "@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" + "engines": { + "node": ">=12" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true - }, - "@jridgewell/source-map": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.4.tgz", - "integrity": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - } + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", - "dev": true - }, - "@mole-inc/bin-wrapper": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@mole-inc/bin-wrapper/-/bin-wrapper-8.0.1.tgz", - "integrity": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==", + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", "dev": true, - "requires": { - "bin-check": "^4.1.0", - "bin-version-check": "^5.0.0", - "content-disposition": "^0.5.4", - "ext-name": "^5.0.0", - "file-type": "^17.1.6", - "filenamify": "^5.0.2", - "got": "^11.8.5", - "os-filter-obj": "^2.0.0" + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "@ngrx/store": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-16.0.1.tgz", - "integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==", - "requires": { - "tslib": "^2.0.0" + "node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" } }, - "@ngtools/webpack": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.0.6.tgz", - "integrity": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==", + "node_modules/sonic-boom": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", + "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", "dev": true, - "requires": {} + "dependencies": { + "atomic-sleep": "^1.0.0" + } }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, - "requires": { - "semver": "^7.3.5" + "engines": { + "node": ">= 8" } }, - "@npmcli/git": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", - "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", + "node_modules/source-map-explorer": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/source-map-explorer/-/source-map-explorer-2.5.3.tgz", + "integrity": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==", "dev": true, - "requires": { - "@npmcli/promise-spawn": "^6.0.0", - "lru-cache": "^7.4.4", - "npm-pick-manifest": "^8.0.0", - "proc-log": "^3.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^3.0.0" + "dependencies": { + "btoa": "^1.2.1", + "chalk": "^4.1.0", + "convert-source-map": "^1.7.0", + "ejs": "^3.1.5", + "escape-html": "^1.0.3", + "glob": "^7.1.6", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "open": "^7.3.1", + "source-map": "^0.7.4", + "temp": "^0.9.4", + "yargs": "^16.2.0" + }, + "bin": { + "sme": "bin/cli.js", + "source-map-explorer": "bin/cli.js" }, + "engines": { + "node": ">=12" + } + }, + "node_modules/source-map-explorer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "node_modules/source-map-explorer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@npmcli/node-gyp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", - "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", + "node_modules/source-map-explorer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/source-map-explorer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "@npmcli/promise-spawn": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", - "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", + "node_modules/source-map-explorer/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "requires": { - "which": "^3.0.0" + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-explorer/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, "dependencies": { - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "@npmcli/run-script": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", - "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", + "node_modules/source-map-explorer/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dev": true, - "requires": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^6.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^3.0.0" + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map-explorer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "@nrwl/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==", + "node_modules/source-map-explorer/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, - "requires": { - "@nx/angular": "16.4.2", - "tslib": "^2.3.0" + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" } }, - "@nrwl/cypress": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.3.2.tgz", - "integrity": "sha512-f1RWC4jFe0KNDKRs8FY8gn2ik0+DOGsw/HG2oz5Ck/sT1yPwexLZ/+I854UuKs2Gtw5/B/l/7hcis+/MsgXe2Q==", + "node_modules/source-map-explorer/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "requires": { - "@nx/cypress": "16.3.2" + "engines": { + "node": ">=10" } }, - "@nrwl/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==", + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, - "requires": { - "@nx/devkit": "16.4.2" + "engines": { + "node": ">=0.10.0" } }, - "@nrwl/eslint-plugin-nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.1.1.tgz", - "integrity": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==", + "node_modules/source-map-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", + "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", "dev": true, - "requires": { - "@nx/eslint-plugin": "16.1.1" + "dependencies": { + "abab": "^2.0.6", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.72.1" } }, - "@nrwl/jest": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.3.2.tgz", - "integrity": "sha512-vhwrgjIn1XG3zDSlc6CSfCKBtgDEYQUWG69MdfaqrNInmmsiPkspv7eM99Xh8MGN5HMC2Epzy2todD3J2zZZuQ==", + "node_modules/source-map-loader/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, - "requires": { - "@nx/jest": "16.3.2" + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "@nrwl/js": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.3.2.tgz", - "integrity": "sha512-UMmdA4vXy2/VWNMlpBDruT9XwGmLw/MpUaKoN2KLkai/fYN6MvB3mabc9WQ8qsNvDWshmOJ6TqAHReR25BjugQ==", + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, - "requires": { - "@nx/js": "16.3.2" + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "@nrwl/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==", + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "requires": { - "@nx/linter": "16.1.1" + "engines": { + "node": ">=0.10.0" } }, - "@nrwl/nx-plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-16.4.2.tgz", - "integrity": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==", + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "dev": true + }, + "node_modules/spawn-error-forwarder": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", + "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", "dev": true, - "requires": { - "@nx/plugin": "16.4.2" + "peer": true + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "@nrwl/tao": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.1.1.tgz", - "integrity": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==", + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "requires": { - "nx": "16.1.1" + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "@nrwl/web": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.3.2.tgz", - "integrity": "sha512-UJotencL5g+jyozfVPLevbzWoR10Mx/AURzGNzzGmddLbmXJlsHwnnKHtzGzc+QFG10jYMzk1WZSyBo/ZPrN+Q==", + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, - "requires": { - "@nx/web": "16.3.2" + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "@nrwl/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==", + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, - "requires": { - "@nx/webpack": "16.4.2" + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" } }, - "@nrwl/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==", + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "requires": { - "@nx/workspace": "16.1.1" + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "@nx/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==", + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", "dev": true, - "requires": { - "@nrwl/angular": "16.4.2", - "@nx/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@nx/webpack": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "@typescript-eslint/type-utils": "^5.36.1", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "enquirer": "^2.3.6", - "http-server": "^14.1.0", - "ignore": "^5.0.4", - "magic-string": "~0.26.2", - "minimatch": "3.0.5", - "semver": "7.5.3", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", - "tslib": "^2.3.0", - "webpack": "^5.80.0", - "webpack-merge": "5.7.3" + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "dev": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.4.tgz", + "integrity": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==", + "dev": true, "dependencies": { - "@nrwl/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", - "dev": true, - "requires": { - "@nx/cypress": "16.4.2" - } + "minipass": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", + "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "requires": { - "@nx/jest": "16.4.2" - } + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "eslint": "^8.41.0", + "eslint-config-standard": "17.1.0", + "eslint-config-standard-jsx": "^11.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-n": "^15.7.0", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react": "^7.32.2", + "standard-engine": "^15.0.0", + "version-guard": "^1.1.1" + }, + "bin": { + "standard": "bin/cmd.cjs" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/standard-engine": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", + "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "get-stdin": "^8.0.0", + "minimist": "^1.2.6", + "pkg-conf": "^3.1.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/standard/node_modules/@eslint/eslintrc": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", + "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/standard/node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/standard/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/standard/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/standard/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/standard/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/standard/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/standard/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/standard/node_modules/eslint": { + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", + "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.1.0", + "@eslint/js": "8.44.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.6.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/standard/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/standard/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/standard/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/standard/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/standard/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/standard/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/standard/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/standard/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/standard/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/standard/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/steno": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", + "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.3" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dev": true, + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", + "dev": true, + "peer": true, + "dependencies": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", + "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-color": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", + "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-2.0.0.tgz", + "integrity": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strong-log-transformer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", + "dev": true, + "dependencies": { + "duplexer": "^0.1.1", + "minimist": "^1.2.0", + "through": "^2.3.4" + }, + "bin": { + "sl-log-transformer": "bin/sl-log-transformer.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strtok3": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", + "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", + "dev": true, + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/style-loader": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", + "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/stylus": { + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.59.0.tgz", + "integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==", + "dev": true, + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "debug": "^4.3.2", + "glob": "^7.1.6", + "sax": "~1.2.4", + "source-map": "^0.7.3" + }, + "bin": { + "stylus": "bin/stylus" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://opencollective.com/stylus" + } + }, + "node_modules/stylus-loader": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", + "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.12", + "normalize-path": "^3.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "stylus": ">=0.52.4", + "webpack": "^5.0.0" + } + }, + "node_modules/stylus-loader/node_modules/fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/stylus/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/stylus/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-hyperlinks": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", + "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=14.18" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", + "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.2.1", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/svgo/node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/svgo/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/symbol-observable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "dependencies": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/temp/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", + "dev": true, + "peer": true, + "dependencies": { + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", + "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/text-extensions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", + "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/thread-stream": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", + "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==", + "dev": true, + "dependencies": { + "real-require": "^0.1.0" + } + }, + "node_modules/throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex-range/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", + "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", + "dev": true, + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/toml": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", + "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", + "dev": true + }, + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", + "dev": true + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/traverse": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", + "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "dev": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trim-repeated": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-2.0.0.tgz", + "integrity": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^5.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/trim-repeated/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ts-jest": { + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/ts-loader": { + "version": "9.4.4", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", + "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "node_modules/ts-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-loader/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths-webpack-plugin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz", + "integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^4.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "node_modules/tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", + "dev": true, + "engines": { + "node": ">=0.6.x" + } + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tuf-js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", + "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", + "dev": true, + "dependencies": { + "@tufjs/models": "1.0.4", + "debug": "^4.3.4", + "make-fetch-happen": "^11.1.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "node_modules/typanion": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.13.0.tgz", + "integrity": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-assert": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", + "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", + "dev": true + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/typescript": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", + "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/union": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "dev": true, + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "dev": true, + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "peer": true, + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universal-user-agent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "dev": true, + "peer": true + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unix-crypt-td-js": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", + "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", + "dev": true + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/validate-npm-package-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", + "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "dev": true, + "dependencies": { + "builtins": "^5.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/validator": { + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", + "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verdaccio": { + "version": "5.25.0", + "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.25.0.tgz", + "integrity": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==", + "dev": true, + "dependencies": { + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/local-storage": "10.3.3", + "@verdaccio/logger-7": "6.0.0-6-next.16", + "@verdaccio/middleware": "6.0.0-6-next.50", + "@verdaccio/search": "6.0.0-6-next.2", + "@verdaccio/signature": "6.0.0-6-next.2", + "@verdaccio/streams": "10.2.1", + "@verdaccio/tarball": "11.0.0-6-next.40", + "@verdaccio/ui-theme": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "async": "3.2.4", + "body-parser": "1.20.2", + "clipanion": "3.2.0", + "compression": "1.7.4", + "cookies": "0.8.0", + "cors": "2.8.5", + "debug": "^4.3.4", + "envinfo": "7.8.1", + "express": "4.18.2", + "express-rate-limit": "5.5.1", + "fast-safe-stringify": "2.1.1", + "handlebars": "4.7.7", + "js-yaml": "4.1.0", + "JSONStream": "1.3.5", + "jsonwebtoken": "9.0.0", + "kleur": "4.1.5", + "lodash": "4.17.21", + "lru-cache": "7.18.3", + "mime": "3.0.0", + "mkdirp": "1.0.4", + "mv": "2.1.1", + "pkginfo": "0.4.1", + "request": "2.88.2", + "semver": "7.5.1", + "validator": "13.9.0", + "verdaccio-audit": "11.0.0-6-next.34", + "verdaccio-htpasswd": "11.0.0-6-next.41" + }, + "bin": { + "verdaccio": "bin/verdaccio" + }, + "engines": { + "node": ">=12.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" + } + }, + "node_modules/verdaccio-audit": { + "version": "11.0.0-6-next.34", + "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-11.0.0-6-next.34.tgz", + "integrity": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==", + "dev": true, + "dependencies": { + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "express": "4.18.2", + "https-proxy-agent": "5.0.1", + "node-fetch": "cjs" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" + } + }, + "node_modules/verdaccio-htpasswd": { + "version": "11.0.0-6-next.41", + "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-11.0.0-6-next.41.tgz", + "integrity": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==", + "dev": true, + "dependencies": { + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/file-locking": "11.0.0-6-next.7", + "apache-md5": "1.1.8", + "bcryptjs": "2.4.3", + "core-js": "3.30.2", + "debug": "4.3.4", + "http-errors": "2.0.0", + "unix-crypt-td-js": "1.1.4" + }, + "engines": { + "node": ">=14", + "npm": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" + } + }, + "node_modules/verdaccio-htpasswd/node_modules/@verdaccio/file-locking": { + "version": "11.0.0-6-next.7", + "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-11.0.0-6-next.7.tgz", + "integrity": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==", + "dev": true, + "dependencies": { + "lockfile": "1.0.4" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" + } + }, + "node_modules/verdaccio/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/verdaccio/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/verdaccio/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/verdaccio/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/verdaccio/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/verdaccio/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/verdaccio/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/verdaccio/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/verdaccio/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/version-guard": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", + "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", + "dev": true, + "engines": { + "node": ">=0.10.48" + } + }, + "node_modules/vite": { + "version": "4.3.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", + "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "dev": true, + "dependencies": { + "esbuild": "^0.17.5", + "postcss": "^8.4.23", + "rollup": "^3.21.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/webpack": { + "version": "5.80.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", + "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.13.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz", + "integrity": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.12", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server": { + "version": "4.13.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz", + "integrity": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "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-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-node-externals": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", + "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-subresource-integrity": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", + "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", + "dev": true, + "dependencies": { + "typed-assert": "^1.0.8" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", + "webpack": "^5.12.0" + }, + "peerDependenciesMeta": { + "html-webpack-plugin": { + "optional": true + } + } + }, + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yup": { + "version": "0.32.11", + "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", + "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/lodash": "^4.14.175", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "nanoclone": "^0.2.1", + "property-expr": "^2.0.4", + "toposort": "^2.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/zone.js": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.13.1.tgz", + "integrity": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==", + "dependencies": { + "tslib": "^2.3.0" + } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true + }, + "@adobe/css-tools": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", + "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", + "dev": true + }, + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@angular-devkit/architect": { + "version": "0.1600.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.6.tgz", + "integrity": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==", + "dev": true, + "requires": { + "@angular-devkit/core": "16.0.6", + "rxjs": "7.8.1" + } + }, + "@angular-devkit/build-angular": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.0.6.tgz", + "integrity": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==", + "dev": true, + "requires": { + "@ampproject/remapping": "2.2.1", + "@angular-devkit/architect": "0.1600.6", + "@angular-devkit/build-webpack": "0.1600.6", + "@angular-devkit/core": "16.0.6", + "@babel/core": "7.21.4", + "@babel/generator": "7.21.4", + "@babel/helper-annotate-as-pure": "7.18.6", + "@babel/helper-split-export-declaration": "7.18.6", + "@babel/plugin-proposal-async-generator-functions": "7.20.7", + "@babel/plugin-transform-async-to-generator": "7.20.7", + "@babel/plugin-transform-runtime": "7.21.4", + "@babel/preset-env": "7.21.4", + "@babel/runtime": "7.21.0", + "@babel/template": "7.20.7", + "@discoveryjs/json-ext": "0.5.7", + "@ngtools/webpack": "16.0.6", + "@vitejs/plugin-basic-ssl": "1.0.1", + "ansi-colors": "4.1.3", + "autoprefixer": "10.4.14", + "babel-loader": "9.1.2", + "babel-plugin-istanbul": "6.1.1", + "browserslist": "4.21.5", + "cacache": "17.0.6", + "chokidar": "3.5.3", + "copy-webpack-plugin": "11.0.0", + "critters": "0.0.16", + "css-loader": "6.7.3", + "esbuild": "0.17.18", + "esbuild-wasm": "0.17.18", + "glob": "8.1.0", + "https-proxy-agent": "5.0.1", + "inquirer": "8.2.4", + "jsonc-parser": "3.2.0", + "karma-source-map-support": "1.4.0", + "less": "4.1.3", + "less-loader": "11.1.0", + "license-webpack-plugin": "4.0.2", + "loader-utils": "3.2.1", + "magic-string": "0.30.0", + "mini-css-extract-plugin": "2.7.5", + "mrmime": "1.0.1", + "open": "8.4.2", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "7.0.0", + "picomatch": "2.3.1", + "piscina": "3.2.0", + "postcss": "8.4.23", + "postcss-loader": "7.2.4", + "resolve-url-loader": "5.0.0", + "rxjs": "7.8.1", + "sass": "1.62.1", + "sass-loader": "13.2.2", + "semver": "7.4.0", + "source-map-loader": "4.0.1", + "source-map-support": "0.5.21", + "terser": "5.17.1", + "text-table": "0.2.0", + "tree-kill": "1.2.2", + "tslib": "2.5.0", + "vite": "4.3.9", + "webpack": "5.80.0", + "webpack-dev-middleware": "6.0.2", + "webpack-dev-server": "4.13.2", + "webpack-merge": "5.8.0", + "webpack-subresource-integrity": "5.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "inquirer": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "dev": true + } + } + }, + "@angular-devkit/build-webpack": { + "version": "0.1600.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1600.6.tgz", + "integrity": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==", + "dev": true, + "requires": { + "@angular-devkit/architect": "0.1600.6", + "rxjs": "7.8.1" + } + }, + "@angular-devkit/core": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", + "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", + "dev": true, + "requires": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" + } + }, + "@angular-devkit/schematics": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", + "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", + "dev": true, + "requires": { + "@angular-devkit/core": "16.0.6", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" + } + }, + "@angular-eslint/bundled-angular-compiler": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz", + "integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==", + "dev": true + }, + "@angular-eslint/eslint-plugin": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz", + "integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==", + "dev": true, + "requires": { + "@angular-eslint/utils": "16.0.3", + "@typescript-eslint/utils": "5.59.7" + } + }, + "@angular-eslint/eslint-plugin-template": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz", + "integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==", + "dev": true, + "requires": { + "@angular-eslint/bundled-angular-compiler": "16.0.3", + "@angular-eslint/utils": "16.0.3", + "@typescript-eslint/type-utils": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "aria-query": "5.1.3", + "axobject-query": "3.1.1" + } + }, + "@angular-eslint/template-parser": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz", + "integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==", + "dev": true, + "requires": { + "@angular-eslint/bundled-angular-compiler": "16.0.3", + "eslint-scope": "^7.0.0" + } + }, + "@angular-eslint/utils": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-16.0.3.tgz", + "integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==", + "dev": true, + "requires": { + "@angular-eslint/bundled-angular-compiler": "16.0.3", + "@typescript-eslint/utils": "5.59.7" + } + }, + "@angular/animations": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.6.tgz", + "integrity": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/cdk": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.1.3.tgz", + "integrity": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==", + "requires": { + "parse5": "^7.1.2", + "tslib": "^2.3.0" + } + }, + "@angular/cli": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.0.6.tgz", + "integrity": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==", + "dev": true, + "requires": { + "@angular-devkit/architect": "0.1600.6", + "@angular-devkit/core": "16.0.6", + "@angular-devkit/schematics": "16.0.6", + "@schematics/angular": "16.0.6", + "@yarnpkg/lockfile": "1.1.0", + "ansi-colors": "4.1.3", + "ini": "4.0.0", + "inquirer": "8.2.4", + "jsonc-parser": "3.2.0", + "npm-package-arg": "10.1.0", + "npm-pick-manifest": "8.0.1", + "open": "8.4.2", + "ora": "5.4.1", + "pacote": "15.1.3", + "resolve": "1.22.2", + "semver": "7.4.0", + "symbol-observable": "4.0.0", + "yargs": "17.7.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "inquirer": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@angular/common": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", + "integrity": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/compiler": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.0.6.tgz", + "integrity": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/compiler-cli": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.0.6.tgz", + "integrity": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==", + "dev": true, + "requires": { + "@babel/core": "7.21.8", + "@jridgewell/sourcemap-codec": "^1.4.14", + "chokidar": "^3.0.0", + "convert-source-map": "^1.5.1", + "reflect-metadata": "^0.1.2", + "semver": "^7.0.0", + "tslib": "^2.3.0", + "yargs": "^17.2.1" + }, + "dependencies": { + "@babel/core": { + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + } + } + }, + "@angular/core": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.6.tgz", + "integrity": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/forms": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.6.tgz", + "integrity": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/language-service": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-16.0.6.tgz", + "integrity": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==", + "dev": true + }, + "@angular/platform-browser": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.6.tgz", + "integrity": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/platform-browser-dynamic": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.6.tgz", + "integrity": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@angular/router": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-16.0.6.tgz", + "integrity": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==", + "requires": { + "tslib": "^2.3.0" + } + }, + "@assemblyscript/loader": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", + "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", + "dev": true + }, + "@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true + }, + "@babel/core": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", + "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.4", + "@babel/helper-compilation-targets": "^7.21.4", + "@babel/helper-module-transforms": "^7.21.2", + "@babel/helpers": "^7.21.0", + "@babel/parser": "^7.21.4", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.4", + "@babel/types": "^7.21.4", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", + "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", + "dev": true, + "requires": { + "@babel/types": "^7.21.4", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", + "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", + "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", + "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "requires": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "dependencies": { + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", + "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/helper-replace-supers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", + "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", + "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "requires": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", + "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", + "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/plugin-syntax-decorators": "^7.22.5" + }, + "dependencies": { + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "dev": true, + "requires": { + "@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/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", + "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", + "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", + "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + }, + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", + "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", + "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", + "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.1" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", + "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-plugin-utils": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", + "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" + }, + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", + "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/preset-env": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", + "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.21.4", + "@babel/helper-compilation-targets": "^7.21.4", + "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", + "@babel/plugin-proposal-async-generator-functions": "^7.20.7", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.21.0", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.21.0", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.21.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.20.7", + "@babel/plugin-transform-async-to-generator": "^7.20.7", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.21.0", + "@babel/plugin-transform-classes": "^7.21.0", + "@babel/plugin-transform-computed-properties": "^7.20.7", + "@babel/plugin-transform-destructuring": "^7.21.3", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.21.0", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.20.11", + "@babel/plugin-transform-modules-commonjs": "^7.21.2", + "@babel/plugin-transform-modules-systemjs": "^7.20.11", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.21.3", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.20.5", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.21.4", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", + "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-typescript": "^7.22.5" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", + "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } + } + }, + "@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "optional": true + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + } + } + }, + "@cypress/request": { + "version": "2.88.11", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", + "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "http-signature": "~1.3.6", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "performance-now": "^2.1.0", + "qs": "~6.10.3", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^8.3.2" + } + }, + "@cypress/xvfb": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", + "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", + "dev": true, + "requires": { + "debug": "^3.1.0", + "lodash.once": "^4.1.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true + }, + "@esbuild/android-arm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", + "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", + "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", + "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", + "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", + "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", + "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", + "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", + "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", + "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", + "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", + "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", + "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", + "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", + "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", + "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", + "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", + "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", + "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", + "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", + "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", + "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", + "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@eslint/js": { + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", + "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "requires": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "requires": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + } + }, + "@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "requires": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + } + }, + "@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "requires": { + "jest-get-type": "^29.4.3" + } + }, + "@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + } + }, + "@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "requires": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + } + }, + "@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "requires": { + "@sinclair/typebox": "^0.25.16" + } + }, + "@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + } + }, + "@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "requires": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "requires": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + } + }, + "@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.4.tgz", + "integrity": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "dependencies": { + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + } + } + }, + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "@mole-inc/bin-wrapper": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@mole-inc/bin-wrapper/-/bin-wrapper-8.0.1.tgz", + "integrity": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==", + "dev": true, + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^5.0.0", + "content-disposition": "^0.5.4", + "ext-name": "^5.0.0", + "file-type": "^17.1.6", + "filenamify": "^5.0.2", + "got": "^11.8.5", + "os-filter-obj": "^2.0.0" + } + }, + "@ngrx/store": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-16.0.1.tgz", + "integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==", + "requires": { + "tslib": "^2.0.0" + } + }, + "@ngtools/webpack": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.0.6.tgz", + "integrity": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==", + "dev": true, + "requires": {} + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "dev": true, + "requires": { + "semver": "^7.3.5" + } + }, + "@npmcli/git": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", + "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", + "dev": true, + "requires": { + "@npmcli/promise-spawn": "^6.0.0", + "lru-cache": "^7.4.4", + "npm-pick-manifest": "^8.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^3.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true + }, + "which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@npmcli/installed-package-contents": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", + "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "dev": true, + "requires": { + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + } + }, + "@npmcli/node-gyp": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", + "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", + "dev": true + }, + "@npmcli/promise-spawn": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", + "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", + "dev": true, + "requires": { + "which": "^3.0.0" + }, + "dependencies": { + "which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@npmcli/run-script": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", + "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", + "dev": true, + "requires": { + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^6.0.0", + "node-gyp": "^9.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^3.0.0" + }, + "dependencies": { + "which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@nrwl/angular": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-16.4.2.tgz", + "integrity": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==", + "dev": true, + "requires": { + "@nx/angular": "16.4.2", + "tslib": "^2.3.0" + } + }, + "@nrwl/cypress": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.3.2.tgz", + "integrity": "sha512-f1RWC4jFe0KNDKRs8FY8gn2ik0+DOGsw/HG2oz5Ck/sT1yPwexLZ/+I854UuKs2Gtw5/B/l/7hcis+/MsgXe2Q==", + "dev": true, + "requires": { + "@nx/cypress": "16.3.2" + } + }, + "@nrwl/devkit": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.4.2.tgz", + "integrity": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==", + "dev": true, + "requires": { + "@nx/devkit": "16.4.2" + } + }, + "@nrwl/eslint-plugin-nx": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.1.1.tgz", + "integrity": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==", + "dev": true, + "requires": { + "@nx/eslint-plugin": "16.1.1" + } + }, + "@nrwl/jest": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.3.2.tgz", + "integrity": "sha512-vhwrgjIn1XG3zDSlc6CSfCKBtgDEYQUWG69MdfaqrNInmmsiPkspv7eM99Xh8MGN5HMC2Epzy2todD3J2zZZuQ==", + "dev": true, + "requires": { + "@nx/jest": "16.3.2" + } + }, + "@nrwl/js": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.3.2.tgz", + "integrity": "sha512-UMmdA4vXy2/VWNMlpBDruT9XwGmLw/MpUaKoN2KLkai/fYN6MvB3mabc9WQ8qsNvDWshmOJ6TqAHReR25BjugQ==", + "dev": true, + "requires": { + "@nx/js": "16.3.2" + } + }, + "@nrwl/linter": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.1.1.tgz", + "integrity": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==", + "dev": true, + "requires": { + "@nx/linter": "16.1.1" + } + }, + "@nrwl/nx-plugin": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-16.4.2.tgz", + "integrity": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==", + "dev": true, + "requires": { + "@nx/plugin": "16.4.2" + } + }, + "@nrwl/tao": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.1.1.tgz", + "integrity": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==", + "dev": true, + "requires": { + "nx": "16.1.1" + } + }, + "@nrwl/web": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.3.2.tgz", + "integrity": "sha512-UJotencL5g+jyozfVPLevbzWoR10Mx/AURzGNzzGmddLbmXJlsHwnnKHtzGzc+QFG10jYMzk1WZSyBo/ZPrN+Q==", + "dev": true, + "requires": { + "@nx/web": "16.3.2" + } + }, + "@nrwl/webpack": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-16.4.2.tgz", + "integrity": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==", + "dev": true, + "requires": { + "@nx/webpack": "16.4.2" + } + }, + "@nrwl/workspace": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.1.1.tgz", + "integrity": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==", + "dev": true, + "requires": { + "@nx/workspace": "16.1.1" + } + }, + "@nx/angular": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-16.4.2.tgz", + "integrity": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==", + "dev": true, + "requires": { + "@nrwl/angular": "16.4.2", + "@nx/cypress": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/jest": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", + "@nx/webpack": "16.4.2", + "@nx/workspace": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "@typescript-eslint/type-utils": "^5.36.1", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "enquirer": "^2.3.6", + "http-server": "^14.1.0", + "ignore": "^5.0.4", + "magic-string": "~0.26.2", + "minimatch": "3.0.5", + "semver": "7.5.3", + "ts-node": "10.9.1", + "tsconfig-paths": "^4.1.2", + "tslib": "^2.3.0", + "webpack": "^5.80.0", + "webpack-merge": "5.7.3" + }, + "dependencies": { + "@nrwl/cypress": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", + "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", + "dev": true, + "requires": { + "@nx/cypress": "16.4.2" + } + }, + "@nrwl/jest": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", + "dev": true, + "requires": { + "@nx/jest": "16.4.2" + } + }, + "@nrwl/js": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", + "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", + "dev": true, + "requires": { + "@nx/js": "16.4.2" + } + }, + "@nrwl/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", + "dev": true, + "requires": { + "@nx/linter": "16.4.2" + } + }, + "@nrwl/tao": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", + "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", + "dev": true, + "requires": { + "nx": "16.4.2" + } + }, + "@nrwl/workspace": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", + "dev": true, + "requires": { + "@nx/workspace": "16.4.2" + } + }, + "@nx/cypress": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", + "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", + "dev": true, + "requires": { + "@nrwl/cypress": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "detect-port": "^1.5.1", + "dotenv": "~10.0.0", + "semver": "7.5.3" + } + }, + "@nx/jest": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", + "dev": true, + "requires": { + "@jest/reporters": "^29.4.1", + "@jest/test-result": "^29.4.1", + "@nrwl/jest": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "chalk": "^4.1.0", + "dotenv": "~10.0.0", + "identity-obj-proxy": "3.0.0", + "jest-config": "^29.4.1", + "jest-resolve": "^29.4.1", + "jest-util": "^29.4.1", + "resolve.exports": "1.1.0", + "tslib": "^2.3.0" + } + }, + "@nx/js": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", + "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/workspace": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "detect-port": "^1.5.1", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "semver": "7.5.3", + "source-map-support": "0.5.19", + "tslib": "^2.3.0" + } + }, + "@nx/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", + "dev": true, + "requires": { + "@nrwl/linter": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "@nx/nx-darwin-arm64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", + "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", + "dev": true, + "optional": true + }, + "@nx/nx-darwin-x64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", + "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm-gnueabihf": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", + "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-gnu": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", + "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-musl": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", + "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-gnu": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", + "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-musl": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", + "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-arm64-msvc": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", + "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-x64-msvc": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", + "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", + "dev": true, + "optional": true + }, + "@nx/workspace": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "dev": true, + "requires": { + "@nrwl/workspace": "16.4.2", + "@nx/devkit": "16.4.2", + "@parcel/watcher": "2.0.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "dotenv": "~10.0.0", + "figures": "3.2.0", + "flat": "^5.0.2", + "ignore": "^5.0.4", + "minimatch": "3.0.5", + "npm-run-path": "^4.0.1", + "nx": "16.4.2", + "open": "^8.4.0", + "rxjs": "^7.8.0", + "tmp": "~0.2.1", + "tslib": "^2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + } + }, + "@yarnpkg/parsers": { + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", + "dev": true, + "requires": { + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", + "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, + "nx": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", + "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", + "dev": true, + "requires": { + "@nrwl/tao": "16.4.2", + "@nx/nx-darwin-arm64": "16.4.2", + "@nx/nx-darwin-x64": "16.4.2", + "@nx/nx-freebsd-x64": "16.4.2", + "@nx/nx-linux-arm-gnueabihf": "16.4.2", + "@nx/nx-linux-arm64-gnu": "16.4.2", + "@nx/nx-linux-arm64-musl": "16.4.2", + "@nx/nx-linux-x64-gnu": "16.4.2", + "@nx/nx-linux-x64-musl": "16.4.2", + "@nx/nx-win32-arm64-msvc": "16.4.2", + "@nx/nx-win32-x64-msvc": "16.4.2", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "3.0.0-rc.46", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "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.0.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.0", + "semver": "7.5.3", + "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.3.0", + "v8-compile-cache": "2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + }, + "dependencies": { + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "webpack-merge": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", + "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/cypress": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.3.2.tgz", + "integrity": "sha512-XB4CvhTv154GHp/2+lSoCigPKZK1YoRyIZWIHJdBmpQUocLJkSqp+H8KQaU/0gH3Xbz5NxGXbQMFDWzkKxIGPg==", + "dev": true, + "requires": { + "@nrwl/cypress": "16.3.2", + "@nx/devkit": "16.3.2", + "@nx/js": "16.3.2", + "@nx/linter": "16.3.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "detect-port": "^1.5.1", + "dotenv": "~10.0.0", + "semver": "7.3.4" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "dev": true, + "requires": { + "@nx/devkit": "16.3.2" + } + }, + "@nrwl/linter": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.3.2.tgz", + "integrity": "sha512-sUDQNlmRIGQnhdDmpQkJgpF9LZWKBoqXr2g9Y4yq0QlpTamxTbx8/GxMICotA52kayEx1cKbU1xvjJWPchSrlw==", + "dev": true, + "requires": { + "@nx/linter": "16.3.2" + } + }, + "@nx/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.3.2", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "@nx/linter": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.3.2.tgz", + "integrity": "sha512-hVCU6ZIMd+yTMLrC3PbjaHuD3yU+sB/lABTaWuUx2klT0cqKhiTp0KnDLcFWtzQmnNtGEaUjfPKxvA92xon0CA==", + "dev": true, + "requires": { + "@nrwl/linter": "16.3.2", + "@nx/devkit": "16.3.2", + "@nx/js": "16.3.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/devkit": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.4.2.tgz", + "integrity": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.4.2", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.5.3", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/eslint-plugin": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-16.1.1.tgz", + "integrity": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==", + "dev": true, + "requires": { + "@nrwl/eslint-plugin-nx": "16.1.1", + "@nx/devkit": "16.1.1", + "@nx/js": "16.1.1", + "@typescript-eslint/type-utils": "^5.58.0", + "@typescript-eslint/utils": "^5.58.0", + "chalk": "^4.1.0", + "confusing-browser-globals": "^1.0.9", + "semver": "7.3.4" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", + "dev": true, + "requires": { + "@nx/devkit": "16.1.1" + } + }, + "@nrwl/js": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", + "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", + "dev": true, + "requires": { + "@nx/js": "16.1.1" + } + }, + "@nx/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.1.1", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "@nx/js": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", + "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.1.1", + "@nx/devkit": "16.1.1", + "@nx/workspace": "16.1.1", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "source-map-support": "0.5.19", + "tree-kill": "1.2.2", + "tslib": "^2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/jest": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.3.2.tgz", + "integrity": "sha512-aO8Rc+wwSXLh1jJYd2cxOT5R9BQfqjAXWZOPcvAQQonFNNfwMHrw0+YsqjWgiFtFrxzSX5RrhzVG44cOWpAdqQ==", + "dev": true, + "requires": { + "@jest/reporters": "^29.4.1", + "@jest/test-result": "^29.4.1", + "@nrwl/jest": "16.3.2", + "@nx/devkit": "16.3.2", + "@nx/js": "16.3.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "chalk": "^4.1.0", + "dotenv": "~10.0.0", + "identity-obj-proxy": "3.0.0", + "jest-config": "^29.4.1", + "jest-resolve": "^29.4.1", + "jest-util": "^29.4.1", + "resolve.exports": "1.1.0", + "tslib": "^2.3.0" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "dev": true, + "requires": { + "@nx/devkit": "16.3.2" + } + }, + "@nx/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.3.2", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/js": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.3.2.tgz", + "integrity": "sha512-bumLGMduNm221Sh3/wkEMEkJOC1kTlqmpx6wamDSsPlAFq0ePgoaNJjoYqC9XH7n7wXtgy9bgKhHJPnek8NKow==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.3.2", + "@nx/devkit": "16.3.2", + "@nx/workspace": "16.3.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "semver": "7.3.4", + "source-map-support": "0.5.19", + "tslib": "^2.3.0" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "dev": true, + "requires": { + "@nx/devkit": "16.3.2" + } + }, + "@nrwl/tao": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.3.2.tgz", + "integrity": "sha512-2Kg7dtv6JcQagCZPSq+okceI81NqmXGGgbKWqS7sOfdmp1otxS9uiUFNXw+Pdtnw38mdRviMtSOXScntu4sUKg==", + "dev": true, + "requires": { + "nx": "16.3.2" + } + }, + "@nrwl/workspace": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.3.2.tgz", + "integrity": "sha512-ORVzEEJIMOFYEOtOQHLU7N4vT4mYZ/JzKiwHZrHkCaVhgkiGBLoX3tOwVZjafKaa/24cGISv0J7WRtnfRKl2cA==", + "dev": true, + "requires": { + "@nx/workspace": "16.3.2" + } + }, + "@nx/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.3.2", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "@nx/nx-darwin-arm64": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.3.2.tgz", + "integrity": "sha512-YfYVNfsJBzBcBnJUU4AcA6A4QMkgnVlETfp4KGL36Otq542mRY1ISGHdox63ocI5AKh5gay5AaGcR4wR9PU9Vg==", + "dev": true, + "optional": true + }, + "@nx/nx-darwin-x64": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.3.2.tgz", + "integrity": "sha512-bJtpozz0zSRVRrcQ76GrlT3TWEGTymLYWrVG51bH5KZ46t6/a4EQBI3uL3vubMmOZ0jR4ywybOcPBBhxmBJ68w==", + "dev": true, + "optional": true + }, + "@nx/nx-freebsd-x64": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.3.2.tgz", + "integrity": "sha512-ZvufI0bWqT67nLbBo6ejrIGxypdoedRQTP/tudWbs/4isvxLe1uVku1BfKCTQUsJG367SqNOU1H5kzI/MRr3ow==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm-gnueabihf": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.3.2.tgz", + "integrity": "sha512-IQL4kxdiZLvifar7+SIum3glRuVsxtE0dL8RvteSDXrxDQnaTUrjILC+VGhalRmk7ngBbGKNrhWOeeL7390CzQ==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-gnu": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.3.2.tgz", + "integrity": "sha512-f6AWgPVu3mfUEoOBa0rY2/7QY0Or9eR0KtLFpcPh7RUpxPw2EXzIbjD/0RGipdpspSrgiMKbZpsUjo6mXBFsQA==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-musl": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.3.2.tgz", + "integrity": "sha512-AvrWcYz7021E3b5P9/0i26p60XMZfw86Epks51L6AhlflarlOH4AcEChc7APMtb1ELAIbDWx2S6oIDRbQ7rtVA==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-gnu": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.3.2.tgz", + "integrity": "sha512-K2pWGAcbCNm6b7UZI9cc8z4Rb540QcuepBXD7akjPjWerzXriT6VCn4i9mVKsCg2mwSfknTJJVJ1PZwJSmTl/Q==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-musl": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.3.2.tgz", + "integrity": "sha512-sY1QDuQlqyYiRPJZanrtV07tU0DOXiCrWb0pDsGiO0qHuUSmW5Vw17GWEY4z3rt0/5U8fJ+/9WQrneviOmsOKg==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-arm64-msvc": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.3.2.tgz", + "integrity": "sha512-wBfohT2hjrLKn9WFHvG0MFVk7uYhgYNiptnTLdTouziHgFyZ08vyl7XYBq55BwHPMQ5iswVoEfjn/5ZBfCPscg==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-x64-msvc": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.3.2.tgz", + "integrity": "sha512-QC0sWrfQm0/WdvvM//7UAgm+otbak6bznZ0zawTeqmLBh1hLjNeweyzSVKQEtZtlzDMKpzCVuuwkJq+VKBLvmw==", + "dev": true, + "optional": true + }, + "@nx/workspace": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.3.2.tgz", + "integrity": "sha512-gFrJEv3+Jn2leu3RKFTakPHY8okI8hjOg8RO4OWA2ZemFXRyh9oIm/xsCsOyqYlGt06eqV2mD3GUun/05z1nhg==", + "dev": true, + "requires": { + "@nrwl/workspace": "16.3.2", + "@nx/devkit": "16.3.2", + "@parcel/watcher": "2.0.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "dotenv": "~10.0.0", + "figures": "3.2.0", + "flat": "^5.0.2", + "ignore": "^5.0.4", + "minimatch": "3.0.5", + "npm-run-path": "^4.0.1", + "nx": "16.3.2", + "open": "^8.4.0", + "rxjs": "^7.8.0", + "tmp": "~0.2.1", + "tslib": "^2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "nx": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.3.2.tgz", + "integrity": "sha512-fOzCVL7qoCJAcYTJwvJ9j+PSaL791ro4AICWuLxaphZsp2jcLoav4Ev7ONPks2Wlkt8FS9bee3nqQ3w1ya36Og==", + "dev": true, + "requires": { + "@nrwl/tao": "16.3.2", + "@nx/nx-darwin-arm64": "16.3.2", + "@nx/nx-darwin-x64": "16.3.2", + "@nx/nx-freebsd-x64": "16.3.2", + "@nx/nx-linux-arm-gnueabihf": "16.3.2", + "@nx/nx-linux-arm64-gnu": "16.3.2", + "@nx/nx-linux-arm64-musl": "16.3.2", + "@nx/nx-linux-x64-gnu": "16.3.2", + "@nx/nx-linux-x64-musl": "16.3.2", + "@nx/nx-win32-arm64-msvc": "16.3.2", + "@nx/nx-win32-x64-msvc": "16.3.2", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "^3.0.0-rc.18", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "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.0.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.0", + "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.3.0", + "v8-compile-cache": "2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/linter": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.1.1.tgz", + "integrity": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==", + "dev": true, + "requires": { + "@nrwl/linter": "16.1.1", + "@nx/devkit": "16.1.1", + "@nx/js": "16.1.1", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", + "dev": true, + "requires": { + "@nx/devkit": "16.1.1" + } + }, + "@nrwl/js": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", + "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", + "dev": true, + "requires": { + "@nx/js": "16.1.1" + } + }, + "@nx/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.1.1", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "@nx/js": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", + "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.1.1", + "@nx/devkit": "16.1.1", + "@nx/workspace": "16.1.1", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "source-map-support": "0.5.19", + "tree-kill": "1.2.2", + "tslib": "^2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/nx-darwin-arm64": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.1.1.tgz", + "integrity": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==", + "dev": true, + "optional": true + }, + "@nx/nx-darwin-x64": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.1.1.tgz", + "integrity": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==", + "dev": true, + "optional": true + }, + "@nx/nx-freebsd-x64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.4.2.tgz", + "integrity": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm-gnueabihf": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.1.1.tgz", + "integrity": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-gnu": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.1.1.tgz", + "integrity": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-musl": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.1.1.tgz", + "integrity": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-gnu": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.1.1.tgz", + "integrity": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-musl": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.1.1.tgz", + "integrity": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-arm64-msvc": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.1.1.tgz", + "integrity": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-x64-msvc": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.1.1.tgz", + "integrity": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==", + "dev": true, + "optional": true + }, + "@nx/plugin": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-16.4.2.tgz", + "integrity": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==", + "dev": true, + "requires": { + "@nrwl/nx-plugin": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/jest": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "dotenv": "~10.0.0", + "fs-extra": "^11.1.0", + "tslib": "^2.3.0" + }, + "dependencies": { + "@nrwl/jest": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", + "dev": true, + "requires": { + "@nx/jest": "16.4.2" + } + }, + "@nrwl/js": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", + "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", + "dev": true, + "requires": { + "@nx/js": "16.4.2" + } + }, + "@nrwl/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", + "dev": true, + "requires": { + "@nx/linter": "16.4.2" + } + }, + "@nrwl/tao": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", + "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", + "dev": true, + "requires": { + "nx": "16.4.2" + } + }, + "@nrwl/workspace": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", + "dev": true, + "requires": { + "@nx/workspace": "16.4.2" + } + }, + "@nx/jest": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", + "dev": true, + "requires": { + "@jest/reporters": "^29.4.1", + "@jest/test-result": "^29.4.1", + "@nrwl/jest": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "chalk": "^4.1.0", + "dotenv": "~10.0.0", + "identity-obj-proxy": "3.0.0", + "jest-config": "^29.4.1", + "jest-resolve": "^29.4.1", + "jest-util": "^29.4.1", + "resolve.exports": "1.1.0", + "tslib": "^2.3.0" + } + }, + "@nx/js": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", + "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/workspace": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "detect-port": "^1.5.1", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "semver": "7.5.3", + "source-map-support": "0.5.19", + "tslib": "^2.3.0" + } + }, + "@nx/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", + "dev": true, + "requires": { + "@nrwl/linter": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "@nx/nx-darwin-arm64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", + "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", + "dev": true, + "optional": true + }, + "@nx/nx-darwin-x64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", + "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm-gnueabihf": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", + "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-gnu": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", + "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-musl": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", + "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-gnu": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", + "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-musl": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", + "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-arm64-msvc": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", + "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-x64-msvc": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", + "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", + "dev": true, + "optional": true + }, + "@nx/workspace": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "dev": true, + "requires": { + "@nrwl/workspace": "16.4.2", + "@nx/devkit": "16.4.2", + "@parcel/watcher": "2.0.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "dotenv": "~10.0.0", + "figures": "3.2.0", + "flat": "^5.0.2", + "ignore": "^5.0.4", + "minimatch": "3.0.5", + "npm-run-path": "^4.0.1", + "nx": "16.4.2", + "open": "^8.4.0", + "rxjs": "^7.8.0", + "tmp": "~0.2.1", + "tslib": "^2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + } + }, + "@yarnpkg/parsers": { + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", + "dev": true, + "requires": { + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "nx": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", + "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", + "dev": true, + "requires": { + "@nrwl/tao": "16.4.2", + "@nx/nx-darwin-arm64": "16.4.2", + "@nx/nx-darwin-x64": "16.4.2", + "@nx/nx-freebsd-x64": "16.4.2", + "@nx/nx-linux-arm-gnueabihf": "16.4.2", + "@nx/nx-linux-arm64-gnu": "16.4.2", + "@nx/nx-linux-arm64-musl": "16.4.2", + "@nx/nx-linux-x64-gnu": "16.4.2", + "@nx/nx-linux-x64-musl": "16.4.2", + "@nx/nx-win32-arm64-msvc": "16.4.2", + "@nx/nx-win32-x64-msvc": "16.4.2", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "3.0.0-rc.46", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "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.0.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.0", + "semver": "7.5.3", + "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.3.0", + "v8-compile-cache": "2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + }, + "dependencies": { + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/web": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.3.2.tgz", + "integrity": "sha512-PzTkawQ+OgjX0mR5KwMGcdveoMNLKo/jYaW3UrPMIVUy0NpalW0ULJnDOUt+NRlrp7jOsUP7hUYZkYPNDI3Ivg==", + "dev": true, + "requires": { + "@nrwl/web": "16.3.2", + "@nx/devkit": "16.3.2", + "@nx/js": "16.3.2", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "detect-port": "^1.5.1", + "http-server": "^14.1.0", + "ignore": "^5.0.4", + "tslib": "^2.3.0" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "dev": true, + "requires": { + "@nx/devkit": "16.3.2" + } + }, + "@nx/devkit": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", + "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.3.2", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/webpack": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", + "integrity": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@nrwl/webpack": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "autoprefixer": "^10.4.9", + "babel-loader": "^9.1.2", + "browserslist": "^4.21.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "copy-webpack-plugin": "^10.2.4", + "css-loader": "^6.4.0", + "css-minimizer-webpack-plugin": "^5.0.0", + "dotenv": "~10.0.0", + "fork-ts-checker-webpack-plugin": "7.2.13", + "ignore": "^5.0.4", + "less": "4.1.3", + "less-loader": "11.1.0", + "license-webpack-plugin": "^4.0.2", + "loader-utils": "^2.0.3", + "mini-css-extract-plugin": "~2.4.7", + "parse5": "4.0.0", + "postcss": "^8.4.14", + "postcss-import": "~14.1.0", + "postcss-loader": "^6.1.1", + "rxjs": "^7.8.0", + "sass": "^1.42.1", + "sass-loader": "^12.2.0", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.0", + "stylus": "^0.59.0", + "stylus-loader": "^7.1.0", + "terser-webpack-plugin": "^5.3.3", + "ts-loader": "^9.3.1", + "ts-node": "10.9.1", + "tsconfig-paths": "^4.1.2", + "tsconfig-paths-webpack-plugin": "4.0.0", + "tslib": "^2.3.0", + "webpack": "^5.80.0", + "webpack-dev-server": "^4.9.3", + "webpack-node-externals": "^3.0.0", + "webpack-subresource-integrity": "^5.1.0" + }, + "dependencies": { "@nrwl/js": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", "dev": true, "requires": { - "@nx/js": "16.4.2" + "@nx/js": "16.4.2" + } + }, + "@nrwl/tao": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", + "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", + "dev": true, + "requires": { + "nx": "16.4.2" + } + }, + "@nrwl/workspace": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", + "dev": true, + "requires": { + "@nx/workspace": "16.4.2" + } + }, + "@nx/js": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", + "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", + "dev": true, + "requires": { + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/workspace": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "detect-port": "^1.5.1", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "semver": "7.5.3", + "source-map-support": "0.5.19", + "tslib": "^2.3.0" + } + }, + "@nx/nx-darwin-arm64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", + "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", + "dev": true, + "optional": true + }, + "@nx/nx-darwin-x64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", + "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm-gnueabihf": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", + "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-gnu": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", + "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-musl": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", + "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-gnu": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", + "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-musl": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", + "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-arm64-msvc": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", + "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-x64-msvc": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", + "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", + "dev": true, + "optional": true + }, + "@nx/workspace": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "dev": true, + "requires": { + "@nrwl/workspace": "16.4.2", + "@nx/devkit": "16.4.2", + "@parcel/watcher": "2.0.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "dotenv": "~10.0.0", + "figures": "3.2.0", + "flat": "^5.0.2", + "ignore": "^5.0.4", + "minimatch": "3.0.5", + "npm-run-path": "^4.0.1", + "nx": "16.4.2", + "open": "^8.4.0", + "rxjs": "^7.8.0", + "tmp": "~0.2.1", + "tslib": "^2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + } + }, + "@yarnpkg/parsers": { + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", + "dev": true, + "requires": { + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-union": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "10.2.4", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", + "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", + "dev": true, + "requires": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^12.0.2", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + } + }, + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globby": { + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "dev": true, + "requires": { + "array-union": "^3.0.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "mini-css-extract-plugin": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", + "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", + "dev": true, + "requires": { + "schema-utils": "^4.0.0" + } + }, + "nx": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", + "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", + "dev": true, + "requires": { + "@nrwl/tao": "16.4.2", + "@nx/nx-darwin-arm64": "16.4.2", + "@nx/nx-darwin-x64": "16.4.2", + "@nx/nx-freebsd-x64": "16.4.2", + "@nx/nx-linux-arm-gnueabihf": "16.4.2", + "@nx/nx-linux-arm64-gnu": "16.4.2", + "@nx/nx-linux-arm64-musl": "16.4.2", + "@nx/nx-linux-x64-gnu": "16.4.2", + "@nx/nx-linux-x64-musl": "16.4.2", + "@nx/nx-win32-arm64-msvc": "16.4.2", + "@nx/nx-win32-x64-msvc": "16.4.2", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "3.0.0-rc.46", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "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.0.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.0", + "semver": "7.5.3", + "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.3.0", + "v8-compile-cache": "2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + }, + "dependencies": { + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + } + }, + "sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dev": true, + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" } }, - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "dev": true, "requires": { - "@nx/linter": "16.4.2" + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" } }, - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", "dev": true, "requires": { - "nx": "16.4.2" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "@nx/workspace": "16.4.2" + "has-flag": "^4.0.0" } }, - "@nx/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/workspace": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.1.1.tgz", + "integrity": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==", + "dev": true, + "requires": { + "@nrwl/workspace": "16.1.1", + "@nx/devkit": "16.1.1", + "@parcel/watcher": "2.0.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "dotenv": "~10.0.0", + "figures": "3.2.0", + "flat": "^5.0.2", + "ignore": "^5.0.4", + "minimatch": "3.0.5", + "npm-run-path": "^4.0.1", + "nx": "16.1.1", + "open": "^8.4.0", + "rxjs": "^7.8.0", + "tmp": "~0.2.1", + "tslib": "^2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", "dev": true, "requires": { - "@nrwl/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.5.3" + "@nx/devkit": "16.1.1" } }, - "@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", + "@nx/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", "dev": true, "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", + "@nrwl/devkit": "16.1.1", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", "tslib": "^2.3.0" } }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "dev": true, + "peer": true + }, + "@octokit/core": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", + "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", + "dev": true, + "peer": true, + "requires": { + "@octokit/auth-token": "^4.0.0", + "@octokit/graphql": "^7.0.0", + "@octokit/request": "^8.0.2", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/endpoint": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", + "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", + "dev": true, + "peer": true, + "requires": { + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/graphql": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", + "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", + "dev": true, + "peer": true, + "requires": { + "@octokit/request": "^8.0.1", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/openapi-types": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", + "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", + "dev": true, + "peer": true + }, + "@octokit/plugin-paginate-rest": { + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", + "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", + "dev": true, + "peer": true, + "requires": { + "@octokit/types": "^12.4.0" + } + }, + "@octokit/plugin-retry": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", + "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", + "dev": true, + "peer": true, + "requires": { + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "bottleneck": "^2.15.3" + } + }, + "@octokit/plugin-throttling": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", + "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", + "dev": true, + "peer": true, + "requires": { + "@octokit/types": "^12.2.0", + "bottleneck": "^2.15.3" + } + }, + "@octokit/request": { + "version": "8.1.6", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", + "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", + "dev": true, + "peer": true, + "requires": { + "@octokit/endpoint": "^9.0.0", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/request-error": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", + "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", + "dev": true, + "peer": true, + "requires": { + "@octokit/types": "^12.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/types": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", + "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", + "dev": true, + "peer": true, + "requires": { + "@octokit/openapi-types": "^19.1.0" + } + }, + "@parcel/watcher": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", + "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", + "dev": true, + "requires": { + "node-addon-api": "^3.2.1", + "node-gyp-build": "^4.3.0" + } + }, + "@phenomnomnominal/tsquery": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz", + "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==", + "dev": true, + "requires": { + "esquery": "^1.4.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, + "@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "dev": true, + "peer": true + }, + "@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dev": true, + "peer": true, + "requires": { + "graceful-fs": "4.2.10" + }, + "dependencies": { + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true, + "peer": true + } + } + }, + "@pnpm/npm-conf": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", + "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==", + "dev": true, + "peer": true, + "requires": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + } + }, + "@schematics/angular": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.6.tgz", + "integrity": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==", + "dev": true, + "requires": { + "@angular-devkit/core": "16.0.6", + "@angular-devkit/schematics": "16.0.6", + "jsonc-parser": "3.2.0" + } + }, + "@semantic-release/changelog": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", + "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", + "dev": true, + "requires": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "fs-extra": "^11.0.0", + "lodash": "^4.17.4" + } + }, + "@semantic-release/commit-analyzer": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", + "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", + "dev": true, + "requires": { + "conventional-changelog-angular": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "import-from-esm": "^1.0.3", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" + } + }, + "@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "dev": true + }, + "@semantic-release/exec": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/exec/-/exec-6.0.3.tgz", + "integrity": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==", + "dev": true, + "requires": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "parse-json": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + } + } + }, + "@semantic-release/git": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", + "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", + "dev": true, + "requires": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "micromatch": "^4.0.0", + "p-reduce": "^2.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + } + } + }, + "@semantic-release/github": { + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", + "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", + "dev": true, + "peer": true, + "requires": { + "@octokit/core": "^5.0.0", + "@octokit/plugin-paginate-rest": "^9.0.0", + "@octokit/plugin-retry": "^6.0.0", + "@octokit/plugin-throttling": "^8.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^6.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^3.0.0", + "url-join": "^5.0.0" + }, + "dependencies": { + "@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "peer": true + }, + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "peer": true, + "requires": { + "debug": "^4.3.4" + } + }, + "aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "peer": true, + "requires": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + } + }, + "clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "peer": true, + "requires": { + "escape-string-regexp": "5.0.0" + } + }, + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "peer": true + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "peer": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "globby": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "dev": true, + "peer": true, + "requires": { + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + } + }, + "http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "peer": true, + "requires": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + } + }, + "https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "peer": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } + }, + "indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "peer": true + }, + "mime": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.1.tgz", + "integrity": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==", + "dev": true, + "peer": true + }, + "path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "peer": true + }, + "slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "peer": true + }, + "url-join": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", + "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", + "dev": true, + "peer": true + } + } + }, + "@semantic-release/npm": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", + "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", + "dev": true, + "peer": true, + "requires": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^8.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.0.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" + }, + "dependencies": { + "@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "peer": true + }, + "aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "peer": true, + "requires": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + } + }, + "clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "peer": true, + "requires": { + "escape-string-regexp": "5.0.0" + } + }, + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "peer": true + }, + "execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "peer": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" } }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", + "get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "peer": true + }, + "hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, + "peer": true, "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" + "lru-cache": "^10.0.1" } }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", + "human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", + "indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", + "lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", + "normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, - "optional": true + "peer": true, + "requires": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + } }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", + "normalize-url": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", + "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, - "optional": true + "peer": true, + "requires": { + "path-key": "^4.0.0" + } }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, - "optional": true + "peer": true, + "requires": { + "mimic-fn": "^4.0.0" + } }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, + "peer": true, "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" } }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "peer": true + }, + "read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, + "peer": true, "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" } }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "peer": true + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "peer": true + }, + "type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "dev": true, + "peer": true + } + } + }, + "@semantic-release/release-notes-generator": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", + "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", + "dev": true, + "requires": { + "conventional-changelog-angular": "^7.0.0", + "conventional-changelog-writer": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^1.0.3", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-pkg-up": "^11.0.0" + }, + "dependencies": { + "get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "dev": true + } + } + }, + "@sigstore/protobuf-specs": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", + "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", + "dev": true + }, + "@sigstore/tuf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", + "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", + "dev": true, + "requires": { + "@sigstore/protobuf-specs": "^0.1.0", + "tuf-js": "^1.1.7" + } + }, + "@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true + }, + "@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "dev": true, + "peer": true + }, + "@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "requires": { + "@sinonjs/commons": "^3.0.0" + } + }, + "@swc-node/core": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", + "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", + "dev": true, + "requires": {} + }, + "@swc-node/register": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", + "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", + "dev": true, + "requires": { + "@swc-node/core": "^1.8.2", + "@swc-node/sourcemap-support": "^0.1.11", + "chalk": "4", + "debug": "^4.3.3", + "pirates": "^4.0.4", + "tslib": "^2.3.1", + "typescript": "^4.5.3" + }, + "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -33109,12 +42486,6 @@ "color-convert": "^2.0.1" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -33140,126 +42511,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "magic-string": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", - "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", - "dev": true, - "requires": { - "sourcemap-codec": "^1.4.8" - } - }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -33269,654 +42520,908 @@ "has-flag": "^4.0.0" } }, - "webpack-merge": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", - "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true } } }, - "@nx/cypress": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.3.2.tgz", - "integrity": "sha512-XB4CvhTv154GHp/2+lSoCigPKZK1YoRyIZWIHJdBmpQUocLJkSqp+H8KQaU/0gH3Xbz5NxGXbQMFDWzkKxIGPg==", + "@swc-node/sourcemap-support": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", + "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", + "dev": true, + "requires": { + "source-map-support": "^0.5.21" + } + }, + "@swc/cli": { + "version": "0.1.62", + "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", + "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", + "dev": true, + "requires": { + "@mole-inc/bin-wrapper": "^8.0.1", + "commander": "^7.1.0", + "fast-glob": "^3.2.5", + "semver": "^7.3.8", + "slash": "3.0.0", + "source-map": "^0.7.3" + } + }, + "@swc/core": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", + "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", + "dev": true, + "requires": { + "@swc/core-darwin-arm64": "1.3.67", + "@swc/core-darwin-x64": "1.3.67", + "@swc/core-linux-arm-gnueabihf": "1.3.67", + "@swc/core-linux-arm64-gnu": "1.3.67", + "@swc/core-linux-arm64-musl": "1.3.67", + "@swc/core-linux-x64-gnu": "1.3.67", + "@swc/core-linux-x64-musl": "1.3.67", + "@swc/core-win32-arm64-msvc": "1.3.67", + "@swc/core-win32-ia32-msvc": "1.3.67", + "@swc/core-win32-x64-msvc": "1.3.67" + } + }, + "@swc/core-darwin-arm64": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", + "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", + "dev": true, + "optional": true + }, + "@swc/core-darwin-x64": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", + "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm-gnueabihf": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", + "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm64-gnu": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", + "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm64-musl": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", + "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", + "dev": true, + "optional": true + }, + "@swc/core-linux-x64-gnu": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", + "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", + "dev": true, + "optional": true + }, + "@swc/core-linux-x64-musl": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", + "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", + "dev": true, + "optional": true + }, + "@swc/core-win32-arm64-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", + "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", + "dev": true, + "optional": true + }, + "@swc/core-win32-ia32-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", + "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", + "dev": true, + "optional": true + }, + "@swc/core-win32-x64-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", + "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", + "dev": true, + "optional": true + }, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dev": true, + "requires": { + "tslib": "^2.4.0" + } + }, + "@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "requires": { + "defer-to-connect": "^2.0.0" + } + }, + "@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "dev": true + }, + "@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true + }, + "@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "@tufjs/canonical-json": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", + "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", + "dev": true + }, + "@tufjs/models": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", + "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", "dev": true, "requires": { - "@nrwl/cypress": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@nx/linter": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.3.4" + "@tufjs/canonical-json": "1.0.0", + "minimatch": "^9.0.0" }, "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "requires": { - "@nx/devkit": "16.3.2" - } - }, - "@nrwl/linter": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.3.2.tgz", - "integrity": "sha512-sUDQNlmRIGQnhdDmpQkJgpF9LZWKBoqXr2g9Y4yq0QlpTamxTbx8/GxMICotA52kayEx1cKbU1xvjJWPchSrlw==", - "dev": true, - "requires": { - "@nx/linter": "16.3.2" - } - }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/linter": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.3.2.tgz", - "integrity": "sha512-hVCU6ZIMd+yTMLrC3PbjaHuD3yU+sB/lABTaWuUx2klT0cqKhiTp0KnDLcFWtzQmnNtGEaUjfPKxvA92xon0CA==", - "dev": true, - "requires": { - "@nrwl/linter": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "requires": { - "yallist": "^4.0.0" + "balanced-match": "^1.0.0" } }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "brace-expansion": "^2.0.1" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "@nx/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==", + "@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "requires": { + "@babel/types": "^7.20.7" + } + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dev": true, + "requires": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "dev": true, + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/eslint": { + "version": "8.40.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", + "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "dev": true + }, + "@types/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "dev": true + }, + "@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/inquirer": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", + "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", + "requires": { + "@types/through": "*", + "rxjs": "^7.2.0" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "29.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", + "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "dev": true, + "requires": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/lodash": { + "version": "4.14.195", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", + "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", + "dev": true + }, + "@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "@types/node": { + "version": "18.7.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", + "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" + }, + "@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "@types/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", + "dev": true + }, + "@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "dev": true, + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "requires": { + "@types/express": "*" + } + }, + "@types/serve-static": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", + "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "dev": true, + "requires": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/sinonjs__fake-timers": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "dev": true + }, + "@types/sizzle": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true + }, + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/through": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", + "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", + "requires": { + "@types/node": "*" + } + }, + "@types/tough-cookie": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", + "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "dev": true + }, + "@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", "dev": true, "requires": { - "@nrwl/devkit": "16.4.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "@types/node": "*" } }, - "@nx/eslint-plugin": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-16.1.1.tgz", - "integrity": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==", + "@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dev": true, "requires": { - "@nrwl/eslint-plugin-nx": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@typescript-eslint/type-utils": "^5.58.0", - "@typescript-eslint/utils": "^5.58.0", - "chalk": "^4.1.0", - "confusing-browser-globals": "^1.0.9", - "semver": "7.3.4" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "requires": { - "@nx/js": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "@types/yargs-parser": "*" } }, - "@nx/jest": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.3.2.tgz", - "integrity": "sha512-aO8Rc+wwSXLh1jJYd2cxOT5R9BQfqjAXWZOPcvAQQonFNNfwMHrw0+YsqjWgiFtFrxzSX5RrhzVG44cOWpAdqQ==", + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", "dev": true, + "optional": true, "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" + "@types/node": "*" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", + "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/type-utils": "5.60.1", + "@typescript-eslint/utils": "5.60.1", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "requires": { - "@nx/devkit": "16.3.2" - } - }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "@typescript-eslint/type-utils": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", + "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", "dev": true, "requires": { - "yallist": "^4.0.0" + "@typescript-eslint/typescript-estree": "5.60.1", + "@typescript-eslint/utils": "5.60.1", + "debug": "^4.3.4", + "tsutils": "^3.21.0" } }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "@typescript-eslint/utils": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", + "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/typescript-estree": "5.60.1", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true } } }, - "@nx/js": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.3.2.tgz", - "integrity": "sha512-bumLGMduNm221Sh3/wkEMEkJOC1kTlqmpx6wamDSsPlAFq0ePgoaNJjoYqC9XH7n7wXtgy9bgKhHJPnek8NKow==", + "@typescript-eslint/parser": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", + "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", "dev": true, "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/workspace": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.3.4", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "requires": { - "@nx/devkit": "16.3.2" - } - }, - "@nrwl/tao": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.3.2.tgz", - "integrity": "sha512-2Kg7dtv6JcQagCZPSq+okceI81NqmXGGgbKWqS7sOfdmp1otxS9uiUFNXw+Pdtnw38mdRviMtSOXScntu4sUKg==", - "dev": true, - "requires": { - "nx": "16.3.2" - } - }, - "@nrwl/workspace": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.3.2.tgz", - "integrity": "sha512-ORVzEEJIMOFYEOtOQHLU7N4vT4mYZ/JzKiwHZrHkCaVhgkiGBLoX3tOwVZjafKaa/24cGISv0J7WRtnfRKl2cA==", - "dev": true, - "requires": { - "@nx/workspace": "16.3.2" - } - }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.3.2.tgz", - "integrity": "sha512-YfYVNfsJBzBcBnJUU4AcA6A4QMkgnVlETfp4KGL36Otq542mRY1ISGHdox63ocI5AKh5gay5AaGcR4wR9PU9Vg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.3.2.tgz", - "integrity": "sha512-bJtpozz0zSRVRrcQ76GrlT3TWEGTymLYWrVG51bH5KZ46t6/a4EQBI3uL3vubMmOZ0jR4ywybOcPBBhxmBJ68w==", - "dev": true, - "optional": true - }, - "@nx/nx-freebsd-x64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.3.2.tgz", - "integrity": "sha512-ZvufI0bWqT67nLbBo6ejrIGxypdoedRQTP/tudWbs/4isvxLe1uVku1BfKCTQUsJG367SqNOU1H5kzI/MRr3ow==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.3.2.tgz", - "integrity": "sha512-IQL4kxdiZLvifar7+SIum3glRuVsxtE0dL8RvteSDXrxDQnaTUrjILC+VGhalRmk7ngBbGKNrhWOeeL7390CzQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.3.2.tgz", - "integrity": "sha512-f6AWgPVu3mfUEoOBa0rY2/7QY0Or9eR0KtLFpcPh7RUpxPw2EXzIbjD/0RGipdpspSrgiMKbZpsUjo6mXBFsQA==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.3.2.tgz", - "integrity": "sha512-AvrWcYz7021E3b5P9/0i26p60XMZfw86Epks51L6AhlflarlOH4AcEChc7APMtb1ELAIbDWx2S6oIDRbQ7rtVA==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.3.2.tgz", - "integrity": "sha512-K2pWGAcbCNm6b7UZI9cc8z4Rb540QcuepBXD7akjPjWerzXriT6VCn4i9mVKsCg2mwSfknTJJVJ1PZwJSmTl/Q==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.3.2.tgz", - "integrity": "sha512-sY1QDuQlqyYiRPJZanrtV07tU0DOXiCrWb0pDsGiO0qHuUSmW5Vw17GWEY4z3rt0/5U8fJ+/9WQrneviOmsOKg==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.3.2.tgz", - "integrity": "sha512-wBfohT2hjrLKn9WFHvG0MFVk7uYhgYNiptnTLdTouziHgFyZ08vyl7XYBq55BwHPMQ5iswVoEfjn/5ZBfCPscg==", - "dev": true, - "optional": true + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/typescript-estree": "5.60.1", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", + "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/visitor-keys": "5.60.1" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", + "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "dependencies": { + "@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "dev": true }, - "@nx/nx-win32-x64-msvc": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.3.2.tgz", - "integrity": "sha512-QC0sWrfQm0/WdvvM//7UAgm+otbak6bznZ0zawTeqmLBh1hLjNeweyzSVKQEtZtlzDMKpzCVuuwkJq+VKBLvmw==", + "@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", "dev": true, - "optional": true + "requires": { + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } }, - "@nx/workspace": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.3.2.tgz", - "integrity": "sha512-gFrJEv3+Jn2leu3RKFTakPHY8okI8hjOg8RO4OWA2ZemFXRyh9oIm/xsCsOyqYlGt06eqV2mD3GUun/05z1nhg==", + "@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", "dev": true, "requires": { - "@nrwl/workspace": "16.3.2", - "@nx/devkit": "16.3.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.3.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + } + } + }, + "@typescript-eslint/types": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", + "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", + "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/visitor-keys": "5.60.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", + "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.7", + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/typescript-estree": "5.59.7", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "dependencies": { + "@typescript-eslint/scope-manager": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", + "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", "dev": true, "requires": { - "color-name": "~1.1.4" + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" } }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", + "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.60.1", + "eslint-visitor-keys": "^3.3.0" + } + }, + "@verdaccio/commons-api": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", + "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", + "dev": true, + "requires": { + "http-errors": "2.0.0", + "http-status-codes": "2.2.0" + } + }, + "@verdaccio/config": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", + "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", + "dev": true, + "requires": { + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "js-yaml": "4.1.0", + "lodash": "4.17.21", + "minimatch": "3.1.2", + "yup": "0.32.11" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, "js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", @@ -33926,6 +43431,31 @@ "argparse": "^2.0.1" } }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "@verdaccio/core": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", + "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", + "dev": true, + "requires": { + "ajv": "8.12.0", + "core-js": "3.30.2", + "http-errors": "2.0.0", + "http-status-codes": "2.2.0", + "process-warning": "1.0.0", + "semver": "7.5.0" + }, + "dependencies": { "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -33935,92 +43465,15 @@ "yallist": "^4.0.0" } }, - "nx": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.3.2.tgz", - "integrity": "sha512-fOzCVL7qoCJAcYTJwvJ9j+PSaL791ro4AICWuLxaphZsp2jcLoav4Ev7ONPks2Wlkt8FS9bee3nqQ3w1ya36Og==", - "dev": true, - "requires": { - "@nrwl/tao": "16.3.2", - "@nx/nx-darwin-arm64": "16.3.2", - "@nx/nx-darwin-x64": "16.3.2", - "@nx/nx-freebsd-x64": "16.3.2", - "@nx/nx-linux-arm-gnueabihf": "16.3.2", - "@nx/nx-linux-arm64-gnu": "16.3.2", - "@nx/nx-linux-arm64-musl": "16.3.2", - "@nx/nx-linux-x64-gnu": "16.3.2", - "@nx/nx-linux-x64-musl": "16.3.2", - "@nx/nx-win32-arm64-msvc": "16.3.2", - "@nx/nx-win32-x64-msvc": "16.3.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, "requires": { "lru-cache": "^6.0.0" } }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -34029,117 +43482,180 @@ } } }, - "@nx/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==", + "@verdaccio/file-locking": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", + "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", "dev": true, "requires": { - "@nrwl/linter": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" + "lockfile": "1.0.4" + } + }, + "@verdaccio/local-storage": { + "version": "10.3.3", + "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", + "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", + "dev": true, + "requires": { + "@verdaccio/commons-api": "10.2.0", + "@verdaccio/file-locking": "10.3.1", + "@verdaccio/streams": "10.2.1", + "async": "3.2.4", + "debug": "4.3.4", + "lodash": "4.17.21", + "lowdb": "1.0.0", + "mkdirp": "1.0.4" }, "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "requires": { - "@nx/js": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + } + } + }, + "@verdaccio/logger-7": { + "version": "6.0.0-6-next.16", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", + "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", + "dev": true, + "requires": { + "@verdaccio/logger-commons": "6.0.0-6-next.39", + "pino": "7.11.0" + } + }, + "@verdaccio/logger-commons": { + "version": "6.0.0-6-next.39", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", + "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", + "dev": true, + "requires": { + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/logger-prettify": "6.0.0-6-next.10", + "colorette": "2.0.20", + "debug": "4.3.4" + } + }, + "@verdaccio/logger-prettify": { + "version": "6.0.0-6-next.10", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", + "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", + "dev": true, + "requires": { + "colorette": "2.0.20", + "dayjs": "1.11.7", + "lodash": "4.17.21", + "pino-abstract-transport": "1.0.0", + "sonic-boom": "3.3.0" + }, + "dependencies": { + "dayjs": { + "version": "1.11.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", + "dev": true + } + } + }, + "@verdaccio/middleware": { + "version": "6.0.0-6-next.50", + "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", + "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", + "dev": true, + "requires": { + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "express": "4.18.2", + "express-rate-limit": "5.5.1", + "lodash": "4.17.21", + "lru-cache": "7.18.3", + "mime": "2.6.0" + }, + "dependencies": { + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true }, + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true + } + } + }, + "@verdaccio/search": { + "version": "6.0.0-6-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", + "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", + "dev": true + }, + "@verdaccio/signature": { + "version": "6.0.0-6-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", + "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", + "dev": true, + "requires": { + "debug": "4.3.4", + "jsonwebtoken": "9.0.0", + "lodash": "4.17.21" + } + }, + "@verdaccio/streams": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", + "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", + "dev": true + }, + "@verdaccio/tarball": { + "version": "11.0.0-6-next.40", + "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", + "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", + "dev": true, + "requires": { + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "lodash": "4.17.21" + } + }, + "@verdaccio/ui-theme": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", + "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", + "dev": true + }, + "@verdaccio/url": { + "version": "11.0.0-6-next.37", + "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", + "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", + "dev": true, + "requires": { + "@verdaccio/core": "6.0.0-6-next.71", + "debug": "4.3.4", + "lodash": "4.17.21", + "validator": "13.9.0" + } + }, + "@verdaccio/utils": { + "version": "6.0.0-6-next.39", + "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", + "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", + "dev": true, + "requires": { + "@verdaccio/core": "6.0.0-6-next.71", + "lodash": "4.17.21", + "minimatch": "3.1.2", + "semver": "7.5.0" + }, + "dependencies": { "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -34149,38 +43665,22 @@ "yallist": "^4.0.0" } }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "brace-expansion": "^1.1.7" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "lru-cache": "^6.0.0" } }, "yallist": { @@ -34191,793 +43691,718 @@ } } }, - "@nx/nx-darwin-arm64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.1.1.tgz", - "integrity": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==", + "@vitejs/plugin-basic-ssl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", + "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", "dev": true, - "optional": true + "requires": {} + }, + "@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "@yarnpkg/parsers": { + "version": "3.0.0-rc.48", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", + "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", + "dev": true, + "requires": { + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" + } + }, + "@zkochan/js-yaml": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", + "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + } + } + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true + }, + "acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "requires": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true + }, + "address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "dev": true + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, + "agentkeepalive": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", + "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "depd": "^2.0.0", + "humanize-ms": "^1.2.1" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true }, - "@nx/nx-darwin-x64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.1.1.tgz", - "integrity": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==", + "ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", "dev": true, - "optional": true + "requires": { + "ansi-wrap": "0.1.0" + } }, - "@nx/nx-freebsd-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.4.2.tgz", - "integrity": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==", - "dev": true, - "optional": true + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.1.1.tgz", - "integrity": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==", + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "optional": true + "requires": { + "color-convert": "^1.9.0" + } }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.1.1.tgz", - "integrity": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==", - "dev": true, - "optional": true + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true }, - "@nx/nx-linux-arm64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.1.1.tgz", - "integrity": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==", + "ansicolors": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", + "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", "dev": true, - "optional": true + "peer": true }, - "@nx/nx-linux-x64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.1.1.tgz", - "integrity": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==", + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, - "optional": true + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } }, - "@nx/nx-linux-x64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.1.1.tgz", - "integrity": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==", - "dev": true, - "optional": true + "apache-md5": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", + "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", + "dev": true }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.1.1.tgz", - "integrity": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==", - "dev": true, - "optional": true + "aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true }, - "@nx/nx-win32-x64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.1.1.tgz", - "integrity": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==", - "dev": true, - "optional": true + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true }, - "@nx/plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-16.4.2.tgz", - "integrity": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==", + "are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", "dev": true, "requires": { - "@nrwl/nx-plugin": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "dotenv": "~10.0.0", - "fs-extra": "^11.1.0", - "tslib": "^2.3.0" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "dependencies": { - "@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "requires": { - "@nx/jest": "16.4.2" - } - }, - "@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "requires": { - "@nx/js": "16.4.2" - } - }, - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "requires": { - "@nx/linter": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "requires": { - "nx": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "requires": { - "@nx/workspace": "16.4.2" - } - }, - "@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", - "dev": true, - "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - } - }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "dev": true, - "optional": true - }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "@nx/web": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.3.2.tgz", - "integrity": "sha512-PzTkawQ+OgjX0mR5KwMGcdveoMNLKo/jYaW3UrPMIVUy0NpalW0ULJnDOUt+NRlrp7jOsUP7hUYZkYPNDI3Ivg==", + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "argv-formatter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", + "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", + "dev": true, + "peer": true + }, + "aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dev": true, "requires": { - "@nrwl/web": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "detect-port": "^1.5.1", - "http-server": "^14.1.0", - "ignore": "^5.0.4", - "tslib": "^2.3.0" + "deep-equal": "^2.0.5" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atomic-sleep": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", + "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "dev": true + }, + "autolinker": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", + "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", + "dev": true, + "requires": { + "gulp-header": "^1.7.1" + } + }, + "autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "dev": true, + "requires": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true + }, + "aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "dev": true + }, + "axios": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", + "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", + "dev": true, + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" }, "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "requires": { - "@nx/devkit": "16.3.2" - } - }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "dev": true } } }, - "@nx/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==", + "axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", "dev": true, "requires": { - "@babel/core": "^7.15.0", - "@nrwl/webpack": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "autoprefixer": "^10.4.9", - "babel-loader": "^9.1.2", - "browserslist": "^4.21.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "copy-webpack-plugin": "^10.2.4", - "css-loader": "^6.4.0", - "css-minimizer-webpack-plugin": "^5.0.0", - "dotenv": "~10.0.0", - "fork-ts-checker-webpack-plugin": "7.2.13", - "ignore": "^5.0.4", - "less": "4.1.3", - "less-loader": "11.1.0", - "license-webpack-plugin": "^4.0.2", - "loader-utils": "^2.0.3", - "mini-css-extract-plugin": "~2.4.7", - "parse5": "4.0.0", - "postcss": "^8.4.14", - "postcss-import": "~14.1.0", - "postcss-loader": "^6.1.1", - "rxjs": "^7.8.0", - "sass": "^1.42.1", - "sass-loader": "^12.2.0", - "source-map-loader": "^3.0.0", - "style-loader": "^3.3.0", - "stylus": "^0.59.0", - "stylus-loader": "^7.1.0", - "terser-webpack-plugin": "^5.3.3", - "ts-loader": "^9.3.1", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", - "tsconfig-paths-webpack-plugin": "4.0.0", - "tslib": "^2.3.0", - "webpack": "^5.80.0", - "webpack-dev-server": "^4.9.3", - "webpack-node-externals": "^3.0.0", - "webpack-subresource-integrity": "^5.1.0" - }, - "dependencies": { - "@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "requires": { - "@nx/js": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "requires": { - "nx": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "requires": { - "@nx/workspace": "16.4.2" - } - }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "dev": true, - "optional": true - }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, + "deep-equal": "^2.0.5" + } + }, + "babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "requires": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -34987,18 +44412,6 @@ "color-convert": "^2.0.1" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "array-union": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", - "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", - "dev": true - }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -35024,240 +44437,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "copy-webpack-plugin": { - "version": "10.2.4", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", - "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", - "dev": true, - "requires": { - "fast-glob": "^3.2.7", - "glob-parent": "^6.0.1", - "globby": "^12.0.2", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - } - }, - "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globby": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", - "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", - "dev": true, - "requires": { - "array-union": "^3.0.1", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.7", - "ignore": "^5.1.9", - "merge2": "^1.4.1", - "slash": "^4.0.0" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "mini-css-extract-plugin": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", - "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", - "dev": true, - "requires": { - "schema-utils": "^4.0.0" - } - }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", - "dev": true - }, - "postcss-loader": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", - "dev": true, - "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.5" - } - }, - "sass-loader": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", - "dev": true, - "requires": { - "klona": "^2.0.4", - "neo-async": "^2.6.2" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", - "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", - "dev": true, - "requires": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" - } - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -35266,100 +44445,268 @@ "requires": { "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + } + } + }, + "babel-loader": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", + "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.2", + "schema-utils": "^4.0.0" + } + }, + "babel-plugin-const-enum": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", + "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-typescript": "^7.3.3", + "@babel/traverse": "^7.16.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, - "@nx/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==", + "babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", "dev": true, "requires": { - "@nrwl/workspace": "16.1.1", - "@nx/devkit": "16.1.1", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.1.1", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "babel-plugin-transform-typescript-metadata": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", + "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" }, "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bcryptjs": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", + "dev": true + }, + "before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true, + "peer": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + } + }, + "bin-version": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", + "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", + "dev": true, + "requires": { + "execa": "^5.0.0", + "find-versions": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true }, - "color-convert": { + "is-stream": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true - }, + } + } + }, + "bin-version-check": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", + "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", + "dev": true, + "requires": { + "bin-version": "^6.0.0", + "semver": "^7.5.3", + "semver-truncate": "^3.0.0" + }, + "dependencies": { "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -35370,23 +44717,14 @@ } }, "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "requires": { "lru-cache": "^6.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -35395,347 +44733,244 @@ } } }, - "@parcel/watcher": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", - "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", - "dev": true, - "requires": { - "node-addon-api": "^3.2.1", - "node-gyp-build": "^4.3.0" - } - }, - "@phenomnomnominal/tsquery": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz", - "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==", - "dev": true, - "requires": { - "esquery": "^1.4.0" - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true - }, - "@schematics/angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.6.tgz", - "integrity": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==", - "dev": true, - "requires": { - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "jsonc-parser": "3.2.0" - } - }, - "@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true }, - "@sigstore/tuf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", - "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "requires": { - "@sigstore/protobuf-specs": "^0.1.0", - "tuf-js": "^1.1.7" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } } }, - "@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "blob-util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", + "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", "dev": true }, - "@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "dev": true }, - "@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", - "dev": true, - "requires": { - "@sinonjs/commons": "^3.0.0" - } - }, - "@swc-node/core": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", - "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", - "dev": true, - "requires": {} - }, - "@swc-node/register": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", - "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", + "body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dev": true, "requires": { - "@swc-node/core": "^1.8.2", - "@swc-node/sourcemap-support": "^0.1.11", - "chalk": "4", - "debug": "^4.3.3", - "pirates": "^4.0.4", - "tslib": "^2.3.1", - "typescript": "^4.5.3" + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "color-name": "~1.1.4" + "ms": "2.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "side-channel": "^1.0.4" } - }, - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true } } }, - "@swc-node/sourcemap-support": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", - "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", + "bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", "dev": true, "requires": { - "source-map-support": "^0.5.21" + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + } } }, - "@swc/cli": { - "version": "0.1.62", - "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", - "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "bottleneck": { + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", "dev": true, - "requires": { - "@mole-inc/bin-wrapper": "^8.0.1", - "commander": "^7.1.0", - "fast-glob": "^3.2.5", - "semver": "^7.3.8", - "slash": "3.0.0", - "source-map": "^0.7.3" - } + "peer": true }, - "@swc/core": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", - "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { - "@swc/core-darwin-arm64": "1.3.67", - "@swc/core-darwin-x64": "1.3.67", - "@swc/core-linux-arm-gnueabihf": "1.3.67", - "@swc/core-linux-arm64-gnu": "1.3.67", - "@swc/core-linux-arm64-musl": "1.3.67", - "@swc/core-linux-x64-gnu": "1.3.67", - "@swc/core-linux-x64-musl": "1.3.67", - "@swc/core-win32-arm64-msvc": "1.3.67", - "@swc/core-win32-ia32-msvc": "1.3.67", - "@swc/core-win32-x64-msvc": "1.3.67" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "@swc/core-darwin-arm64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", - "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", - "dev": true, - "optional": true - }, - "@swc/core-darwin-x64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", - "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm-gnueabihf": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", - "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", - "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", - "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", - "dev": true, - "optional": true - }, - "@swc/core-linux-x64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", - "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", - "dev": true, - "optional": true - }, - "@swc/core-linux-x64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", - "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", - "dev": true, - "optional": true - }, - "@swc/core-win32-arm64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", - "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", - "dev": true, - "optional": true - }, - "@swc/core-win32-ia32-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", - "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "optional": true + "requires": { + "fill-range": "^7.0.1" + } }, - "@swc/core-win32-x64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", - "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", + "browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "dev": true, - "optional": true + "requires": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + } }, - "@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "requires": { - "tslib": "^2.4.0" + "fast-json-stable-stringify": "2.x" } }, - "@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "requires": { - "defer-to-connect": "^2.0.0" + "node-int64": "^0.4.0" } }, - "@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", - "dev": true - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "btoa": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", "dev": true }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", "dev": true }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true + "builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, + "requires": { + "semver": "^7.0.0" + } }, - "@tufjs/canonical-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", - "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true }, - "@tufjs/models": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", - "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", + "cacache": { + "version": "17.0.6", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", + "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", "dev": true, "requires": { - "@tufjs/canonical-json": "1.0.0", - "minimatch": "^9.0.0" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, "dependencies": { "brace-expansion": { @@ -35747,6 +44982,25 @@ "balanced-match": "^1.0.0" } }, + "glob": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2", + "path-scurry": "^1.10.0" + } + }, + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true + }, "minimatch": { "version": "9.0.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", @@ -35758,2033 +45012,2814 @@ } } }, - "@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } + "cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", "dev": true, "requires": { - "@babel/types": "^7.0.0" + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } } }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "cachedir": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", + "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "dev": true + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" } }, - "@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "requires": { - "@babel/types": "^7.20.7" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "caniuse-lite": { + "version": "1.0.30001511", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", + "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", + "dev": true + }, + "cardinal": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", + "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", "dev": true, + "peer": true, "requires": { - "@types/connect": "*", - "@types/node": "*" + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" } }, - "@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, "requires": { - "@types/node": "*" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" } }, - "@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true + }, + "cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "requires": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" + "restore-cursor": "^3.1.0" } }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "dev": true + }, + "cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", "dev": true, "requires": { - "@types/node": "*" + "@colors/colors": "1.5.0", + "string-width": "^4.2.0" } }, - "@types/connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, "requires": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } } }, - "@types/eslint": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", - "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "clipanion": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", + "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", "dev": true, "requires": { - "@types/estree": "*", - "@types/json-schema": "*" + "typanion": "^3.8.0" } }, - "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { - "@types/eslint": "*", - "@types/estree": "*" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true }, - "@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } } }, - "@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", "dev": true, "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "mimic-response": "^1.0.0" } }, - "@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true + }, + "coffee-script": { + "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { - "@types/node": "*" + "color-name": "1.1.3" } }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "@types/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true }, - "@types/http-proxy": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", - "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "requires": { - "@types/node": "*" + "delayed-stream": "~1.0.0" } }, - "@types/inquirer": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", - "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, "requires": { - "@types/through": "*", - "rxjs": "^7.2.0" + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" } }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, "requires": { - "@types/istanbul-lib-coverage": "*" + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } } }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true }, - "@types/jest": { - "version": "29.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", - "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, "requires": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, - "@types/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", "dev": true, "requires": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } } }, - "@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, + "peer": true, "requires": { - "@types/node": "*" + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "peer": true + } } }, - "@types/lodash": { - "version": "4.14.195", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", - "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", - "dev": true - }, - "@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "dev": true - }, - "@types/node": { - "version": "18.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", - "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true }, - "@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", "dev": true }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "requires": { - "@types/node": "*" + "safe-buffer": "5.2.1" } }, - "@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true }, - "@types/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", - "dev": true + "conventional-changelog-angular": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", + "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", + "dev": true, + "requires": { + "compare-func": "^2.0.0" + } }, - "@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "conventional-changelog-conventionalcommits": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", + "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", "dev": true, "requires": { - "@types/mime": "^1", - "@types/node": "*" + "compare-func": "^2.0.0" } }, - "@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "conventional-changelog-writer": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz", + "integrity": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==", "dev": true, "requires": { - "@types/express": "*" + "conventional-commits-filter": "^4.0.0", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "meow": "^12.0.1", + "semver": "^7.5.2", + "split2": "^4.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, - "@types/serve-static": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", - "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "conventional-commits-filter": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", + "integrity": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==", + "dev": true + }, + "conventional-commits-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", + "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", "dev": true, "requires": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "is-text-path": "^2.0.0", + "JSONStream": "^1.3.5", + "meow": "^12.0.1", + "split2": "^4.0.0" } }, - "@types/sinonjs__fake-timers": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", - "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, - "@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true }, - "@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", "dev": true, "requires": { - "@types/node": "*" + "depd": "~2.0.0", + "keygrip": "~1.1.0" } }, - "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true + "copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, + "requires": { + "is-what": "^3.14.1" + } }, - "@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", + "copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "dev": true, "requires": { - "@types/node": "*" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + }, + "dependencies": { + "fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globby": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", + "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", + "dev": true, + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true + } } }, - "@types/tough-cookie": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", - "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "core-js": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "dev": true }, - "@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", "dev": true, "requires": { - "@types/node": "*" + "browserslist": "^4.21.5" } }, - "@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, "requires": { - "@types/yargs-parser": "*" + "object-assign": "^4", + "vary": "^1" } }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "corser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", + "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", "dev": true }, - "@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "dev": true, - "optional": true, "requires": { - "@types/node": "*" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" } }, - "@typescript-eslint/eslint-plugin": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", - "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "critters": { + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", "dev": true, "requires": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/type-utils": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "chalk": "^4.1.0", + "css-select": "^4.2.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "postcss": "^8.3.7", + "pretty-bytes": "^5.3.0" }, "dependencies": { - "@typescript-eslint/type-utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", - "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "@typescript-eslint/typescript-estree": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "color-convert": "^2.0.1" } }, - "@typescript-eslint/utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", - "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dev": true, + "peer": true, + "requires": { + "type-fest": "^1.0.1" + }, + "dependencies": { + "type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "peer": true + } + } + }, + "css-declaration-sorter": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", + "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", + "dev": true, + "requires": {} + }, + "css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + } + }, + "css-minimizer-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" + }, + "dependencies": { + "postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", "dev": true, "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true } } }, - "@typescript-eslint/parser": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", - "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "debug": "^4.3.4" + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" } }, - "@typescript-eslint/scope-manager": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", - "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", + "css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, "requires": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" } }, - "@typescript-eslint/type-utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", - "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cssnano": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", + "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", "dev": true, "requires": { - "@typescript-eslint/typescript-estree": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "cssnano-preset-default": "^6.0.1", + "lilconfig": "^2.1.0" + } + }, + "cssnano-preset-default": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", + "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", + "dev": true, + "requires": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^4.0.0", + "postcss-calc": "^9.0.0", + "postcss-colormin": "^6.0.0", + "postcss-convert-values": "^6.0.0", + "postcss-discard-comments": "^6.0.0", + "postcss-discard-duplicates": "^6.0.0", + "postcss-discard-empty": "^6.0.0", + "postcss-discard-overridden": "^6.0.0", + "postcss-merge-longhand": "^6.0.0", + "postcss-merge-rules": "^6.0.1", + "postcss-minify-font-values": "^6.0.0", + "postcss-minify-gradients": "^6.0.0", + "postcss-minify-params": "^6.0.0", + "postcss-minify-selectors": "^6.0.0", + "postcss-normalize-charset": "^6.0.0", + "postcss-normalize-display-values": "^6.0.0", + "postcss-normalize-positions": "^6.0.0", + "postcss-normalize-repeat-style": "^6.0.0", + "postcss-normalize-string": "^6.0.0", + "postcss-normalize-timing-functions": "^6.0.0", + "postcss-normalize-unicode": "^6.0.0", + "postcss-normalize-url": "^6.0.0", + "postcss-normalize-whitespace": "^6.0.0", + "postcss-ordered-values": "^6.0.0", + "postcss-reduce-initial": "^6.0.0", + "postcss-reduce-transforms": "^6.0.0", + "postcss-svgo": "^6.0.0", + "postcss-unique-selectors": "^6.0.0" + } + }, + "cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "dev": true, + "requires": {} + }, + "csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, + "requires": { + "css-tree": "~2.2.0" }, "dependencies": { - "@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "requires": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" } }, - "@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" - } + "mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true } } }, - "@typescript-eslint/types": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", - "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", + "cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", "dev": true }, - "@typescript-eslint/typescript-estree": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", - "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "requires": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } } }, - "@typescript-eslint/utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", - "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", + "cypress": { + "version": "12.16.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", + "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", "dev": true, "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.7", - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/typescript-estree": "5.59.7", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "@cypress/request": "^2.88.10", + "@cypress/xvfb": "^1.2.4", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "8.1.1", + "@types/sizzle": "^2.3.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", + "bluebird": "^3.7.2", + "buffer": "^5.6.0", + "cachedir": "^2.3.0", + "chalk": "^4.1.0", + "check-more-types": "^2.24.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", + "common-tags": "^1.8.0", + "dayjs": "^1.10.4", + "debug": "^4.3.4", + "enquirer": "^2.3.6", + "eventemitter2": "6.4.7", + "execa": "4.1.0", + "executable": "^4.1.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", + "getos": "^3.2.1", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", + "lazy-ass": "^1.6.0", + "listr2": "^3.8.3", + "lodash": "^4.17.21", + "log-symbols": "^4.0.0", + "minimist": "^1.2.8", + "ospath": "^1.2.2", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", + "request-progress": "^3.0.0", + "semver": "^7.3.2", + "supports-color": "^8.1.1", + "tmp": "~0.2.1", + "untildify": "^4.0.0", + "yauzl": "^2.10.0" }, "dependencies": { - "@typescript-eslint/scope-manager": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", - "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7" - } - }, - "@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "@types/node": { + "version": "14.18.53", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", + "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", "dev": true }, - "@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "color-convert": "^2.0.1" } }, - "@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "color-name": "~1.1.4" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true - } - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", - "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.60.1", - "eslint-visitor-keys": "^3.3.0" - } - }, - "@verdaccio/commons-api": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", - "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", - "dev": true, - "requires": { - "http-errors": "2.0.0", - "http-status-codes": "2.2.0" - } - }, - "@verdaccio/config": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", - "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "js-yaml": "4.1.0", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "yup": "0.32.11" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + }, + "commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", "dev": true }, - "js-yaml": { + "execa": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, "requires": { - "argparse": "^2.0.1" + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" } }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "@verdaccio/core": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", - "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", - "dev": true, - "requires": { - "ajv": "8.12.0", - "core-js": "3.30.2", - "http-errors": "2.0.0", - "http-status-codes": "2.2.0", - "process-warning": "1.0.0", - "semver": "7.5.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "requires": { - "yallist": "^4.0.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "pump": "^3.0.0" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true - } - } - }, - "@verdaccio/file-locking": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", - "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", - "dev": true, - "requires": { - "lockfile": "1.0.4" - } - }, - "@verdaccio/local-storage": { - "version": "10.3.3", - "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", - "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", - "dev": true, - "requires": { - "@verdaccio/commons-api": "10.2.0", - "@verdaccio/file-locking": "10.3.1", - "@verdaccio/streams": "10.2.1", - "async": "3.2.4", - "debug": "4.3.4", - "lodash": "4.17.21", - "lowdb": "1.0.0", - "mkdirp": "1.0.4" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true } } }, - "@verdaccio/logger-7": { - "version": "6.0.0-6-next.16", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", - "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, "requires": { - "@verdaccio/logger-commons": "6.0.0-6-next.39", - "pino": "7.11.0" + "assert-plus": "^1.0.0" } }, - "@verdaccio/logger-commons": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", - "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", + "data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", "dev": true, "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/logger-prettify": "6.0.0-6-next.10", - "colorette": "2.0.20", - "debug": "4.3.4" + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" } }, - "@verdaccio/logger-prettify": { - "version": "6.0.0-6-next.10", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", - "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", + "dayjs": { + "version": "1.11.9", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", + "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "colorette": "2.0.20", - "dayjs": "1.11.7", - "lodash": "4.17.21", - "pino-abstract-transport": "1.0.0", - "sonic-boom": "3.3.0" - }, - "dependencies": { - "dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", - "dev": true - } + "ms": "2.1.2" } }, - "@verdaccio/middleware": { - "version": "6.0.0-6-next.50", - "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", - "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", + "decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, "requires": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "2.6.0" + "mimic-response": "^3.1.0" }, "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "dev": true } } }, - "@verdaccio/search": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", - "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, - "@verdaccio/signature": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", - "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", + "deep-equal": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", "dev": true, "requires": { - "debug": "4.3.4", - "jsonwebtoken": "9.0.0", - "lodash": "4.17.21" + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" } }, - "@verdaccio/streams": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", - "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", - "dev": true - }, - "@verdaccio/tarball": { - "version": "11.0.0-6-next.40", - "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", - "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "lodash": "4.17.21" - } + "peer": true }, - "@verdaccio/ui-theme": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", - "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "@verdaccio/url": { - "version": "11.0.0-6-next.37", - "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", - "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "debug": "4.3.4", - "lodash": "4.17.21", - "validator": "13.9.0" - } + "deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true }, - "@verdaccio/utils": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", - "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "semver": "7.5.0" + "execa": "^5.0.0" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { - "brace-expansion": "^1.1.7" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" } }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true } } }, - "@vitejs/plugin-basic-ssl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", - "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, - "requires": {} + "requires": { + "clone": "^1.0.2" + } }, - "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dev": true, "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" } }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true, + "peer": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "detect-port": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", "dev": true, "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" + "address": "^1.0.1", + "debug": "4" } }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "diacritics-map": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", + "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", "dev": true }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "path-type": "^4.0.0" } }, - "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", "dev": true, "requires": { - "@xtuc/ieee754": "^1.2.0" + "@leichtgewicht/ip-codec": "^2.0.1" } }, - "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": { - "@xtuc/long": "4.2.2" + "esutils": "^2.0.2" } }, - "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" } }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "webidl-conversions": "^7.0.0" } }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "domelementtype": "^2.2.0" } }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" } }, - "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" + "is-obj": "^2.0.0" } }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "dev": true }, - "@yarnpkg/lockfile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", - "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.48", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", - "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", "dev": true, + "peer": true, "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" + "readable-stream": "^2.0.2" } }, - "@zkochan/js-yaml": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", - "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", + "duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", "dev": true, "requires": { - "argparse": "^2.0.1" + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" }, "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - } - } - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "requires": { - "event-target-shim": "^5.0.0" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dev": true, "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "safe-buffer": "^5.0.1" } }, - "acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "dev": true, "requires": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" + "jake": "^10.8.5" } }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "dev": true, - "requires": {} + "electron-to-chromium": { + "version": "1.4.447", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", + "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", + "dev": true }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", "dev": true, - "requires": {} + "peer": true }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true }, - "address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true }, - "adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "dev": true, + "optional": true, "requires": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" + "iconv-lite": "^0.6.2" }, "dependencies": { - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "safer-buffer": ">= 2.1.2 < 3.0.0" } } } }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { - "debug": "4" + "once": "^1.4.0" } }, - "agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dev": true, "requires": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" } }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "ansi-colors": "^4.1.1" } }, - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "env-ci": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", + "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", "dev": true, + "peer": true, "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "execa": "^8.0.0", + "java-properties": "^1.0.2" + }, + "dependencies": { + "execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "peer": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + } + }, + "get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "peer": true + }, + "human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "peer": true + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "peer": true + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "peer": true + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "peer": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "peer": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "peer": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "peer": true + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "peer": true + } } }, - "ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true + }, + "err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, + "optional": true, "requires": { - "ajv": "^8.0.0" + "prr": "~1.0.1" } }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { - "fast-deep-equal": "^3.1.3" + "is-arrayish": "^0.2.1" } }, - "ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", "dev": true, "requires": { - "type-fest": "^0.21.3" + "accepts": "~1.3.7", + "escape-html": "~1.0.3" } }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true + "es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + } }, - "ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, "requires": { - "ansi-wrap": "0.1.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" } }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", "dev": true }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", "dev": true, "requires": { - "color-convert": "^1.9.0" + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" } }, - "ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "dev": true + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "requires": { + "has": "^1.0.3" + } }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" } }, - "apache-md5": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", - "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", + "esbuild": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", + "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.17.18", + "@esbuild/android-arm64": "0.17.18", + "@esbuild/android-x64": "0.17.18", + "@esbuild/darwin-arm64": "0.17.18", + "@esbuild/darwin-x64": "0.17.18", + "@esbuild/freebsd-arm64": "0.17.18", + "@esbuild/freebsd-x64": "0.17.18", + "@esbuild/linux-arm": "0.17.18", + "@esbuild/linux-arm64": "0.17.18", + "@esbuild/linux-ia32": "0.17.18", + "@esbuild/linux-loong64": "0.17.18", + "@esbuild/linux-mips64el": "0.17.18", + "@esbuild/linux-ppc64": "0.17.18", + "@esbuild/linux-riscv64": "0.17.18", + "@esbuild/linux-s390x": "0.17.18", + "@esbuild/linux-x64": "0.17.18", + "@esbuild/netbsd-x64": "0.17.18", + "@esbuild/openbsd-x64": "0.17.18", + "@esbuild/sunos-x64": "0.17.18", + "@esbuild/win32-arm64": "0.17.18", + "@esbuild/win32-ia32": "0.17.18", + "@esbuild/win32-x64": "0.17.18" + } + }, + "esbuild-wasm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", + "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", "dev": true }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, - "arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } + }, + "eslint": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", + "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "dev": true, + "requires": { + "@eslint/eslintrc": "^1.2.3", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.2", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" }, "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true } } }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "eslint-config-prettier": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", + "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true + "requires": {} }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "eslint-config-standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", + "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } + "requires": {} }, - "array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "eslint-config-standard-jsx": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", + "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } + "requires": {} }, - "array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dev": true, "requires": { - "safer-buffer": "~2.1.0" + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", - "dev": true - }, - "autolinker": { - "version": "0.28.1", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", - "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", + "eslint-plugin-cypress": { + "version": "2.13.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", + "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", "dev": true, "requires": { - "gulp-header": "^1.7.1" + "globals": "^11.12.0" } }, - "autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", "dev": true, "requires": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + }, + "dependencies": { + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } } }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true - }, - "aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true - }, - "axios": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", - "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", + "eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", "dev": true, "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "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-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "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.1" }, "dependencies": { - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "ms": "^2.1.1" } }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true + }, + "tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } } } }, - "axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "eslint-plugin-n": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", + "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", "dev": true, "requires": { - "deep-equal": "^2.0.5" + "builtins": "^5.0.1", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.11.0", + "minimatch": "^3.1.2", + "resolve": "^1.22.1", + "semver": "^7.3.8" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, - "babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", "dev": true, - "requires": { - "@jest/transform": "^29.5.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" + "requires": {} + }, + "eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dev": true, + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "esutils": "^2.0.2" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "brace-expansion": "^1.1.7" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", "dev": true, "requires": { - "color-name": "~1.1.4" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, - "babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.2", - "schema-utils": "^4.0.0" - } - }, - "babel-plugin-const-enum": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", - "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-typescript": "^7.3.3", - "@babel/traverse": "^7.16.0" - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" } }, - "babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "eslint-visitor-keys": "^2.0.0" }, "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true } } }, - "babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - } + "eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "dev": true }, - "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "espree": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", + "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" } }, - "babel-plugin-transform-typescript-metadata": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", - "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "estraverse": "^5.1.0" } }, - "babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { - "babel-plugin-jest-hoist": "^29.5.0", - "babel-preset-current-node-syntax": "^1.0.0" + "estraverse": "^5.2.0" } }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dev": true, - "requires": { - "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } + "eventemitter-asyncresource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", + "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", + "dev": true }, - "bcryptjs": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", + "eventemitter2": { + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", "dev": true }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, - "bin-check": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", - "dev": true, - "requires": { - "execa": "^0.7.0", - "executable": "^4.1.0" - } + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true }, - "bin-version": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", - "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", "dev": true, "requires": { - "execa": "^5.0.0", - "find-versions": "^5.0.0" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" }, "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } }, - "is-stream": { + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true - } - } - }, - "bin-version-check": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", - "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", - "dev": true, - "requires": { - "bin-version": "^6.0.0", - "semver": "^7.5.3", - "semver-truncate": "^3.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "requires": { - "yallist": "^4.0.0" + "shebang-regex": "^1.0.0" } }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "isexe": "^2.0.0" } }, "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true } } }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "requires": { + "pify": "^2.2.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", "dev": true, "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "fill-range": "^2.1.0" }, "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "dev": true, "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "requires": { + "isarray": "1.0.0" } } } }, - "blob-util": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", - "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true + "expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "requires": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + } }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", "dev": true }, - "body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", - "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", "http-errors": "2.0.0", - "iconv-lite": "0.4.24", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", "qs": "6.11.0", - "raw-body": "2.5.2", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", "type-is": "~1.6.18", - "unpipe": "1.0.0" + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "dependencies": { + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -37808,212 +47843,120 @@ "requires": { "side-channel": "^1.0.4" } + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } } } }, - "bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "express-rate-limit": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", + "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", + "dev": true + }, + "express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", + "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", "dev": true, "requires": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "debug": "*", + "path-to-regexp": "^1.0.3" }, "dependencies": { - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", "dev": true + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "requires": { + "isarray": "0.0.1" + } } } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - } - }, - "bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", "dev": true, "requires": { - "node-int64": "^0.4.0" + "mime-db": "^1.28.0" } }, - "btoa": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", - "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", - "dev": true - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", "dev": true, "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" } }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true - }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", - "dev": true - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "requires": { - "semver": "^7.0.0" + "is-extendable": "^0.1.0" } }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "cacache": { - "version": "17.0.6", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", - "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "requires": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" }, "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "requires": { - "brace-expansion": "^2.0.1" + "os-tmpdir": "~1.0.2" } } } }, - "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "dev": true - }, - "cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, "requires": { - "clone-response": "^1.0.2", + "@types/yauzl": "^2.9.1", + "debug": "^4.1.1", "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" + "yauzl": "^2.10.0" }, "dependencies": { "get-stream": { @@ -38027,364 +47970,198 @@ } } }, - "cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", - "dev": true - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001511", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", - "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, - "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true }, - "check-more-types": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" } }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true - }, - "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "fast-redact": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", + "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", "dev": true }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", "dev": true }, - "cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "requires": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - } + "reusify": "^1.0.4" } - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "clipanion": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", - "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, "requires": { - "typanion": "^3.8.0" + "websocket-driver": ">=0.5.1" } }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "bser": "2.1.1" } }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "requires": { + "pend": "~1.2.0" + } }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "escape-string-regexp": "^1.0.5" }, "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true } } }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { - "mimic-response": "^1.0.0" + "flat-cache": "^3.0.4" } }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "coffee-script": { - "version": "1.12.7", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", - "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "file-type": { + "version": "17.1.6", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", + "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", "dev": true, "requires": { - "color-name": "1.1.3" + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0-alpha.9", + "token-types": "^5.0.0-alpha.2" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "requires": { - "delayed-stream": "~1.0.0" + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - }, - "common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "filename-reserved-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", + "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", "dev": true }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true + "filenamify": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", + "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", + "dev": true, + "requires": { + "filename-reserved-regex": "^3.0.0", + "strip-outer": "^2.0.0", + "trim-repeated": "^2.0.0" + } }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { - "mime-db": ">= 1.43.0 < 2" + "to-regex-range": "^5.0.1" } }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -38399,264 +48176,151 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true } } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" } }, - "concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" } }, - "confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", - "dev": true - }, - "connect-pause": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", - "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "find-up-simple": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", + "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", "dev": true }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "find-versions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", + "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", "dev": true, "requires": { - "safe-buffer": "5.2.1" + "semver-regex": "^4.0.5" } }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true }, - "cookies": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", - "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", - "dev": true, - "requires": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" - } - }, - "copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "requires": { - "is-what": "^3.14.1" - } - }, - "copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "requires": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - }, - "dependencies": { - "fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globby": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", - "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", - "dev": true, - "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - } - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true - } + "flatted": "^3.1.0", + "rimraf": "^3.0.2" } }, - "core-js": { - "version": "3.30.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", - "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, - "core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", - "dev": true, - "requires": { - "browserslist": "^4.21.5" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "requires": { - "object-assign": "^4", - "vary": "^1" + "is-callable": "^1.1.3" } }, - "corser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", - "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "dev": true + } } }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true }, - "critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", + "fork-ts-checker-webpack-plugin": { + "version": "7.2.13", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", + "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", "dev": true, "requires": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -38691,12 +48355,47 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -38708,1117 +48407,1011 @@ } } }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" } }, - "css-declaration-sorter": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", - "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", - "dev": true, - "requires": {} + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true }, - "css-loader": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", - "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", - "dev": true, - "requires": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.19", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" - } + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true }, - "css-minimizer-webpack-plugin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", - "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "dev": true, "requires": { - "@jridgewell/trace-mapping": "^0.3.18", - "cssnano": "^6.0.1", - "jest-worker": "^29.4.3", - "postcss": "^8.4.24", - "schema-utils": "^4.0.1", - "serialize-javascript": "^6.0.1" - }, - "dependencies": { - "postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - } + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" } }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, - "css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "fs-minipass": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", + "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", "dev": true, "requires": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" + "minipass": "^5.0.0" } }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "fs-monkey": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", + "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", "dev": true }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "cssnano": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", - "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "requires": { - "cssnano-preset-default": "^6.0.1", - "lilconfig": "^2.1.0" - } + "optional": true }, - "cssnano-preset-default": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", - "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, "requires": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^4.0.0", - "postcss-calc": "^9.0.0", - "postcss-colormin": "^6.0.0", - "postcss-convert-values": "^6.0.0", - "postcss-discard-comments": "^6.0.0", - "postcss-discard-duplicates": "^6.0.0", - "postcss-discard-empty": "^6.0.0", - "postcss-discard-overridden": "^6.0.0", - "postcss-merge-longhand": "^6.0.0", - "postcss-merge-rules": "^6.0.1", - "postcss-minify-font-values": "^6.0.0", - "postcss-minify-gradients": "^6.0.0", - "postcss-minify-params": "^6.0.0", - "postcss-minify-selectors": "^6.0.0", - "postcss-normalize-charset": "^6.0.0", - "postcss-normalize-display-values": "^6.0.0", - "postcss-normalize-positions": "^6.0.0", - "postcss-normalize-repeat-style": "^6.0.0", - "postcss-normalize-string": "^6.0.0", - "postcss-normalize-timing-functions": "^6.0.0", - "postcss-normalize-unicode": "^6.0.0", - "postcss-normalize-url": "^6.0.0", - "postcss-normalize-whitespace": "^6.0.0", - "postcss-ordered-values": "^6.0.0", - "postcss-reduce-initial": "^6.0.0", - "postcss-reduce-transforms": "^6.0.0", - "postcss-svgo": "^6.0.0", - "postcss-unique-selectors": "^6.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" } }, - "cssnano-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", - "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", - "dev": true, - "requires": {} + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true }, - "csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "dev": true, "requires": { - "css-tree": "~2.2.0" - }, - "dependencies": { - "css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", - "dev": true, - "requires": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - } - }, - "mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true - } + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" } }, - "cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true }, - "cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dev": true, "requires": { - "cssom": "~0.3.6" - }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - } + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" } }, - "cypress": { - "version": "12.16.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", - "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, "requires": { - "@cypress/request": "^2.88.10", - "@cypress/xvfb": "^1.2.4", - "@types/node": "^14.14.31", - "@types/sinonjs__fake-timers": "8.1.1", - "@types/sizzle": "^2.3.2", - "arch": "^2.2.0", - "blob-util": "^2.0.2", - "bluebird": "^3.7.2", - "buffer": "^5.6.0", - "cachedir": "^2.3.0", - "chalk": "^4.1.0", - "check-more-types": "^2.24.0", - "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.1", - "commander": "^6.2.1", - "common-tags": "^1.8.0", - "dayjs": "^1.10.4", - "debug": "^4.3.4", - "enquirer": "^2.3.6", - "eventemitter2": "6.4.7", - "execa": "4.1.0", - "executable": "^4.1.1", - "extract-zip": "2.0.1", - "figures": "^3.2.0", - "fs-extra": "^9.1.0", - "getos": "^3.2.1", - "is-ci": "^3.0.0", - "is-installed-globally": "~0.4.0", - "lazy-ass": "^1.6.0", - "listr2": "^3.8.3", - "lodash": "^4.17.21", - "log-symbols": "^4.0.0", - "minimist": "^1.2.8", - "ospath": "^1.2.2", - "pretty-bytes": "^5.6.0", - "proxy-from-env": "1.0.0", - "request-progress": "^3.0.0", - "semver": "^7.3.2", - "supports-color": "^8.1.1", - "tmp": "~0.2.1", - "untildify": "^4.0.0", - "yauzl": "^2.10.0" - }, - "dependencies": { - "@types/node": { - "version": "14.18.53", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", - "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "getos": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", + "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", + "dev": true, + "requires": { + "async": "^3.2.0" } }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "requires": { "assert-plus": "^1.0.0" } }, - "data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "git-log-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", + "integrity": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==", "dev": true, + "peer": true, "requires": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" + "argv-formatter": "~1.0.0", + "spawn-error-forwarder": "~1.0.0", + "split2": "~1.0.0", + "stream-combiner2": "~1.1.1", + "through2": "~2.0.0", + "traverse": "~0.6.6" + }, + "dependencies": { + "split2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", + "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", + "dev": true, + "peer": true, + "requires": { + "through2": "~2.0.0" + } + } } }, - "dayjs": { - "version": "1.11.9", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", - "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", - "dev": true + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { - "ms": "2.1.2" + "is-glob": "^4.0.1" } }, - "decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, "requires": { - "mimic-response": "^3.1.0" + "ini": "2.0.0" }, "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true } } }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, - "deep-equal": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", - "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "requires": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.0", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "define-properties": "^1.1.3" } }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true - }, - "default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { - "execa": "^5.0.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", "dev": true, "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true } } }, - "defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "requires": { - "clone": "^1.0.2" + "get-intrinsic": "^1.1.3" } }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dev": true, + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", "dev": true }, - "define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "gray-matter": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", + "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", "dev": true, "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "ansi-red": "^0.1.1", + "coffee-script": "^1.12.4", + "extend-shallow": "^2.0.1", + "js-yaml": "^3.8.1", + "toml": "^2.3.2" } }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true + "gulp-header": { + "version": "1.8.12", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", + "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", + "dev": true, + "requires": { + "concat-with-sourcemaps": "*", + "lodash.template": "^4.4.0", + "through2": "^2.0.0" + } }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "requires": { + "duplexer": "^0.1.2" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "depd": { + "handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "har-schema": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "dev": true }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + } + } + }, + "harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", "dev": true }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, "requires": { - "address": "^1.0.1", - "debug": "4" + "get-intrinsic": "^1.1.1" } }, - "diacritics-map": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", - "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", - "dev": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true }, - "diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, "requires": { - "path-type": "^4.0.0" + "has-symbols": "^1.0.2" } }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "dev": true }, - "dns-packet": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", - "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "hdr-histogram-js": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", + "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", "dev": true, "requires": { - "@leichtgewicht/ip-codec": "^2.0.1" + "@assemblyscript/loader": "^0.10.1", + "base64-js": "^1.2.0", + "pako": "^1.0.3" } }, - "doctrine": { + "hdr-histogram-percentiles-obj": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", + "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", + "dev": true + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hook-std": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", + "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", "dev": true, - "requires": { - "esutils": "^2.0.2" - } + "peer": true }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", "dev": true, "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "lru-cache": "^7.5.1" + }, + "dependencies": { + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true + } } }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true - }, - "domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "requires": { - "webidl-conversions": "^7.0.0" + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", "dev": true, "requires": { - "domelementtype": "^2.2.0" + "whatwg-encoding": "^2.0.0" } }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dev": true, - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } + "html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "dev": true }, - "dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", "dev": true }, - "duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "requires": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" } }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", "dev": true }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" } }, - "ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, "requires": { - "safe-buffer": "^5.0.1" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" } }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "requires": { - "jake": "^10.8.5" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "dependencies": { + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true + } } }, - "electron-to-chromium": { - "version": "1.4.447", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", - "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", - "dev": true - }, - "emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "http-server": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", "dev": true, - "optional": true, "requires": { - "iconv-lite": "^0.6.2" + "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.6", + "opener": "^1.5.1", + "portfinder": "^1.0.28", + "secure-compare": "3.0.1", + "union": "~0.5.0", + "url-join": "^4.0.1" }, "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "optional": true, "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" } } } }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "http-signature": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, "requires": { - "once": "^1.4.0" + "assert-plus": "^1.0.0", + "jsprim": "^2.0.2", + "sshpk": "^1.14.1" } }, - "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "http-status-codes": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", + "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", + "dev": true + }, + "http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", "dev": true, "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" } }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "requires": { - "ansi-colors": "^4.1.1" + "agent-base": "6", + "debug": "4" } }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, - "optional": true, "requires": { - "prr": "~1.0.1" + "ms": "^2.0.0" } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } + "husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true }, - "errorhandler": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", - "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { - "accepts": "~1.3.7", - "escape-html": "~1.0.3" + "safer-buffer": ">= 2.1.2 < 3" } }, - "es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - } + "requires": {} }, - "es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" + "harmony-reflect": "^1.4.6" } }, - "es-module-lexer": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", - "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, - "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "ignore-walk": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", + "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", "dev": true, "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "minimatch": "^9.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, - "requires": { - "has": "^1.0.3" - } + "optional": true }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "immutable": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", + "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } } }, - "esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", + "import-from-esm": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", + "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", "dev": true, "requires": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" + "debug": "^4.3.4", + "import-meta-resolve": "^4.0.0" + } + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" } }, - "esbuild-wasm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", - "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", + "import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", "dev": true }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "index-to-position": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", + "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", "dev": true }, - "escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } + "once": "^1.3.0", + "wrappy": "1" } }, - "eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", + "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", + "dev": true + }, + "inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", "dev": true, "requires": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -39828,12 +49421,6 @@ "color-convert": "^2.0.1" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -39859,48 +49446,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -39909,285 +49454,459 @@ "requires": { "has-flag": "^4.0.0" } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true } } }, - "eslint-config-prettier": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", - "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", + "inquirer-autocomplete-prompt": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", + "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", "dev": true, - "requires": {} + "requires": { + "ansi-escapes": "^4.3.2", + "figures": "^3.2.0", + "picocolors": "^1.0.0", + "run-async": "^2.4.1", + "rxjs": "^7.5.4" + } }, - "eslint-config-standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", - "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dev": true, - "requires": {} + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } }, - "eslint-config-standard-jsx": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", - "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", + "into-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", + "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", "dev": true, - "requires": {} + "requires": { + "from2": "^2.3.0", + "p-is-promise": "^3.0.0" + } }, - "eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true + }, + "is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, + "requires": { + "ci-info": "^3.2.0" + } + }, + "is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, + "is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-text-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", + "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", "dev": true, "requires": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "text-extensions": "^2.0.0" } }, - "eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", "dev": true, "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" } }, - "eslint-plugin-cypress": { - "version": "2.13.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", - "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "requires": { - "globals": "^11.12.0" + "call-bind": "^1.0.2" } }, - "eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dev": true, "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" } }, - "eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, "requires": { - "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-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "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.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - } + "is-docker": "^2.0.0" } }, - "eslint-plugin-n": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", - "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "issue-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", + "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", "dev": true, + "peer": true, "requires": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" - }, - "dependencies": { - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" } }, - "eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", - "dev": true, - "requires": {} + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true }, - "eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -40196,832 +49915,794 @@ } } }, - "eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-utils": { + "istanbul-lib-report": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "requires": { - "eslint-visitor-keys": "^2.0.0" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" }, "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "eslint-visitor-keys": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", - "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", - "dev": true - }, - "espree": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", - "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "requires": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "requires": { - "estraverse": "^5.1.0" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" } }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "jackspeak": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", + "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", "dev": true, "requires": { - "estraverse": "^5.2.0" + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" } }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true - }, - "event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "dev": true - }, - "eventemitter-asyncresource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", - "dev": true - }, - "eventemitter2": { - "version": "6.4.7", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", - "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", "dev": true, "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" }, "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "color-convert": "^2.0.1" } }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "path-key": "^2.0.0" + "color-name": "~1.1.4" } }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "shebang-regex": "^1.0.0" + "brace-expansion": "^1.1.7" } }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "isexe": "^2.0.0" + "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true } } }, - "executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "java-properties": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "dev": true, + "peer": true + }, + "jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", "dev": true, "requires": { - "pify": "^2.2.0" + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" } }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", + "jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", "dev": true, "requires": { - "fill-range": "^2.1.0" + "execa": "^5.0.0", + "p-limit": "^3.1.0" }, "dependencies": { - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "requires": { - "isarray": "1.0.0" - } + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true } } }, - "expect": { + "jest-circus": { "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", "dev": true, "requires": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", "jest-matcher-utils": "^29.5.0", "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", - "dev": true - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "dependencies": { - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "color-convert": "^2.0.1" } }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "ms": "2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "side-channel": "^1.0.4" + "color-name": "~1.1.4" } }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "has-flag": "^4.0.0" } } } }, - "express-rate-limit": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", - "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", - "dev": true - }, - "express-urlrewrite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", - "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", + "jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", "dev": true, "requires": { - "debug": "*", - "path-to-regexp": "^1.0.3" + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" }, "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } }, - "path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "isarray": "0.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } - } - } - }, - "ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", - "dev": true, - "requires": { - "mime-db": "^1.28.0" - } - }, - "ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", - "dev": true, - "requires": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "os-tmpdir": "~1.0.2" + "color-name": "~1.1.4" } - } - } - }, - "extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dev": true, - "requires": { - "@types/yauzl": "^2.9.1", - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "pump": "^3.0.0" + "has-flag": "^4.0.0" } } } }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", - "dev": true - }, - "fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", - "dev": true - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "requires": { - "pend": "~1.2.0" - } - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", "dev": true, "requires": { - "escape-string-regexp": "^1.0.5" + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "dependencies": { - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "file-type": { - "version": "17.1.6", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", - "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", - "dev": true, - "requires": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0-alpha.9", - "token-types": "^5.0.0-alpha.2" - } - }, - "filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", "dev": true, "requires": { - "minimatch": "^5.0.1" + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "dependencies": { - "brace-expansion": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "balanced-match": "^1.0.0" + "color-name": "~1.1.4" } }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "brace-expansion": "^2.0.1" + "has-flag": "^4.0.0" } } } }, - "filename-reserved-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", - "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", - "dev": true - }, - "filenamify": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", - "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", - "dev": true, - "requires": { - "filename-reserved-regex": "^3.0.0", - "strip-outer": "^2.0.0", - "trim-repeated": "^2.0.0" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", "dev": true, "requires": { - "to-regex-range": "^5.0.1" + "detect-newline": "^3.0.0" } }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", "dev": true, "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "ms": "2.0.0" + "color-convert": "^2.0.1" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "jest-environment-jsdom": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", + "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", "dev": true, "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0", + "jsdom": "^20.0.0" } }, - "find-versions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", - "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", + "jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", "dev": true, "requires": { - "semver-regex": "^4.0.5" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" } }, - "flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", "dev": true, "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" } }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "dev": true - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", "dev": true, "requires": { - "is-callable": "^1.1.3" + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" } }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true - }, - "foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", "dev": true, "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "dependencies": { - "signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true - }, - "fork-ts-checker-webpack-plugin": { - "version": "7.2.13", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", - "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", + "jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", "dev": true, "requires": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "color-convert": "^2.0.1" } }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": {} + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "requires": {} + }, + "jest-preset-angular": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", + "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", + "dev": true, + "requires": { + "bs-logger": "^0.2.6", + "esbuild": ">=0.13.8", + "esbuild-wasm": ">=0.13.8", + "jest-environment-jsdom": "^29.0.0", + "jest-util": "^29.0.0", + "pretty-format": "^29.0.0", + "ts-jest": "^29.0.0" + } + }, + "jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true + }, + "jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "dependencies": { "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -41056,47 +50737,12 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -41108,676 +50754,351 @@ } } }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "dev": true - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs-minipass": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", - "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", - "dev": true, - "requires": { - "minipass": "^5.0.0" - } - }, - "fs-monkey": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", - "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - } - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true - }, - "get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "getos": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", - "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", - "dev": true, - "requires": { - "async": "^3.2.0" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", "dev": true, "requires": { - "assert-plus": "^1.0.0" + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" } }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", "dev": true, "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "balanced-match": "^1.0.0" + "color-convert": "^2.0.1" } }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "brace-expansion": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } - } - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "requires": { - "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "dependencies": { - "fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "color-name": "~1.1.4" } - } - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dev": true, - "requires": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "gray-matter": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", - "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", - "dev": true, - "requires": { - "ansi-red": "^0.1.1", - "coffee-script": "^1.12.4", - "extend-shallow": "^2.0.1", - "js-yaml": "^3.8.1", - "toml": "^2.3.2" - } - }, - "gulp-header": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "dev": true, - "requires": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" - } - }, - "gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "dev": true, - "requires": { - "duplexer": "^0.1.2" - } - }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, - "requires": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4", - "wordwrap": "^1.0.0" - }, - "dependencies": { + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true + }, + "source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "dev": true - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", "dev": true, "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "color-convert": "^2.0.1" } }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "hdr-histogram-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", - "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", - "dev": true, - "requires": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" - } - }, - "hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", - "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", - "dev": true - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true - }, - "hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", "dev": true, "requires": { - "lru-cache": "^7.5.1" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" }, "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "dev": true, - "requires": { - "whatwg-encoding": "^2.0.0" - } - }, - "html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "dev": true - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "dev": true - }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "dev": true, - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", "dev": true, "requires": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "dependencies": { - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "http-server": { - "version": "14.1.1", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", - "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", + "jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", "dev": true, "requires": { - "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.6", - "opener": "^1.5.1", - "portfinder": "^1.0.28", - "secure-compare": "3.0.1", - "union": "~0.5.0", - "url-join": "^4.0.1" + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" }, "dependencies": { "ansi-styles": { @@ -41789,6 +51110,12 @@ "color-convert": "^2.0.1" } }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -41825,226 +51152,243 @@ } } }, - "http-signature": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", - "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^2.0.2", - "sshpk": "^1.14.1" - } - }, - "http-status-codes": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", - "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", - "dev": true - }, - "http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", "dev": true, "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", "dev": true, "requires": { - "agent-base": "6", - "debug": "4" + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" } }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", "dev": true }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "requires": {} - }, - "identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { - "harmony-reflect": "^1.4.6" + "argparse": "^1.0.7", + "esprima": "^4.0.0" } }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, - "ignore-walk": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", - "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", + "jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "dev": true, "requires": { - "minimatch": "^9.0.0" + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" }, "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "requires": { - "balanced-match": "^1.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" } }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "requires": { - "brace-expansion": "^2.0.1" + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" } + }, + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true } } }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true - }, - "immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - } + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", "dev": true, "requires": { - "once": "^1.3.0", - "wrappy": "1" + "jju": "^1.1.0" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, - "ini": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", - "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "json-server": { + "version": "0.17.3", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", + "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", "dev": true, "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "standard": "^17.0.0", + "yargs": "^17.0.1" }, "dependencies": { "ansi-styles": { @@ -42092,496 +51436,503 @@ } } }, - "inquirer-autocomplete-prompt": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", - "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", - "dev": true, - "requires": { - "ansi-escapes": "^4.3.2", - "figures": "^3.2.0", - "picocolors": "^1.0.0", - "run-async": "^2.4.1", - "rxjs": "^7.5.4" - } - }, - "internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true }, - "is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "requires": { - "ci-info": "^3.2.0" - } - }, - "is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "jsonc-eslint-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", + "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", "dev": true, "requires": { - "has-tostringtag": "^1.0.0" + "acorn": "^8.5.0", + "eslint-visitor-keys": "^3.0.0", + "espree": "^9.0.0", + "semver": "^7.3.5" } }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, - "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", "dev": true }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, "requires": { - "kind-of": "^3.0.2" + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" } }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "jsonwebtoken": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", + "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", "dev": true, "requires": { - "has-tostringtag": "^1.0.0" + "jws": "^3.2.2", + "lodash": "^4.17.21", + "ms": "^2.1.1", + "semver": "^7.3.8" } }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "jsprim": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", "dev": true, "requires": { - "isobject": "^3.0.1" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" } }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", - "dev": true + "jsx-ast-utils": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", + "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", + "dev": true, + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + } }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" } }, - "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "dev": true, + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", "dev": true, "requires": { - "call-bind": "^1.0.2" + "source-map-support": "^0.5.5" } }, - "is-stream": { + "keygrip": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", "dev": true, "requires": { - "has-tostringtag": "^1.0.0" + "tsscmp": "1.0.6" } }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "keyv": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", + "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", "dev": true, "requires": { - "has-symbols": "^1.0.2" + "json-buffer": "3.0.1" } }, - "is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "is-buffer": "^1.1.5" } }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, - "is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "dev": true }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", "dev": true, "requires": { - "call-bind": "^1.0.2" + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" } }, - "is-weakset": { + "lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", + "dev": true + }, + "lazy-cache": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", + "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "set-getter": "^0.1.0" } }, - "is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true + "less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "dev": true, + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0", + "tslib": "^2.3.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "less-loader": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", + "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", "dev": true, "requires": { - "is-docker": "^2.0.0" + "klona": "^2.0.4" } }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true + "license-webpack-plugin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", + "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "dev": true, + "requires": { + "webpack-sources": "^3.0.0" + } }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "dev": true }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "lines-and-columns": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", + "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", "dev": true }, - "istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "lint-staged": { + "version": "13.2.3", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", + "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", "dev": true, "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.2" }, "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "color-name": "~1.1.4" } - } - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true + }, + "execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true + }, + "listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "dev": true, + "requires": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + } + } + } + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true + }, + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true + }, + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", "dev": true } } }, - "istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "jackspeak": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", - "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", + "list-item": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", + "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", "dev": true, "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" + "expand-range": "^1.8.1", + "extend-shallow": "^2.0.1", + "is-number": "^2.1.0", + "repeat-string": "^1.5.2" } }, - "jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "listr2": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", "dev": true, "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.1", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" }, "dependencies": { "ansi-styles": { @@ -42593,14 +51944,14 @@ "color-convert": "^2.0.1" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" } }, "color-convert": { @@ -42618,170 +51969,207 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" } } } }, - "jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", - "dev": true, - "requires": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", - "import-local": "^3.0.2", - "jest-cli": "^29.5.0" - } - }, - "jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, "requires": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" }, "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" } }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true } } }, - "jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true + }, + "loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "p-locate": "^4.1.0" } }, - "jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "lockfile": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", + "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", "dev": true, "requires": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", - "yargs": "^17.3.1" + "signal-exit": "^3.0.2" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, + "lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", + "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", + "dev": true + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "dev": true + }, + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "dev": true, + "peer": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "lodash.escaperegexp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", + "dev": true, + "peer": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true, + "peer": true + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "dev": true, + "peer": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "dev": true + }, + "lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "dev": true, + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "dev": true, + "requires": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "dev": true, + "peer": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "dependencies": { "ansi-styles": { @@ -42829,34 +52217,16 @@ } } }, - "jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, "requires": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" }, "dependencies": { "ansi-styles": { @@ -42868,16 +52238,6 @@ "color-convert": "^2.0.1" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -42893,620 +52253,876 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "requires": { - "brace-expansion": "^1.1.7" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" } } } }, - "jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.13" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", "dev": true, "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, - "jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { - "detect-newline": "^3.0.0" + "tmpl": "1.0.5" } }, - "jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "markdown-link": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", + "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", + "dev": true + }, + "markdown-toc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", + "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", "dev": true, "requires": { - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "concat-stream": "^1.5.2", + "diacritics-map": "^0.1.0", + "gray-matter": "^2.1.0", + "lazy-cache": "^2.0.2", + "list-item": "^1.1.1", + "markdown-link": "^0.1.1", + "minimist": "^1.2.0", + "mixin-deep": "^1.1.3", + "object.pick": "^1.2.0", + "remarkable": "^1.7.1", + "repeat-string": "^1.6.1", + "strip-color": "^0.1.0" + } + }, + "marked": { + "version": "9.1.6", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", + "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", + "dev": true, + "peer": true + }, + "marked-terminal": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", + "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", + "dev": true, + "peer": true, + "requires": { + "ansi-escapes": "^6.2.0", + "cardinal": "^2.1.1", + "chalk": "^5.3.0", + "cli-table3": "^0.6.3", + "node-emoji": "^2.1.3", + "supports-hyperlinks": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "ansi-escapes": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", + "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "type-fest": "^3.0.0" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "peer": true + } + } + }, + "math-random": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", + "dev": true + }, + "mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "requires": { + "fs-monkey": "^1.0.4" + } + }, + "memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true + }, + "meow": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", + "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", + "dev": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "dev": true, + "requires": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", "dev": true, "requires": { - "color-name": "~1.1.4" + "ms": "2.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, - "jest-environment-jsdom": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", - "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/jsdom": "^20.0.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0", - "jsdom": "^20.0.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, - "jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "mime-db": "1.52.0" } }, - "jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, - "jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "mini-css-extract-plugin": { + "version": "2.7.5", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", + "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", "dev": true, "requires": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" + "schema-utils": "^4.0.0" } }, - "jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", "dev": true, "requires": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "brace-expansion": "^1.1.7" } }, - "jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, "requires": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "minipass": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "yallist": "^4.0.0" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "minipass-fetch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", + "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", + "dev": true, + "requires": { + "encoding": "^0.1.13", + "minipass": "^5.0.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "yallist": "^4.0.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "dev": true, + "requires": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { - "color-name": "~1.1.4" + "yallist": "^4.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + } + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "yallist": "^4.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { - "color-name": "~1.1.4" + "yallist": "^4.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, - "jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } } }, - "jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "requires": {} - }, - "jest-preset-angular": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", - "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "requires": { - "bs-logger": "^0.2.6", - "esbuild": ">=0.13.8", - "esbuild-wasm": ">=0.13.8", - "jest-environment-jsdom": "^29.0.0", - "jest-util": "^29.0.0", - "pretty-format": "^29.0.0", - "ts-jest": "^29.0.0" + "minimist": "^1.2.6" } }, - "jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", - "dev": true - }, - "jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", "dev": true, "requires": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "color-name": "~1.1.4" + "ms": "2.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "ee-first": "1.1.1" } } } }, - "jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "requires": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" } }, - "jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "mv": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", "dev": true, "requires": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "mkdirp": "~0.5.1", + "ncp": "~2.0.0", + "rimraf": "~2.4.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "rimraf": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", "dev": true, "requires": { - "color-name": "~1.1.4" + "glob": "^6.0.1" } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + } + } + }, + "nanoclone": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", + "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", + "dev": true + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", + "dev": true + }, + "needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "dev": true, + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "optional": true, "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "ms": "^2.1.1" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "requires": { - "has-flag": "^4.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" } } } }, - "jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nerf-dart": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", + "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", + "dev": true, + "peer": true + }, + "nice-napi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", + "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", "dev": true, + "optional": true, "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "node-addon-api": "^3.0.0", + "node-gyp-build": "^4.2.2" + } + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, + "node-addon-api": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", + "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", + "dev": true + }, + "node-emoji": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", + "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", + "dev": true, + "peer": true, + "requires": { + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "requires": { - "color-name": "~1.1.4" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, + } + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true + }, + "node-gyp": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", + "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", + "dev": true, + "requires": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^11.0.3", + "nopt": "^6.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "dependencies": { "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -43529,2169 +53145,2270 @@ "requires": { "brace-expansion": "^1.1.7" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, - "jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "dev": true + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "nopt": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dev": true, "requires": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "abbrev": "^1.0.0" + } + }, + "normalize-package-data": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", + "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", + "dev": true, + "requires": { + "hosted-git-info": "^6.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true + }, + "npm": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", + "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", + "dev": true, + "peer": true, + "requires": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^7.2.1", + "@npmcli/config": "^8.0.2", + "@npmcli/fs": "^3.1.0", + "@npmcli/map-workspaces": "^3.0.4", + "@npmcli/package-json": "^5.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.2", + "@sigstore/tuf": "^2.2.0", + "abbrev": "^2.0.0", + "archy": "~1.0.0", + "cacache": "^18.0.1", + "chalk": "^5.3.0", + "ci-info": "^4.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.3", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.16", + "fs-minipass": "^3.0.3", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "hosted-git-info": "^7.0.1", + "ini": "^4.1.1", + "init-package-json": "^6.0.0", + "is-cidr": "^5.0.3", + "json-parse-even-better-errors": "^3.0.1", + "libnpmaccess": "^8.0.1", + "libnpmdiff": "^6.0.3", + "libnpmexec": "^7.0.4", + "libnpmfund": "^5.0.1", + "libnpmhook": "^10.0.0", + "libnpmorg": "^6.0.1", + "libnpmpack": "^6.0.3", + "libnpmpublish": "^9.0.2", + "libnpmsearch": "^7.0.0", + "libnpmteam": "^6.0.0", + "libnpmversion": "^5.0.1", + "make-fetch-happen": "^13.0.0", + "minimatch": "^9.0.3", + "minipass": "^7.0.4", + "minipass-pipeline": "^1.2.4", + "ms": "^2.1.2", + "node-gyp": "^10.0.1", + "nopt": "^7.2.0", + "normalize-package-data": "^6.0.0", + "npm-audit-report": "^5.0.0", + "npm-install-checks": "^6.3.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-profile": "^9.0.0", + "npm-registry-fetch": "^16.1.0", + "npm-user-validate": "^2.0.0", + "npmlog": "^7.0.1", + "p-map": "^4.0.0", + "pacote": "^17.0.5", + "parse-conflict-json": "^3.0.1", + "proc-log": "^3.0.0", + "qrcode-terminal": "^0.12.0", + "read": "^2.1.0", + "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1", + "ssri": "^10.0.5", + "strip-ansi": "^7.1.0", + "supports-color": "^9.4.0", + "tar": "^6.2.0", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^3.0.0", + "validate-npm-package-name": "^5.0.0", + "which": "^4.0.0", + "write-file-atomic": "^5.0.1" + }, + "dependencies": { + "@colors/colors": { + "version": "1.5.0", + "bundled": true, "dev": true, - "requires": { - "color-convert": "^2.0.1" - } + "optional": true, + "peer": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@isaacs/cliui": { + "version": "8.0.2", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "9.2.2", + "bundled": true, + "dev": true, + "peer": true + }, + "string-width": { + "version": "5.1.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + } } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@isaacs/string-locale-compare": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "peer": true + }, + "@npmcli/agent": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" + } + }, + "@npmcli/arborist": { + "version": "7.2.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/fs": "^3.1.0", + "@npmcli/installed-package-contents": "^2.0.2", + "@npmcli/map-workspaces": "^3.0.2", + "@npmcli/metavuln-calculator": "^7.0.0", + "@npmcli/name-from-folder": "^2.0.0", + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", + "@npmcli/query": "^3.0.1", + "@npmcli/run-script": "^7.0.2", + "bin-links": "^4.0.1", + "cacache": "^18.0.0", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^7.0.1", + "json-parse-even-better-errors": "^3.0.0", + "json-stringify-nice": "^1.1.4", + "minimatch": "^9.0.0", + "nopt": "^7.0.0", + "npm-install-checks": "^6.2.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "parse-conflict-json": "^3.0.0", + "proc-log": "^3.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.2", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^10.0.5", + "treeverse": "^3.0.0", + "walk-up-path": "^3.0.1" + } + }, + "@npmcli/config": { + "version": "8.0.3", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "@npmcli/map-workspaces": "^3.0.2", + "ci-info": "^4.0.0", + "ini": "^4.1.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.5", + "walk-up-path": "^3.0.1" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@npmcli/disparity-colors": { + "version": "3.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "color-convert": "^2.0.1" + } + } } - } - } - }, - "jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + }, + "@npmcli/fs": { + "version": "3.1.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "semver": "^7.3.5" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@npmcli/git": { + "version": "5.0.3", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@npmcli/installed-package-contents": { + "version": "2.0.2", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@npmcli/map-workspaces": { + "version": "3.0.4", + "bundled": true, "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "@npmcli/name-from-folder": "^2.0.0", + "glob": "^10.2.2", + "minimatch": "^9.0.0", + "read-package-json-fast": "^3.0.0" } - } - } - }, - "jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "leven": "^3.1.0", - "pretty-format": "^29.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + }, + "@npmcli/metavuln-calculator": { + "version": "7.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "cacache": "^18.0.0", + "json-parse-even-better-errors": "^3.0.0", + "pacote": "^17.0.0", + "semver": "^7.3.5" } }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true + "@npmcli/name-from-folder": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@npmcli/node-gyp": { + "version": "3.0.0", + "bundled": true, "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "peer": true }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@npmcli/package-json": { + "version": "5.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.5.3" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@npmcli/promise-spawn": { + "version": "7.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "which": "^4.0.0" } - } - } - }, - "jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", - "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.5.0", - "string-length": "^4.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + }, + "@npmcli/query": { + "version": "3.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "postcss-selector-parser": "^6.0.10" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@npmcli/run-script": { + "version": "7.0.2", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@pkgjs/parseargs": { + "version": "0.11.0", + "bundled": true, + "dev": true, + "optional": true, + "peer": true + }, + "@sigstore/bundle": { + "version": "2.1.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "@sigstore/protobuf-specs": "^0.2.1" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "@sigstore/protobuf-specs": { + "version": "0.2.1", + "bundled": true, + "dev": true, + "peer": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@sigstore/sign": { + "version": "2.2.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" } - } - } - }, - "jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", - "dev": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - } - }, - "jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, - "jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "dev": true, - "requires": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - }, - "dependencies": { - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + }, + "@sigstore/tuf": { + "version": "2.2.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" } }, - "tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "@tufjs/canonical-json": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "@tufjs/models": { + "version": "2.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" } }, - "universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true - } - } - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-parse-helpfulerror": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", - "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", - "dev": true, - "requires": { - "jju": "^1.1.0" - } - }, - "json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "json-server": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", - "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", - "dev": true, - "requires": { - "body-parser": "^1.19.0", - "chalk": "^4.1.2", - "compression": "^1.7.4", - "connect-pause": "^0.1.1", - "cors": "^2.8.5", - "errorhandler": "^1.5.1", - "express": "^4.17.1", - "express-urlrewrite": "^1.4.0", - "json-parse-helpfulerror": "^1.0.3", - "lodash": "^4.17.21", - "lodash-id": "^0.14.1", - "lowdb": "^1.0.0", - "method-override": "^3.0.0", - "morgan": "^1.10.0", - "nanoid": "^3.1.23", - "please-upgrade-node": "^3.2.0", - "pluralize": "^8.0.0", - "server-destroy": "^1.0.1", - "standard": "^17.0.0", - "yargs": "^17.0.1" - }, - "dependencies": { + "abbrev": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "abort-controller": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "agent-base": { + "version": "7.1.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "debug": "^4.3.4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ansi-regex": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true + }, "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "version": "6.2.1", + "bundled": true, + "dev": true, + "peer": true + }, + "aproba": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "archy": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "are-we-there-yet": { + "version": "4.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "delegates": "^1.0.0", + "readable-stream": "^4.1.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "peer": true + }, + "base64-js": { + "version": "1.5.1", + "bundled": true, + "dev": true, + "peer": true + }, + "bin-links": { + "version": "4.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "cmd-shim": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "read-cmd-shim": "^4.0.0", + "write-file-atomic": "^5.0.0" + } + }, + "binary-extensions": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "peer": true + }, + "brace-expansion": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "buffer": { + "version": "6.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "builtins": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "semver": "^7.0.0" + } + }, + "cacache": { + "version": "18.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" } }, "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "version": "5.3.0", + "bundled": true, + "dev": true, + "peer": true + }, + "chownr": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "ci-info": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "cidr-regex": { + "version": "4.0.3", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ip-regex": "^5.0.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "peer": true + }, + "cli-columns": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "cli-table3": { + "version": "0.6.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@colors/colors": "1.5.0", + "string-width": "^4.2.0" } }, + "clone": { + "version": "1.0.4", + "bundled": true, + "dev": true, + "peer": true + }, + "cmd-shim": { + "version": "6.0.2", + "bundled": true, + "dev": true, + "peer": true + }, "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "bundled": true, "dev": true, + "peer": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "bundled": true, + "dev": true, + "peer": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "color-support": { + "version": "1.1.3", + "bundled": true, + "dev": true, + "peer": true + }, + "columnify": { + "version": "1.6.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } } - } - } - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsonc-eslint-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", - "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", - "dev": true, - "requires": { - "acorn": "^8.5.0", - "eslint-visitor-keys": "^3.0.0", - "espree": "^9.0.0", - "semver": "^7.3.5" - } - }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true - }, - "JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", - "dev": true, - "requires": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - } - }, - "jsonwebtoken": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", - "dev": true, - "requires": { - "jws": "^3.2.2", - "lodash": "^4.17.21", - "ms": "^2.1.1", - "semver": "^7.3.8" - } - }, - "jsprim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", - "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "jsx-ast-utils": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", - "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - } - }, - "jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "dev": true, - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dev": true, - "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "karma-source-map-support": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", - "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", - "dev": true, - "requires": { - "source-map-support": "^0.5.5" - } - }, - "keygrip": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", - "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", - "dev": true, - "requires": { - "tsscmp": "1.0.6" - } - }, - "keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true - }, - "launch-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", - "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", - "dev": true, - "requires": { - "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" - } - }, - "lazy-ass": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", - "dev": true - }, - "lazy-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", - "dev": true, - "requires": { - "set-getter": "^0.1.0" - } - }, - "less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", - "dev": true, - "requires": { - "copy-anything": "^2.0.1", - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "parse-node-version": "^1.0.1", - "source-map": "~0.6.0", - "tslib": "^2.3.0" - }, - "dependencies": { - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + }, + "common-ancestor-path": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "peer": true + }, + "cross-spawn": { + "version": "7.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "cssesc": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "debug": { + "version": "4.3.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "peer": true + } + } + }, + "defaults": { + "version": "1.0.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "clone": "^1.0.2" + } + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "diff": { + "version": "5.1.0", + "bundled": true, + "dev": true, + "peer": true + }, + "eastasianwidth": { + "version": "0.2.0", + "bundled": true, + "dev": true, + "peer": true + }, + "emoji-regex": { + "version": "8.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "encoding": { + "version": "0.1.13", + "bundled": true, "dev": true, "optional": true, + "peer": true, "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "iconv-lite": "^0.6.2" } }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "env-paths": { + "version": "2.2.1", + "bundled": true, "dev": true, - "optional": true + "peer": true }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "err-code": { + "version": "2.0.3", + "bundled": true, "dev": true, - "optional": true + "peer": true }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "event-target-shim": { + "version": "5.0.1", + "bundled": true, "dev": true, - "optional": true - } - } - }, - "less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", - "dev": true, - "requires": { - "klona": "^2.0.4" - } - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "license-webpack-plugin": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", - "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", - "dev": true, - "requires": { - "webpack-sources": "^3.0.0" - } - }, - "lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true - }, - "lines-and-columns": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", - "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", - "dev": true - }, - "lint-staged": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", - "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", - "dev": true, - "requires": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", - "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "peer": true + }, + "events": { + "version": "3.3.0", + "bundled": true, + "dev": true, + "peer": true + }, + "exponential-backoff": { + "version": "3.1.1", + "bundled": true, + "dev": true, + "peer": true + }, + "fastest-levenshtein": { + "version": "1.0.16", + "bundled": true, + "dev": true, + "peer": true + }, + "foreground-child": { + "version": "3.1.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } + }, + "fs-minipass": { + "version": "3.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "minipass": "^7.0.3" + } + }, + "function-bind": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "peer": true + }, + "gauge": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "glob": { + "version": "10.3.10", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" } }, - "chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true + "graceful-fs": { + "version": "4.2.11", + "bundled": true, + "dev": true, + "peer": true }, - "color-convert": { + "has-unicode": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "bundled": true, "dev": true, + "peer": true + }, + "hasown": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "function-bind": "^1.1.2" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "hosted-git-info": { + "version": "7.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "lru-cache": "^10.0.1" + } }, - "commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true + "http-cache-semantics": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "peer": true }, - "execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "http-proxy-agent": { + "version": "7.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "agent-base": "^7.1.0", + "debug": "^4.3.4" } }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true + "https-proxy-agent": { + "version": "7.0.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } }, - "human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true + "iconv-lite": { + "version": "0.6.3", + "bundled": true, + "dev": true, + "optional": true, + "peer": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ieee754": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "peer": true + }, + "ignore-walk": { + "version": "6.0.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "minimatch": "^9.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "bundled": true, + "dev": true, + "peer": true + }, + "indent-string": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "ini": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "peer": true + }, + "init-package-json": { + "version": "6.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "npm-package-arg": "^11.0.0", + "promzard": "^1.0.0", + "read": "^2.0.0", + "read-package-json": "^7.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^5.0.0" + } + }, + "ip": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "ip-regex": { + "version": "5.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "is-cidr": { + "version": "5.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "cidr-regex": "4.0.3" + } + }, + "is-core-module": { + "version": "2.13.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "hasown": "^2.0.0" + } }, "is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true + "bundled": true, + "dev": true, + "peer": true }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true + "is-lambda": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "peer": true }, - "listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "isexe": { + "version": "2.0.0", + "bundled": true, "dev": true, + "peer": true + }, + "jackspeak": { + "version": "2.3.6", + "bundled": true, + "dev": true, + "peer": true, "requires": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "requires": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - } - } + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" } }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true + "json-parse-even-better-errors": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "peer": true }, - "npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "json-stringify-nice": { + "version": "1.1.4", + "bundled": true, + "dev": true, + "peer": true + }, + "jsonparse": { + "version": "1.3.1", + "bundled": true, + "dev": true, + "peer": true + }, + "just-diff": { + "version": "6.0.2", + "bundled": true, + "dev": true, + "peer": true + }, + "just-diff-apply": { + "version": "5.5.0", + "bundled": true, "dev": true, + "peer": true + }, + "libnpmaccess": { + "version": "8.0.2", + "bundled": true, + "dev": true, + "peer": true, "requires": { - "path-key": "^4.0.0" + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0" } }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "libnpmdiff": { + "version": "6.0.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/disparity-colors": "^3.0.0", + "@npmcli/installed-package-contents": "^2.0.2", + "binary-extensions": "^2.2.0", + "diff": "^5.1.0", + "minimatch": "^9.0.0", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4", + "tar": "^6.2.0" + } + }, + "libnpmexec": { + "version": "7.0.5", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "ci-info": "^4.0.0", + "npm-package-arg": "^11.0.1", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "proc-log": "^3.0.0", + "read": "^2.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "walk-up-path": "^3.0.1" + } + }, + "libnpmfund": { + "version": "5.0.2", + "bundled": true, "dev": true, + "peer": true, "requires": { - "mimic-fn": "^4.0.0" + "@npmcli/arborist": "^7.2.1" } }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true + "libnpmhook": { + "version": "10.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + } }, - "slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "libnpmorg": { + "version": "6.0.2", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" } }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true + "libnpmpack": { + "version": "6.0.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4" + } }, - "yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true - } - } - }, - "list-item": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", - "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", - "dev": true, - "requires": { - "expand-range": "^1.8.1", - "extend-shallow": "^2.0.1", - "is-number": "^2.1.0", - "repeat-string": "^1.5.2" - } - }, - "listr2": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", - "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", - "dev": true, - "requires": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.1", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "libnpmpublish": { + "version": "9.0.3", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "ci-info": "^4.0.0", + "normalize-package-data": "^6.0.0", + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7", + "sigstore": "^2.1.0", + "ssri": "^10.0.5" } }, - "cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "libnpmsearch": { + "version": "7.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "npm-registry-fetch": "^16.0.0" } }, - "color-convert": { + "libnpmteam": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + } + }, + "libnpmversion": { + "version": "5.0.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@npmcli/git": "^5.0.3", + "@npmcli/run-script": "^7.0.2", + "json-parse-even-better-errors": "^3.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7" + } + }, + "lru-cache": { + "version": "10.1.0", + "bundled": true, + "dev": true, + "peer": true + }, + "make-fetch-happen": { + "version": "13.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + } + }, + "minimatch": { + "version": "9.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minipass": { + "version": "7.0.4", + "bundled": true, + "dev": true, + "peer": true + }, + "minipass-collect": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "minipass": "^7.0.3" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "minipass-fetch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "encoding": "^0.1.13", + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + } }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true + "minipass-flush": { + "version": "1.0.5", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } + } }, - "slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "minipass-json-stream": { + "version": "1.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } } - } - } - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + }, + "minipass-pipeline": { + "version": "1.2.4", + "bundled": true, "dev": true, + "peer": true, "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } } }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true + "minipass-sized": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } + } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - } - } - }, - "loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true - }, - "loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lockfile": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", - "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", - "dev": true, - "requires": { - "signal-exit": "^3.0.2" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true - }, - "lodash-id": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", - "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", - "dev": true - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true - }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dev": true, - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dev": true, - "requires": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "minizlib": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "bundled": true, + "dev": true, + "peer": true + }, + "ms": { + "version": "2.1.3", + "bundled": true, + "dev": true, + "peer": true + }, + "mute-stream": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "negotiator": { + "version": "0.6.3", + "bundled": true, + "dev": true, + "peer": true + }, + "node-gyp": { + "version": "10.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "nopt": { + "version": "7.2.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "abbrev": "^2.0.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "normalize-package-data": { + "version": "6.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "npm-audit-report": { + "version": "5.0.0", + "bundled": true, + "dev": true, + "peer": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "npm-bundled": { + "version": "3.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "npm-normalize-package-bin": "^3.0.0" } - } - } - }, - "log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + }, + "npm-install-checks": { + "version": "6.3.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "semver": "^7.1.1" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "npm-normalize-package-bin": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "npm-package-arg": { + "version": "11.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "color-name": "~1.1.4" + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "npm-packlist": { + "version": "8.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ignore-walk": "^6.0.4" + } }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true + "npm-pick-manifest": { + "version": "9.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" + } }, - "slice-ansi": { + "npm-profile": { + "version": "9.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0" + } + }, + "npm-registry-fetch": { + "version": "16.1.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" + } + }, + "npm-user-validate": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "npmlog": { + "version": "7.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "are-we-there-yet": "^4.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^5.0.0", + "set-blocking": "^2.0.0" + } + }, + "p-map": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "aggregate-error": "^3.0.0" } }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "pacote": { + "version": "17.0.5", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" } - } - } - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lowdb": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", - "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.3", - "is-promise": "^2.1.0", - "lodash": "4", - "pify": "^3.0.0", - "steno": "^0.4.1" - }, - "dependencies": { - "pify": { + }, + "parse-conflict-json": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "json-parse-even-better-errors": "^3.0.0", + "just-diff": "^6.0.0", + "just-diff-apply": "^5.2.0" + } + }, + "path-key": { + "version": "3.1.1", + "bundled": true, + "dev": true, + "peer": true + }, + "path-scurry": { + "version": "1.10.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.13", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "proc-log": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true - } - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "make-fetch-happen": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", - "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - } - } - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "requires": { - "tmpl": "1.0.5" - } - }, - "markdown-link": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", - "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", - "dev": true - }, - "markdown-toc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", - "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", - "dev": true, - "requires": { - "concat-stream": "^1.5.2", - "diacritics-map": "^0.1.0", - "gray-matter": "^2.1.0", - "lazy-cache": "^2.0.2", - "list-item": "^1.1.1", - "markdown-link": "^0.1.1", - "minimist": "^1.2.0", - "mixin-deep": "^1.1.3", - "object.pick": "^1.2.0", - "remarkable": "^1.7.1", - "repeat-string": "^1.6.1", - "strip-color": "^0.1.0" - } - }, - "math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", - "dev": true - }, - "mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true - }, - "memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", - "dev": true, - "requires": { - "fs-monkey": "^1.0.4" - } - }, - "memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "dev": true - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "method-override": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", - "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", - "dev": true, - "requires": { - "debug": "3.1.0", - "methods": "~1.1.2", - "parseurl": "~1.3.2", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "bundled": true, + "dev": true, + "peer": true + }, + "process": { + "version": "0.11.10", + "bundled": true, + "dev": true, + "peer": true + }, + "promise-all-reject-late": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "promise-call-limit": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "peer": true + }, + "promise-inflight": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "promise-retry": { + "version": "2.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ms": "2.0.0" + "err-code": "^2.0.2", + "retry": "^0.12.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true - }, - "mini-css-extract-plugin": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", - "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", - "dev": true, - "requires": { - "schema-utils": "^4.0.0" - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true - }, - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "promzard": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "read": "^2.0.0" + } + }, + "qrcode-terminal": { + "version": "0.12.0", + "bundled": true, + "dev": true, + "peer": true + }, + "read": { + "version": "2.1.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "mute-stream": "~1.0.0" + } + }, + "read-cmd-shim": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "read-package-json": { + "version": "7.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" + } + }, + "read-package-json-fast": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + } + }, + "readable-stream": { + "version": "4.4.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + } + }, + "retry": { + "version": "0.12.0", + "bundled": true, + "dev": true, + "peer": true + }, + "safe-buffer": { + "version": "5.2.1", + "bundled": true, "dev": true, + "peer": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true, + "peer": true + }, + "semver": { + "version": "7.5.4", + "bundled": true, + "dev": true, + "peer": true, "requires": { - "yallist": "^4.0.0" + "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-fetch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", - "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^5.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "shebang-command": { + "version": "2.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "yallist": "^4.0.0" + "shebang-regex": "^3.0.0" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", - "dev": true, - "requires": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "shebang-regex": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "signal-exit": { + "version": "4.1.0", + "bundled": true, + "dev": true, + "peer": true + }, + "sigstore": { + "version": "2.1.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "yallist": "^4.0.0" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "smart-buffer": { + "version": "4.2.0", + "bundled": true, + "dev": true, + "peer": true + }, + "socks": { + "version": "2.7.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "yallist": "^4.0.0" + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "socks-proxy-agent": { + "version": "8.0.2", + "bundled": true, "dev": true, + "peer": true, "requires": { - "yallist": "^4.0.0" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "spdx-correct": { + "version": "3.2.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "yallist": "^4.0.0" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "spdx-exceptions": { + "version": "2.3.0", + "bundled": true, + "dev": true, + "peer": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "is-plain-object": "^2.0.4" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } - } - } - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "requires": { - "minimist": "^1.2.6" - } - }, - "morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "requires": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + }, + "spdx-license-ids": { + "version": "3.0.16", + "bundled": true, "dev": true, + "peer": true + }, + "ssri": { + "version": "10.0.5", + "bundled": true, + "dev": true, + "peer": true, "requires": { - "ms": "2.0.0" + "minipass": "^7.0.3" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "string_decoder": { + "version": "1.3.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "safe-buffer": "~5.2.0" + } }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "string-width": { + "version": "4.2.3", + "bundled": true, "dev": true, + "peer": true, "requires": { - "ee-first": "1.1.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } } - } - } - }, - "mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", - "dev": true, - "requires": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - } - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", - "dev": true, - "requires": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" - }, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "bundled": true, "dev": true, + "peer": true, "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } } }, - "rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", + "strip-ansi": { + "version": "7.1.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "glob": "^6.0.1" + "ansi-regex": "^6.0.1" } - } - } - }, - "nanoclone": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", - "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", - "dev": true - }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", - "dev": true - }, - "needle": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", - "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", - "dev": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "bundled": true, "dev": true, - "optional": true, + "peer": true, "requires": { - "ms": "^2.1.1" + "ansi-regex": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + } } }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "supports-color": { + "version": "9.4.0", + "bundled": true, "dev": true, - "optional": true, + "peer": true + }, + "tar": { + "version": "6.2.0", + "bundled": true, + "dev": true, + "peer": true, "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "fs-minipass": { + "version": "2.1.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass": { + "version": "5.0.0", + "bundled": true, + "dev": true, + "peer": true + } } - } - } - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "nice-napi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", - "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", - "dev": true, - "optional": true, - "requires": { - "node-addon-api": "^3.0.0", - "node-gyp-build": "^4.2.2" - } - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", - "dev": true - }, - "node-addon-api": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", - "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", - "dev": true - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - }, - "dependencies": { - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true + "text-table": { + "version": "0.2.0", + "bundled": true, + "dev": true, + "peer": true }, - "whatwg-url": { + "tiny-relative-date": { + "version": "1.3.0", + "bundled": true, + "dev": true, + "peer": true + }, + "treeverse": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "peer": true + }, + "tuf-js": { + "version": "2.1.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + } + }, + "unique-filename": { + "version": "3.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "unique-slug": "^4.0.0" + } + }, + "unique-slug": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "peer": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "builtins": "^5.0.0" + } + }, + "walk-up-path": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "wcwidth": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "which": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "isexe": "^3.1.1" + }, + "dependencies": { + "isexe": { + "version": "3.1.1", + "bundled": true, + "dev": true, + "peer": true + } + } + }, + "wide-align": { + "version": "1.1.5", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "9.2.2", + "bundled": true, + "dev": true, + "peer": true + }, + "string-width": { + "version": "5.1.2", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + } } - } - } - }, - "node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true - }, - "node-gyp": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", - "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^11.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "bundled": true, "dev": true, + "peer": true, "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "bundled": true, + "dev": true, + "peer": true + }, + "ansi-styles": { + "version": "4.3.0", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "bundled": true, + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } } }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "write-file-atomic": { + "version": "5.0.1", + "bundled": true, "dev": true, + "peer": true, "requires": { - "brace-expansion": "^1.1.7" + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" } + }, + "yallist": { + "version": "4.0.0", + "bundled": true, + "dev": true, + "peer": true } } }, - "node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", - "dev": true - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, - "nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", - "dev": true, - "requires": { - "abbrev": "^1.0.0" - } - }, - "normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", - "dev": true, - "requires": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true - }, "npm-bundled": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", @@ -45997,47 +55714,394 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "nx-release": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/nx-release/-/nx-release-3.1.6.tgz", + "integrity": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==", + "dev": true, + "requires": { + "@nx/devkit": "16.5.0", + "chalk": "^4.1.2", + "inquirer": "^8.2.5", + "ora": "^5.4.1", + "process": "0.11.10" + }, + "dependencies": { + "@nrwl/devkit": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.0.tgz", + "integrity": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==", + "dev": true, + "requires": { + "@nx/devkit": "16.5.0" + } + }, + "@nx/devkit": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.0.tgz", + "integrity": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.5.0", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.5.3", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dev": true, + "requires": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-exit-leak-free": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", + "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true + }, + "optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -46046,284 +56110,112 @@ "requires": { "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true - }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "requires": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "on-exit-leak-free": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", - "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", "dev": true, "requires": { - "ee-first": "1.1.1" + "arch": "^2.1.0" } }, - "on-headers": { + "os-tmpdir": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - } + "ospath": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "dev": true }, - "opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", "dev": true }, - "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "p-each-series": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", + "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", "dev": true, - "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - } + "peer": true }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "p-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", + "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", "dev": true, + "peer": true, "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "p-map": "^5.1.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", "dev": true, + "peer": true, "requires": { - "color-convert": "^2.0.1" + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", "dev": true, + "peer": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "escape-string-regexp": "5.0.0" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, - "requires": { - "color-name": "~1.1.4" - } + "peer": true }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "peer": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", "dev": true, + "peer": true, "requires": { - "has-flag": "^4.0.0" + "aggregate-error": "^4.0.0" } } } }, - "os-filter-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", - "dev": true, - "requires": { - "arch": "^2.1.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true - }, - "ospath": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", - "dev": true - }, - "p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "dev": true - }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true }, + "p-is-promise": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", + "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", + "dev": true + }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -46362,6 +56254,12 @@ "aggregate-error": "^3.0.0" } }, + "p-reduce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", + "dev": true + }, "p-retry": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", @@ -47356,6 +57254,13 @@ "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", "dev": true }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "peer": true + }, "proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -47498,6 +57403,35 @@ "unpipe": "1.0.0" } }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "peer": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "peer": true + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "peer": true + } + } + }, "react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", @@ -47634,6 +57568,76 @@ } } }, + "read-pkg-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", + "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", + "dev": true, + "requires": { + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dev": true, + "requires": { + "lru-cache": "^10.0.1" + } + }, + "lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true + }, + "normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "dev": true, + "requires": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + } + }, + "parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" + } + }, + "read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" + } + }, + "type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "dev": true + } + } + }, "readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -47700,6 +57704,16 @@ "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==", "dev": true }, + "redeyed": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", + "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", + "dev": true, + "peer": true, + "requires": { + "esprima": "~4.0.0" + } + }, "reflect-metadata": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", @@ -47773,6 +57787,16 @@ "unicode-match-property-value-ecmascript": "^2.1.0" } }, + "registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", + "dev": true, + "peer": true, + "requires": { + "@pnpm/npm-conf": "^2.1.0" + } + }, "regjsparser": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", @@ -47812,6 +57836,84 @@ "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true }, + "replace-json-property": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/replace-json-property/-/replace-json-property-1.9.0.tgz", + "integrity": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "commander": "^2.19.0", + "jsonfile": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "jsonfile": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz", + "integrity": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^0.1.2" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, "request": { "version": "2.88.2", "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", @@ -48175,6 +58277,255 @@ "node-forge": "^1" } }, + "semantic-release": { + "version": "22.0.12", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", + "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", + "dev": true, + "peer": true, + "requires": { + "@semantic-release/commit-analyzer": "^11.0.0", + "@semantic-release/error": "^4.0.0", + "@semantic-release/github": "^9.0.0", + "@semantic-release/npm": "^11.0.0", + "@semantic-release/release-notes-generator": "^12.0.0", + "aggregate-error": "^5.0.0", + "cosmiconfig": "^8.0.0", + "debug": "^4.0.0", + "env-ci": "^10.0.0", + "execa": "^8.0.0", + "figures": "^6.0.0", + "find-versions": "^5.1.0", + "get-stream": "^6.0.0", + "git-log-parser": "^1.2.0", + "hook-std": "^3.0.0", + "hosted-git-info": "^7.0.0", + "import-from-esm": "^1.3.1", + "lodash-es": "^4.17.21", + "marked": "^9.0.0", + "marked-terminal": "^6.0.0", + "micromatch": "^4.0.2", + "p-each-series": "^3.0.0", + "p-reduce": "^3.0.0", + "read-pkg-up": "^11.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.3.2", + "semver-diff": "^4.0.0", + "signale": "^1.2.1", + "yargs": "^17.5.1" + }, + "dependencies": { + "@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "peer": true + }, + "aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "peer": true, + "requires": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, + "clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "peer": true, + "requires": { + "escape-string-regexp": "5.0.0" + } + }, + "cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "peer": true, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + }, + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "peer": true + }, + "execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "peer": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "dependencies": { + "get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "peer": true + } + } + }, + "figures": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", + "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", + "dev": true, + "peer": true, + "requires": { + "is-unicode-supported": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "peer": true + }, + "hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dev": true, + "peer": true, + "requires": { + "lru-cache": "^10.0.1" + } + }, + "human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "peer": true + }, + "indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "peer": true + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "peer": true + }, + "is-unicode-supported": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", + "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", + "dev": true, + "peer": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "peer": true + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "peer": true + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "peer": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "peer": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "p-reduce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", + "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", + "dev": true, + "peer": true + }, + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "peer": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "peer": true + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "peer": true + } + } + }, "semver": { "version": "7.4.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", @@ -48207,6 +58558,16 @@ "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", "dev": true }, + "semver-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", + "dev": true, + "peer": true, + "requires": { + "semver": "^7.3.5" + } + }, "semver-regex": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", @@ -48439,6 +58800,132 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, + "signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", + "dev": true, + "peer": true, + "requires": { + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "peer": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "peer": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dev": true, + "peer": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "peer": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "peer": true + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "peer": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "peer": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "peer": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "peer": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "peer": true + }, + "pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", + "dev": true, + "peer": true, + "requires": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "peer": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "sigstore": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", @@ -48456,6 +58943,16 @@ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, + "skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "dev": true, + "peer": true, + "requires": { + "unicode-emoji-modifier-base": "^1.0.0" + } + }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -48722,6 +59219,13 @@ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "dev": true }, + "spawn-error-forwarder": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", + "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", + "dev": true, + "peer": true + }, "spdx-correct": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", @@ -49116,6 +59620,17 @@ "internal-slot": "^1.0.4" } }, + "stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", + "dev": true, + "peer": true, + "requires": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" + } + }, "stream-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", @@ -49380,248 +59895,307 @@ "requires": { "brace-expansion": "^1.1.7" } - } - } - }, - "stylus-loader": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", - "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", - "dev": true, - "requires": { - "fast-glob": "^3.2.12", - "normalize-path": "^3.0.0" - }, - "dependencies": { - "fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - } - } - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "svgo": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", - "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", - "dev": true, - "requires": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^5.1.0", - "css-tree": "^2.2.1", - "csso": "^5.0.5", - "picocolors": "^1.0.0" - }, - "dependencies": { - "css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - } - }, - "dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "requires": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - } - }, - "domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dev": true, - "requires": { - "domelementtype": "^2.3.0" - } - }, - "domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dev": true, - "requires": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - } + } + } + }, + "stylus-loader": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", + "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", + "dev": true, + "requires": { + "fast-glob": "^3.2.12", + "normalize-path": "^3.0.0" + }, + "dependencies": { + "fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + } + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-hyperlinks": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", + "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "dev": true, + "peer": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "peer": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "svgo": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", + "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", + "dev": true, + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.2.1", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "dependencies": { + "css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + } + }, + "dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + } + }, + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0" + } + }, + "domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "requires": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + } + }, + "entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true + } + } + }, + "symbol-observable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "dev": true + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } }, - "entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true - } - } - }, - "symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", - "dev": true - }, - "symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - }, - "tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } + "glob": "^7.1.3" } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", "dev": true, - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } + "peer": true }, - "temp": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", - "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "tempy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", "dev": true, + "peer": true, "requires": { - "mkdirp": "^0.5.1", - "rimraf": "~2.6.2" + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" }, "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } + "peer": true }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "requires": { - "glob": "^7.1.3" - } + "peer": true } } }, @@ -49743,6 +60317,12 @@ } } }, + "text-extensions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", + "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", + "dev": true + }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -49880,6 +60460,13 @@ "punycode": "^2.1.1" } }, + "traverse": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", + "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "dev": true, + "peer": true + }, "tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", @@ -50243,6 +60830,13 @@ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true }, + "unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "dev": true, + "peer": true + }, "unicode-match-property-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", @@ -50265,6 +60859,12 @@ "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true }, + "unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true + }, "union": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", @@ -50292,6 +60892,23 @@ "imurmurhash": "^0.1.4" } }, + "unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "peer": true, + "requires": { + "crypto-random-string": "^4.0.0" + } + }, + "universal-user-agent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "dev": true, + "peer": true + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", diff --git a/package.json b/package.json index f5109d0..141f84c 100644 --- a/package.json +++ b/package.json @@ -70,6 +70,11 @@ "@nx/web": "16.3.2", "@nx/workspace": "16.1.1", "@schematics/angular": "~16.0.0", + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/commit-analyzer": "^11.1.0", + "@semantic-release/exec": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@semantic-release/release-notes-generator": "^12.1.0", "@swc-node/register": "~1.4.2", "@swc/cli": "~0.1.62", "@swc/core": "~1.3.51", @@ -78,6 +83,7 @@ "@types/node": "18.7.1", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", + "conventional-changelog-conventionalcommits": "^7.0.2", "cypress": "^12.11.0", "eslint": "~8.15.0", "eslint-config-prettier": "8.1.0", @@ -96,7 +102,9 @@ "markdown-toc": "^1.2.0", "npm-run-all": "^4.1.5", "nx": "16.1.1", + "nx-release": "^3.1.6", "prettier": "^2.6.2", + "replace-json-property": "^1.9.0", "source-map-explorer": "^2.5.3", "ts-jest": "^29.1.0", "ts-node": "10.9.1", diff --git a/release.config.js b/release.config.js new file mode 100644 index 0000000..9364ac4 --- /dev/null +++ b/release.config.js @@ -0,0 +1,41 @@ +module.exports = { + branches: ['main'], + preset: 'conventionalcommits', + presetConfig: { + types: [ + { type: 'feat', section: 'Features' }, + { type: 'fix', section: 'Bug Fixes' }, + { type: 'chore', section: 'Chores' }, + { type: 'docs', hidden: true }, + { type: 'style', hidden: true }, + { type: 'refactor', section: 'Refactoring' }, + { type: 'perf', hidden: true }, + { type: 'test', hidden: true }, + ], + }, + releaseRules: [{ type: 'refactor', release: 'patch' }], + plugins: [ + '@semantic-release/commit-analyzer', + '@semantic-release/release-notes-generator', + [ + '@semantic-release/changelog', + { + changelogFile: `./CHANGELOG.md`, + }, + ], + [ + '@semantic-release/exec', + { + prepareCmd: `VERSION=\${nextRelease.version} npx nx run-many -t release && VERSION=\${nextRelease.version} npx -p replace-json-property rjp ./package.json version \${nextRelease.version}`, + }, + ], + [ + '@semantic-release/git', + { + assets: [`libs/**/package.json`, `package.json`, `CHANGELOG.md`], + message: + 'chore(release): -v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}', + }, + ], + ], +}; From 73356f6a933c678478d2ab32d6d321b2f2eedbea Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 16:05:03 +0100 Subject: [PATCH 02/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20remove=20lint=20t?= =?UTF-8?q?emporarly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e1a4c6..d4960a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,6 @@ jobs: - uses: nrwl/nx-set-shas@v3 - name: Install deps run: npm ci - - name: Lint affected - run: npx nx affected -t lint - name: Test affected run: npx nx affected -t test --configuration=ci - name: Build affected From c072afcda791e91201b6dbffe0b8e64d5e9ba467 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 16:12:11 +0100 Subject: [PATCH 03/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20adjust=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../validators/src/generators/validate/generator.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts b/libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts index a5589df..b36d115 100644 --- a/libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts +++ b/libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts @@ -3,7 +3,7 @@ import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing'; import generator from './generator'; import { ValidateGeneratorSchema } from './schema'; -import * as configHelper from '../shared/config/config.helper'; +import * as configHelper from '@ax/tooling/nx-plugin/config'; // sanity tests, for generators it's better to keep it open and flexible to allow easy extension // and adjustment of the logic in the future From 2976b6cd372ab3d8eba9e9e3c95d8f9d73750d36 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:03:09 +0100 Subject: [PATCH 04/10] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20improve=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .ax.config.json | 11 + .eslintrc.json | 4 + .../tooling/nx-plugin/generators/package.json | 2 +- .../src/generators/init/generator.ts | 1 + .../src/generators/lib/types/model.ts | 2 +- .../src/generators/lib/types/pattern.ts | 2 - .../src/generators/move/generator.ts | 4 +- .../generators/shared/prompts/scope.prompt.ts | 2 +- .../tooling/nx-plugin/validators/package.json | 2 +- .../src/generators/validate/generator.ts | 4 +- package-lock.json | 47872 +++++++--------- package.json | 11 +- 12 files changed, 20472 insertions(+), 27445 deletions(-) create mode 100644 .ax.config.json diff --git a/.ax.config.json b/.ax.config.json new file mode 100644 index 0000000..bc8199b --- /dev/null +++ b/.ax.config.json @@ -0,0 +1,11 @@ +{ + "scopes": [ + "sales", + "supply", + "production", + "store-app", + "shared" + ], + "prefix": "my-org", + "appSuffix": "app" +} diff --git a/.eslintrc.json b/.eslintrc.json index 9d0b1c0..7b2bdd9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -13,6 +13,10 @@ "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ + { + "sourceTag": "scope:store-app", + "onlyDependOnLibsWithTags": ["scope:shared", "scope:store-app"] + }, { "sourceTag": "scope:shared", "onlyDependOnLibsWithTags": ["scope:shared"] diff --git a/libs/tooling/nx-plugin/generators/package.json b/libs/tooling/nx-plugin/generators/package.json index 27681bc..27808f0 100644 --- a/libs/tooling/nx-plugin/generators/package.json +++ b/libs/tooling/nx-plugin/generators/package.json @@ -1,7 +1,7 @@ { "name": "@ax/nx-plugin-generators", "version": "0.0.1", - "type": "commonjs", + "type": "module", "generators": "./generators.json", "publishConfig": { "access": "public" diff --git a/libs/tooling/nx-plugin/generators/src/generators/init/generator.ts b/libs/tooling/nx-plugin/generators/src/generators/init/generator.ts index 3766b91..5d88cee 100644 --- a/libs/tooling/nx-plugin/generators/src/generators/init/generator.ts +++ b/libs/tooling/nx-plugin/generators/src/generators/init/generator.ts @@ -6,6 +6,7 @@ import {createAndGetConfigFileIfNonExisting} from "@ax/tooling/nx-plugin/config" import {InitSchema} from './schema'; export default async function init(tree: Tree, schema: InitSchema) { + console.log(chalk.green('tester')); const {scopes, prefix, appSuffix} = schema; await createAndGetConfigFileIfNonExisting(tree, { scopes, diff --git a/libs/tooling/nx-plugin/generators/src/generators/lib/types/model.ts b/libs/tooling/nx-plugin/generators/src/generators/lib/types/model.ts index a6ed3de..01a9f0a 100644 --- a/libs/tooling/nx-plugin/generators/src/generators/lib/types/model.ts +++ b/libs/tooling/nx-plugin/generators/src/generators/lib/types/model.ts @@ -4,7 +4,7 @@ import { libraryGenerator } from '@nx/js'; import { LibTypeGenerator, NormalizedSchema } from '../generator.interface'; -export function modelTypeFactory(options: NormalizedSchema): LibTypeGenerator { +export function modelTypeFactory(): LibTypeGenerator { return { libGenerator: libraryGenerator, libDefaultOptions: { diff --git a/libs/tooling/nx-plugin/generators/src/generators/lib/types/pattern.ts b/libs/tooling/nx-plugin/generators/src/generators/lib/types/pattern.ts index fd7ea7c..344b053 100644 --- a/libs/tooling/nx-plugin/generators/src/generators/lib/types/pattern.ts +++ b/libs/tooling/nx-plugin/generators/src/generators/lib/types/pattern.ts @@ -6,9 +6,7 @@ import { NormalizedSchema, LibTypeGenerator } from '../generator.interface'; import { extendEslintJson } from './helpers/eslint'; export function patternTypeFactory( - options: NormalizedSchema ): LibTypeGenerator { - const { scope } = options; return { libGenerator: libraryGenerator, libDefaultOptions: { diff --git a/libs/tooling/nx-plugin/generators/src/generators/move/generator.ts b/libs/tooling/nx-plugin/generators/src/generators/move/generator.ts index eb0d736..012a0f7 100644 --- a/libs/tooling/nx-plugin/generators/src/generators/move/generator.ts +++ b/libs/tooling/nx-plugin/generators/src/generators/move/generator.ts @@ -2,7 +2,7 @@ import { moveGenerator } from '@nrwl/workspace/generators'; import { formatFiles, Tree } from '@nrwl/devkit'; import { validate } from '@ax/tooling/nx-plugin/validators'; import inquirer from 'inquirer'; -import blue from 'chalk'; +import * as chalk from 'chalk'; import {addScope} from "@ax/tooling/nx-plugin/config"; @@ -56,7 +56,7 @@ export default async function move(tree: Tree, schema: MoveSchema) { const changeName = await inquirer.prompt({ type: 'list', name: 'yes', - message: `Do you want to keep ${blue( + message: `Do you want to keep ${chalk.default.blue( name )} as name, or do you want to change the name?`, choices: [ diff --git a/libs/tooling/nx-plugin/generators/src/generators/shared/prompts/scope.prompt.ts b/libs/tooling/nx-plugin/generators/src/generators/shared/prompts/scope.prompt.ts index 3ce8b29..ec160c6 100644 --- a/libs/tooling/nx-plugin/generators/src/generators/shared/prompts/scope.prompt.ts +++ b/libs/tooling/nx-plugin/generators/src/generators/shared/prompts/scope.prompt.ts @@ -1,7 +1,7 @@ import * as inquirer from 'inquirer'; import { Tree } from '@nrwl/devkit'; -import { getScopes } from '../config/config.helper'; +import {getScopes} from "@ax/tooling/nx-plugin/config"; export async function scopePrompt( tree: Tree, diff --git a/libs/tooling/nx-plugin/validators/package.json b/libs/tooling/nx-plugin/validators/package.json index 51131cd..2b8178e 100644 --- a/libs/tooling/nx-plugin/validators/package.json +++ b/libs/tooling/nx-plugin/validators/package.json @@ -1,7 +1,7 @@ { "name": "@ax/nx-plugin-validators", "version": "0.0.1", - "type": "commonjs", + "type": "module", "generators": "./generators.json", "dependencies": { "chalk": "^5.3.0" diff --git a/libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts b/libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts index 1763101..e0c3e73 100644 --- a/libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts +++ b/libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts @@ -1,5 +1,6 @@ import chalk from 'chalk'; -import * as path from 'path'; + +import path from 'path'; import { formatFiles, readJson, Tree, updateJson } from '@nx/devkit'; import { getScopes } from '@ax/tooling/nx-plugin/config'; @@ -20,6 +21,7 @@ export default async function validate( tree: Tree, schema: ValidateGeneratorSchema ) { + console.log(chalk.green('test')); const { fix } = schema; const projectJsonPaths = [ ...findFiles(tree, './apps', 'project.json'), diff --git a/package-lock.json b/package-lock.json index 06db705..1e0f9d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "@angular/router": "~16.0.0", "@ngrx/store": "^16.0.1", "@types/inquirer": "^9.0.3", - "chalk": "^5.3.0", + "chalk": "^4.1.2", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.13.0" @@ -36,14 +36,14 @@ "@angular/compiler-cli": "~16.0.0", "@angular/language-service": "~16.0.0", "@nx/angular": "^16.1.4", - "@nx/cypress": "16.3.2", + "@nx/cypress": "16.4.2", "@nx/devkit": "^16.1.3", "@nx/eslint-plugin": "16.1.1", - "@nx/jest": "16.3.2", - "@nx/js": "16.3.2", + "@nx/jest": "16.4.2", + "@nx/js": "16.4.2", "@nx/linter": "16.1.1", "@nx/plugin": "^16.1.2", - "@nx/web": "16.3.2", + "@nx/web": "16.4.2", "@nx/workspace": "16.1.1", "@schematics/angular": "~16.0.0", "@semantic-release/changelog": "^6.0.3", @@ -253,55 +253,6 @@ } } }, - "node_modules/@angular-devkit/build-angular/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@angular-devkit/build-angular/node_modules/inquirer": { "version": "8.2.4", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", @@ -328,18 +279,6 @@ "node": ">=12.0.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@angular-devkit/build-angular/node_modules/tslib": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", @@ -539,55 +478,6 @@ "yarn": ">= 1.13.0" } }, - "node_modules/@angular/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@angular/cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@angular/cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@angular/cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@angular/cli/node_modules/inquirer": { "version": "8.2.4", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", @@ -614,18 +504,6 @@ "node": ">=12.0.0" } }, - "node_modules/@angular/cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@angular/common": { "version": "16.0.6", "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", @@ -3699,67 +3577,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/core": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", @@ -3807,67 +3624,6 @@ } } }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/environment": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", @@ -3983,55 +3739,6 @@ } } }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@jest/reporters/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -4064,18 +3771,6 @@ "node": "*" } }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/schemas": { "version": "29.4.3", "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", @@ -4158,73 +3853,12 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/types": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", @@ -4242,67 +3876,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", @@ -4600,12 +4173,12 @@ } }, "node_modules/@nrwl/cypress": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.3.2.tgz", - "integrity": "sha512-f1RWC4jFe0KNDKRs8FY8gn2ik0+DOGsw/HG2oz5Ck/sT1yPwexLZ/+I854UuKs2Gtw5/B/l/7hcis+/MsgXe2Q==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", + "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", "dev": true, "dependencies": { - "@nx/cypress": "16.3.2" + "@nx/cypress": "16.4.2" } }, "node_modules/@nrwl/devkit": { @@ -4627,21 +4200,21 @@ } }, "node_modules/@nrwl/jest": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.3.2.tgz", - "integrity": "sha512-vhwrgjIn1XG3zDSlc6CSfCKBtgDEYQUWG69MdfaqrNInmmsiPkspv7eM99Xh8MGN5HMC2Epzy2todD3J2zZZuQ==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", "dev": true, "dependencies": { - "@nx/jest": "16.3.2" + "@nx/jest": "16.4.2" } }, "node_modules/@nrwl/js": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.3.2.tgz", - "integrity": "sha512-UMmdA4vXy2/VWNMlpBDruT9XwGmLw/MpUaKoN2KLkai/fYN6MvB3mabc9WQ8qsNvDWshmOJ6TqAHReR25BjugQ==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", + "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", "dev": true, "dependencies": { - "@nx/js": "16.3.2" + "@nx/js": "16.4.2" } }, "node_modules/@nrwl/linter": { @@ -4675,12 +4248,12 @@ } }, "node_modules/@nrwl/web": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.3.2.tgz", - "integrity": "sha512-UJotencL5g+jyozfVPLevbzWoR10Mx/AURzGNzzGmddLbmXJlsHwnnKHtzGzc+QFG10jYMzk1WZSyBo/ZPrN+Q==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.4.2.tgz", + "integrity": "sha512-WgD6G+Cl54/RywzYTnphQCQuNdDrGGdivcyd3AZey9yA1Avvi/CI5+mU75pQAMrqsb2oxylZVk6lnN5iLJcAwA==", "dev": true, "dependencies": { - "@nx/web": "16.3.2" + "@nx/web": "16.4.2" } }, "node_modules/@nrwl/webpack": { @@ -4745,33 +4318,6 @@ } } }, - "node_modules/@nx/angular/node_modules/@nrwl/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", - "dev": true, - "dependencies": { - "@nx/cypress": "16.4.2" - } - }, - "node_modules/@nx/angular/node_modules/@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "dependencies": { - "@nx/jest": "16.4.2" - } - }, - "node_modules/@nx/angular/node_modules/@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "dependencies": { - "@nx/js": "16.4.2" - } - }, "node_modules/@nx/angular/node_modules/@nrwl/linter": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", @@ -4802,92 +4348,6 @@ "@nx/workspace": "16.4.2" } }, - "node_modules/@nx/angular/node_modules/@nx/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", - "dev": true, - "dependencies": { - "@nrwl/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.5.3" - }, - "peerDependencies": { - "cypress": ">= 3 < 13" - }, - "peerDependenciesMeta": { - "cypress": { - "optional": true - } - } - }, - "node_modules/@nx/angular/node_modules/@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", - "dev": true, - "dependencies": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - } - }, - "node_modules/@nx/angular/node_modules/@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "dependencies": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "verdaccio": "^5.0.4" - }, - "peerDependenciesMeta": { - "verdaccio": { - "optional": true - } - } - }, "node_modules/@nx/angular/node_modules/@nx/linter": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", @@ -5095,61 +4555,12 @@ "node": ">=14.15.0" } }, - "node_modules/@nx/angular/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/@nx/angular/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@nx/angular/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nx/angular/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nx/angular/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@nx/angular/node_modules/glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -5288,37 +4699,6 @@ "node": ">=10" } }, - "node_modules/@nx/angular/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@nx/angular/node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/@nx/angular/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@nx/angular/node_modules/webpack-merge": { "version": "5.7.3", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", @@ -5339,19 +4719,19 @@ "dev": true }, "node_modules/@nx/cypress": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.3.2.tgz", - "integrity": "sha512-XB4CvhTv154GHp/2+lSoCigPKZK1YoRyIZWIHJdBmpQUocLJkSqp+H8KQaU/0gH3Xbz5NxGXbQMFDWzkKxIGPg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", + "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", "dev": true, "dependencies": { - "@nrwl/cypress": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@nx/linter": "16.3.2", + "@nrwl/cypress": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", "@phenomnomnominal/tsquery": "~5.0.1", "detect-port": "^1.5.1", "dotenv": "~10.0.0", - "semver": "7.3.4" + "semver": "7.5.3" }, "peerDependencies": { "cypress": ">= 3 < 13" @@ -5362,50 +4742,24 @@ } } }, - "node_modules/@nx/cypress/node_modules/@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "dependencies": { - "@nx/devkit": "16.3.2" - } - }, "node_modules/@nx/cypress/node_modules/@nrwl/linter": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.3.2.tgz", - "integrity": "sha512-sUDQNlmRIGQnhdDmpQkJgpF9LZWKBoqXr2g9Y4yq0QlpTamxTbx8/GxMICotA52kayEx1cKbU1xvjJWPchSrlw==", - "dev": true, - "dependencies": { - "@nx/linter": "16.3.2" - } - }, - "node_modules/@nx/cypress/node_modules/@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", "dev": true, "dependencies": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "nx": ">= 15 <= 17" + "@nx/linter": "16.4.2" } }, "node_modules/@nx/cypress/node_modules/@nx/linter": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.3.2.tgz", - "integrity": "sha512-hVCU6ZIMd+yTMLrC3PbjaHuD3yU+sB/lABTaWuUx2klT0cqKhiTp0KnDLcFWtzQmnNtGEaUjfPKxvA92xon0CA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", "dev": true, "dependencies": { - "@nrwl/linter": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", + "@nrwl/linter": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", "@phenomnomnominal/tsquery": "~5.0.1", "tmp": "~0.2.1", "tslib": "^2.3.0" @@ -5432,9 +4786,9 @@ } }, "node_modules/@nx/cypress/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -5593,55 +4947,6 @@ "tslib": "^2.3.0" } }, - "node_modules/@nx/eslint-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@nx/eslint-plugin/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -5688,18 +4993,6 @@ "source-map": "^0.6.0" } }, - "node_modules/@nx/eslint-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@nx/eslint-plugin/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -5707,16 +5000,16 @@ "dev": true }, "node_modules/@nx/jest": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.3.2.tgz", - "integrity": "sha512-aO8Rc+wwSXLh1jJYd2cxOT5R9BQfqjAXWZOPcvAQQonFNNfwMHrw0+YsqjWgiFtFrxzSX5RrhzVG44cOWpAdqQ==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", "dev": true, "dependencies": { "@jest/reporters": "^29.4.1", "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", + "@nrwl/jest": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", "@phenomnomnominal/tsquery": "~5.0.1", "chalk": "^4.1.0", "dotenv": "~10.0.0", @@ -5728,130 +5021,10 @@ "tslib": "^2.3.0" } }, - "node_modules/@nx/jest/node_modules/@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "dependencies": { - "@nx/devkit": "16.3.2" - } - }, - "node_modules/@nx/jest/node_modules/@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "dependencies": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "nx": ">= 15 <= 17" - } - }, - "node_modules/@nx/jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nx/jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nx/jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nx/jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@nx/jest/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/jest/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@nx/jest/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@nx/js": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.3.2.tgz", - "integrity": "sha512-bumLGMduNm221Sh3/wkEMEkJOC1kTlqmpx6wamDSsPlAFq0ePgoaNJjoYqC9XH7n7wXtgy9bgKhHJPnek8NKow==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", + "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", "dev": true, "dependencies": { "@babel/core": "^7.15.0", @@ -5861,20 +5034,21 @@ "@babel/preset-env": "^7.15.0", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/workspace": "16.3.2", + "@nrwl/js": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/workspace": "16.4.2", "@phenomnomnominal/tsquery": "~5.0.1", "babel-plugin-const-enum": "^1.0.1", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-typescript-metadata": "^0.3.1", "chalk": "^4.1.0", + "detect-port": "^1.5.1", "fast-glob": "3.2.7", "fs-extra": "^11.1.0", "ignore": "^5.0.4", "js-tokens": "^4.0.0", "minimatch": "3.0.5", - "semver": "7.3.4", + "semver": "7.5.3", "source-map-support": "0.5.19", "tslib": "^2.3.0" }, @@ -5887,57 +5061,31 @@ } } }, - "node_modules/@nx/js/node_modules/@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "dependencies": { - "@nx/devkit": "16.3.2" - } - }, "node_modules/@nx/js/node_modules/@nrwl/tao": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.3.2.tgz", - "integrity": "sha512-2Kg7dtv6JcQagCZPSq+okceI81NqmXGGgbKWqS7sOfdmp1otxS9uiUFNXw+Pdtnw38mdRviMtSOXScntu4sUKg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", + "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", "dev": true, "dependencies": { - "nx": "16.3.2" + "nx": "16.4.2" }, "bin": { "tao": "index.js" } }, "node_modules/@nx/js/node_modules/@nrwl/workspace": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.3.2.tgz", - "integrity": "sha512-ORVzEEJIMOFYEOtOQHLU7N4vT4mYZ/JzKiwHZrHkCaVhgkiGBLoX3tOwVZjafKaa/24cGISv0J7WRtnfRKl2cA==", - "dev": true, - "dependencies": { - "@nx/workspace": "16.3.2" - } - }, - "node_modules/@nx/js/node_modules/@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", "dev": true, "dependencies": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "nx": ">= 15 <= 17" + "@nx/workspace": "16.4.2" } }, "node_modules/@nx/js/node_modules/@nx/nx-darwin-arm64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.3.2.tgz", - "integrity": "sha512-YfYVNfsJBzBcBnJUU4AcA6A4QMkgnVlETfp4KGL36Otq542mRY1ISGHdox63ocI5AKh5gay5AaGcR4wR9PU9Vg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", + "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", "cpu": [ "arm64" ], @@ -5951,9 +5099,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-darwin-x64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.3.2.tgz", - "integrity": "sha512-bJtpozz0zSRVRrcQ76GrlT3TWEGTymLYWrVG51bH5KZ46t6/a4EQBI3uL3vubMmOZ0jR4ywybOcPBBhxmBJ68w==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", + "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", "cpu": [ "x64" ], @@ -5966,26 +5114,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-freebsd-x64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.3.2.tgz", - "integrity": "sha512-ZvufI0bWqT67nLbBo6ejrIGxypdoedRQTP/tudWbs/4isvxLe1uVku1BfKCTQUsJG367SqNOU1H5kzI/MRr3ow==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10" - } - }, "node_modules/@nx/js/node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.3.2.tgz", - "integrity": "sha512-IQL4kxdiZLvifar7+SIum3glRuVsxtE0dL8RvteSDXrxDQnaTUrjILC+VGhalRmk7ngBbGKNrhWOeeL7390CzQ==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", + "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", "cpu": [ "arm" ], @@ -5999,9 +5131,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-linux-arm64-gnu": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.3.2.tgz", - "integrity": "sha512-f6AWgPVu3mfUEoOBa0rY2/7QY0Or9eR0KtLFpcPh7RUpxPw2EXzIbjD/0RGipdpspSrgiMKbZpsUjo6mXBFsQA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", + "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", "cpu": [ "arm64" ], @@ -6015,9 +5147,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-linux-arm64-musl": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.3.2.tgz", - "integrity": "sha512-AvrWcYz7021E3b5P9/0i26p60XMZfw86Epks51L6AhlflarlOH4AcEChc7APMtb1ELAIbDWx2S6oIDRbQ7rtVA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", + "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", "cpu": [ "arm64" ], @@ -6031,9 +5163,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-linux-x64-gnu": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.3.2.tgz", - "integrity": "sha512-K2pWGAcbCNm6b7UZI9cc8z4Rb540QcuepBXD7akjPjWerzXriT6VCn4i9mVKsCg2mwSfknTJJVJ1PZwJSmTl/Q==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", + "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", "cpu": [ "x64" ], @@ -6047,9 +5179,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-linux-x64-musl": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.3.2.tgz", - "integrity": "sha512-sY1QDuQlqyYiRPJZanrtV07tU0DOXiCrWb0pDsGiO0qHuUSmW5Vw17GWEY4z3rt0/5U8fJ+/9WQrneviOmsOKg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", + "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", "cpu": [ "x64" ], @@ -6063,9 +5195,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-win32-arm64-msvc": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.3.2.tgz", - "integrity": "sha512-wBfohT2hjrLKn9WFHvG0MFVk7uYhgYNiptnTLdTouziHgFyZ08vyl7XYBq55BwHPMQ5iswVoEfjn/5ZBfCPscg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", + "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", "cpu": [ "arm64" ], @@ -6079,9 +5211,9 @@ } }, "node_modules/@nx/js/node_modules/@nx/nx-win32-x64-msvc": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.3.2.tgz", - "integrity": "sha512-QC0sWrfQm0/WdvvM//7UAgm+otbak6bznZ0zawTeqmLBh1hLjNeweyzSVKQEtZtlzDMKpzCVuuwkJq+VKBLvmw==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", + "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", "cpu": [ "x64" ], @@ -6095,13 +5227,13 @@ } }, "node_modules/@nx/js/node_modules/@nx/workspace": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.3.2.tgz", - "integrity": "sha512-gFrJEv3+Jn2leu3RKFTakPHY8okI8hjOg8RO4OWA2ZemFXRyh9oIm/xsCsOyqYlGt06eqV2mD3GUun/05z1nhg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", "dev": true, "dependencies": { - "@nrwl/workspace": "16.3.2", - "@nx/devkit": "16.3.2", + "@nrwl/workspace": "16.4.2", + "@nx/devkit": "16.4.2", "@parcel/watcher": "2.0.4", "chalk": "^4.1.0", "chokidar": "^3.5.1", @@ -6113,7 +5245,7 @@ "ignore": "^5.0.4", "minimatch": "3.0.5", "npm-run-path": "^4.0.1", - "nx": "16.3.2", + "nx": "16.4.2", "open": "^8.4.0", "rxjs": "^7.8.0", "tmp": "~0.2.1", @@ -6122,19 +5254,17 @@ "yargs-parser": "21.1.1" } }, - "node_modules/@nx/js/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@nx/js/node_modules/@yarnpkg/parsers": { + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=14.15.0" } }, "node_modules/@nx/js/node_modules/argparse": { @@ -6143,40 +5273,6 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@nx/js/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nx/js/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nx/js/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@nx/js/node_modules/glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -6194,18 +5290,6 @@ "node": "*" } }, - "node_modules/@nx/js/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@nx/js/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -6219,16 +5303,16 @@ } }, "node_modules/@nx/js/node_modules/nx": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.3.2.tgz", - "integrity": "sha512-fOzCVL7qoCJAcYTJwvJ9j+PSaL791ro4AICWuLxaphZsp2jcLoav4Ev7ONPks2Wlkt8FS9bee3nqQ3w1ya36Og==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", + "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", "dev": true, "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "16.3.2", + "@nrwl/tao": "16.4.2", "@parcel/watcher": "2.0.4", "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", + "@yarnpkg/parsers": "3.0.0-rc.46", "@zkochan/js-yaml": "0.0.6", "axios": "^1.0.0", "chalk": "^4.1.0", @@ -6249,7 +5333,7 @@ "minimatch": "3.0.5", "npm-run-path": "^4.0.1", "open": "^8.4.0", - "semver": "7.3.4", + "semver": "7.5.3", "string-width": "^4.2.3", "strong-log-transformer": "^2.1.0", "tar-stream": "~2.2.0", @@ -6264,16 +5348,16 @@ "nx": "bin/nx.js" }, "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.3.2", - "@nx/nx-darwin-x64": "16.3.2", - "@nx/nx-freebsd-x64": "16.3.2", - "@nx/nx-linux-arm-gnueabihf": "16.3.2", - "@nx/nx-linux-arm64-gnu": "16.3.2", - "@nx/nx-linux-arm64-musl": "16.3.2", - "@nx/nx-linux-x64-gnu": "16.3.2", - "@nx/nx-linux-x64-musl": "16.3.2", - "@nx/nx-win32-arm64-msvc": "16.3.2", - "@nx/nx-win32-x64-msvc": "16.3.2" + "@nx/nx-darwin-arm64": "16.4.2", + "@nx/nx-darwin-x64": "16.4.2", + "@nx/nx-freebsd-x64": "16.4.2", + "@nx/nx-linux-arm-gnueabihf": "16.4.2", + "@nx/nx-linux-arm64-gnu": "16.4.2", + "@nx/nx-linux-arm64-musl": "16.4.2", + "@nx/nx-linux-x64-gnu": "16.4.2", + "@nx/nx-linux-x64-musl": "16.4.2", + "@nx/nx-win32-arm64-msvc": "16.4.2", + "@nx/nx-win32-x64-msvc": "16.4.2" }, "peerDependencies": { "@swc-node/register": "^1.4.2", @@ -6288,10 +5372,22 @@ } } }, + "node_modules/@nx/js/node_modules/nx/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@nx/js/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -6322,18 +5418,6 @@ "source-map": "^0.6.0" } }, - "node_modules/@nx/js/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@nx/js/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -6428,55 +5512,6 @@ "tslib": "^2.3.0" } }, - "node_modules/@nx/linter/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nx/linter/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nx/linter/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nx/linter/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@nx/linter/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -6523,18 +5558,6 @@ "source-map": "^0.6.0" } }, - "node_modules/@nx/linter/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@nx/linter/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -6718,24 +5741,6 @@ "tslib": "^2.3.0" } }, - "node_modules/@nx/plugin/node_modules/@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "dependencies": { - "@nx/jest": "16.4.2" - } - }, - "node_modules/@nx/plugin/node_modules/@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "dependencies": { - "@nx/js": "16.4.2" - } - }, "node_modules/@nx/plugin/node_modules/@nrwl/linter": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", @@ -6745,89 +5750,6 @@ "@nx/linter": "16.4.2" } }, - "node_modules/@nx/plugin/node_modules/@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "dependencies": { - "nx": "16.4.2" - }, - "bin": { - "tao": "index.js" - } - }, - "node_modules/@nx/plugin/node_modules/@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "dependencies": { - "@nx/workspace": "16.4.2" - } - }, - "node_modules/@nx/plugin/node_modules/@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", - "dev": true, - "dependencies": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - } - }, - "node_modules/@nx/plugin/node_modules/@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "dependencies": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "verdaccio": "^5.0.4" - }, - "peerDependenciesMeta": { - "verdaccio": { - "optional": true - } - } - }, "node_modules/@nx/plugin/node_modules/@nx/linter": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", @@ -6850,361 +5772,403 @@ } } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/plugin/node_modules/@nx/nx-darwin-x64": { + "node_modules/@nx/web": { "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "cpu": [ - "x64" - ], + "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.4.2.tgz", + "integrity": "sha512-rjARmJESboplfa3kI0ncUMBKJGJO1cV9Rsp1HzIeAAq7Zo614lPnUA/lE6Q+lD+GbfJu0y5t7ENmQv2E/61Rxw==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" + "dependencies": { + "@nrwl/web": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "detect-port": "^1.5.1", + "http-server": "^14.1.0", + "ignore": "^5.0.4", + "tslib": "^2.3.0" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-linux-arm-gnueabihf": { + "node_modules/@nx/webpack": { "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "cpu": [ - "arm" - ], + "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", + "integrity": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" + "dependencies": { + "@babel/core": "^7.15.0", + "@nrwl/webpack": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "autoprefixer": "^10.4.9", + "babel-loader": "^9.1.2", + "browserslist": "^4.21.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "copy-webpack-plugin": "^10.2.4", + "css-loader": "^6.4.0", + "css-minimizer-webpack-plugin": "^5.0.0", + "dotenv": "~10.0.0", + "fork-ts-checker-webpack-plugin": "7.2.13", + "ignore": "^5.0.4", + "less": "4.1.3", + "less-loader": "11.1.0", + "license-webpack-plugin": "^4.0.2", + "loader-utils": "^2.0.3", + "mini-css-extract-plugin": "~2.4.7", + "parse5": "4.0.0", + "postcss": "^8.4.14", + "postcss-import": "~14.1.0", + "postcss-loader": "^6.1.1", + "rxjs": "^7.8.0", + "sass": "^1.42.1", + "sass-loader": "^12.2.0", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.0", + "stylus": "^0.59.0", + "stylus-loader": "^7.1.0", + "terser-webpack-plugin": "^5.3.3", + "ts-loader": "^9.3.1", + "ts-node": "10.9.1", + "tsconfig-paths": "^4.1.2", + "tsconfig-paths-webpack-plugin": "4.0.0", + "tslib": "^2.3.0", + "webpack": "^5.80.0", + "webpack-dev-server": "^4.9.3", + "webpack-node-externals": "^3.0.0", + "webpack-subresource-integrity": "^5.1.0" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "cpu": [ - "arm64" - ], + "node_modules/@nx/webpack/node_modules/array-union": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">= 10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "cpu": [ - "arm64" - ], + "node_modules/@nx/webpack/node_modules/copy-webpack-plugin": { + "version": "10.2.4", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", + "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^12.0.2", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + }, "engines": { - "node": ">= 10" + "node": ">= 12.20.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "cpu": [ - "x64" - ], + "node_modules/@nx/webpack/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, "engines": { - "node": ">= 10" + "node": ">=10" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "cpu": [ - "x64" - ], + "node_modules/@nx/webpack/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">= 10" + "node": ">=10.13.0" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "cpu": [ - "arm64" - ], + "node_modules/@nx/webpack/node_modules/globby": { + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "array-union": "^3.0.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, "engines": { - "node": ">= 10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/plugin/node_modules/@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "cpu": [ - "x64" - ], + "node_modules/@nx/webpack/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, "engines": { - "node": ">= 10" + "node": ">=0.10.0" } }, - "node_modules/@nx/plugin/node_modules/@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "node_modules/@nx/webpack/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" } }, - "node_modules/@nx/plugin/node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", + "node_modules/@nx/webpack/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=14.15.0" + "node": ">=10" } }, - "node_modules/@nx/plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@nx/webpack/node_modules/mini-css-extract-plugin": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", + "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/@nx/plugin/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/@nx/webpack/node_modules/parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", "dev": true }, - "node_modules/@nx/plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@nx/webpack/node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" }, "engines": { - "node": ">=10" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/@nx/plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@nx/webpack/node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "klona": "^2.0.4", + "neo-async": "^2.6.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "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 + } } }, - "node_modules/@nx/plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@nx/plugin/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "node_modules/@nx/webpack/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/@nx/plugin/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@nx/webpack/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/plugin/node_modules/nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", + "node_modules/@nx/webpack/node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "dotenv": "~10.0.0", - "enquirer": "~2.3.6", - "fast-glob": "3.2.7", + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/@nx/webpack/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@nx/workspace": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.1.1.tgz", + "integrity": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==", + "dev": true, + "dependencies": { + "@nrwl/workspace": "16.1.1", + "@nx/devkit": "16.1.1", + "@parcel/watcher": "2.0.4", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "dotenv": "~10.0.0", "figures": "3.2.0", "flat": "^5.0.2", - "fs-extra": "^11.1.0", - "glob": "7.1.4", "ignore": "^5.0.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", + "nx": "16.1.1", "open": "^8.4.0", - "semver": "7.5.3", - "string-width": "^4.2.3", - "strong-log-transformer": "^2.1.0", - "tar-stream": "~2.2.0", + "rxjs": "^7.8.0", "tmp": "~0.2.1", - "tsconfig-paths": "^4.1.2", "tslib": "^2.3.0", - "v8-compile-cache": "2.3.0", "yargs": "^17.6.2", "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2" + } + }, + "node_modules/@nx/workspace/node_modules/@nrwl/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", + "dev": true, + "dependencies": { + "@nx/devkit": "16.1.1" + } + }, + "node_modules/@nx/workspace/node_modules/@nx/devkit": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", + "dev": true, + "dependencies": { + "@nrwl/devkit": "16.1.1", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.3.0" }, "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } + "nx": ">= 15 <= 17" } }, - "node_modules/@nx/plugin/node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/@nx/workspace/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "yallist": "^4.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=10" } }, - "node_modules/@nx/plugin/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/@nx/workspace/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -7216,865 +6180,762 @@ "node": ">=10" } }, - "node_modules/@nx/plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/@nx/workspace/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", "dev": true, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">= 18" } }, - "node_modules/@nx/plugin/node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "node_modules/@octokit/core": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", + "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", "dev": true, + "peer": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "@octokit/auth-token": "^4.0.0", + "@octokit/graphql": "^7.0.0", + "@octokit/request": "^8.0.2", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" } }, - "node_modules/@nx/plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@octokit/endpoint": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", + "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" }, "engines": { - "node": ">=8" + "node": ">= 18" } }, - "node_modules/@nx/plugin/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@nx/web": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.3.2.tgz", - "integrity": "sha512-PzTkawQ+OgjX0mR5KwMGcdveoMNLKo/jYaW3UrPMIVUy0NpalW0ULJnDOUt+NRlrp7jOsUP7hUYZkYPNDI3Ivg==", + "node_modules/@octokit/graphql": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", + "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", "dev": true, + "peer": true, "dependencies": { - "@nrwl/web": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "detect-port": "^1.5.1", - "http-server": "^14.1.0", - "ignore": "^5.0.4", - "tslib": "^2.3.0" + "@octokit/request": "^8.0.1", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" } }, - "node_modules/@nx/web/node_modules/@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "node_modules/@octokit/openapi-types": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", + "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", "dev": true, - "dependencies": { - "@nx/devkit": "16.3.2" - } + "peer": true }, - "node_modules/@nx/web/node_modules/@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "node_modules/@octokit/plugin-paginate-rest": { + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", + "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", "dev": true, + "peer": true, "dependencies": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" + "@octokit/types": "^12.4.0" + }, + "engines": { + "node": ">= 18" }, "peerDependencies": { - "nx": ">= 15 <= 17" + "@octokit/core": ">=5" } }, - "node_modules/@nx/web/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@octokit/plugin-retry": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", + "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", "dev": true, + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "bottleneck": "^2.15.3" }, "engines": { - "node": ">=8" + "node": ">= 18" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@octokit/core": ">=5" } }, - "node_modules/@nx/web/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@octokit/plugin-throttling": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", + "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", "dev": true, + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@octokit/types": "^12.2.0", + "bottleneck": "^2.15.3" }, "engines": { - "node": ">=10" + "node": ">= 18" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "@octokit/core": "^5.0.0" } }, - "node_modules/@nx/web/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@octokit/request": { + "version": "8.1.6", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", + "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", "dev": true, + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "@octokit/endpoint": "^9.0.0", + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^6.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">= 18" } }, - "node_modules/@nx/web/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@nx/web/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@octokit/request-error": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", + "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", "dev": true, + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "@octokit/types": "^12.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" }, "engines": { - "node": ">=10" + "node": ">= 18" } }, - "node_modules/@nx/web/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "node_modules/@octokit/types": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", + "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", "dev": true, + "peer": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "@octokit/openapi-types": "^19.1.0" } }, - "node_modules/@nx/web/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@parcel/watcher": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", + "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", "dev": true, + "hasInstallScript": true, "dependencies": { - "has-flag": "^4.0.0" + "node-addon-api": "^3.2.1", + "node-gyp-build": "^4.3.0" }, "engines": { - "node": ">=8" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@nx/web/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@nx/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==", + "node_modules/@phenomnomnominal/tsquery": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz", + "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==", "dev": true, "dependencies": { - "@babel/core": "^7.15.0", - "@nrwl/webpack": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "autoprefixer": "^10.4.9", - "babel-loader": "^9.1.2", - "browserslist": "^4.21.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "copy-webpack-plugin": "^10.2.4", - "css-loader": "^6.4.0", - "css-minimizer-webpack-plugin": "^5.0.0", - "dotenv": "~10.0.0", - "fork-ts-checker-webpack-plugin": "7.2.13", - "ignore": "^5.0.4", - "less": "4.1.3", - "less-loader": "11.1.0", - "license-webpack-plugin": "^4.0.2", - "loader-utils": "^2.0.3", - "mini-css-extract-plugin": "~2.4.7", - "parse5": "4.0.0", - "postcss": "^8.4.14", - "postcss-import": "~14.1.0", - "postcss-loader": "^6.1.1", - "rxjs": "^7.8.0", - "sass": "^1.42.1", - "sass-loader": "^12.2.0", - "source-map-loader": "^3.0.0", - "style-loader": "^3.3.0", - "stylus": "^0.59.0", - "stylus-loader": "^7.1.0", - "terser-webpack-plugin": "^5.3.3", - "ts-loader": "^9.3.1", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", - "tsconfig-paths-webpack-plugin": "4.0.0", - "tslib": "^2.3.0", - "webpack": "^5.80.0", - "webpack-dev-server": "^4.9.3", - "webpack-node-externals": "^3.0.0", - "webpack-subresource-integrity": "^5.1.0" + "esquery": "^1.4.0" + }, + "peerDependencies": { + "typescript": "^3 || ^4 || ^5" } }, - "node_modules/@nx/webpack/node_modules/@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, - "dependencies": { - "@nx/js": "16.4.2" + "optional": true, + "engines": { + "node": ">=14" } }, - "node_modules/@nx/webpack/node_modules/@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", "dev": true, - "dependencies": { - "nx": "16.4.2" - }, - "bin": { - "tao": "index.js" + "peer": true, + "engines": { + "node": ">=12.22.0" } }, - "node_modules/@nx/webpack/node_modules/@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", "dev": true, + "peer": true, "dependencies": { - "@nx/workspace": "16.4.2" + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" } }, - "node_modules/@nx/webpack/node_modules/@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true, + "peer": true + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", + "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==", "dev": true, + "peer": true, "dependencies": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "verdaccio": "^5.0.4" + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" }, - "peerDependenciesMeta": { - "verdaccio": { - "optional": true - } + "engines": { + "node": ">=12" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "cpu": [ - "arm64" - ], + "node_modules/@schematics/angular": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.6.tgz", + "integrity": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "@angular-devkit/core": "16.0.6", + "@angular-devkit/schematics": "16.0.6", + "jsonc-parser": "3.2.0" + }, "engines": { - "node": ">= 10" + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/changelog": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", + "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "fs-extra": "^11.0.0", + "lodash": "^4.17.4" + }, "engines": { - "node": ">= 10" + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "cpu": [ - "arm" - ], + "node_modules/@semantic-release/commit-analyzer": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", + "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "conventional-changelog-angular": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "import-from-esm": "^1.0.3", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" + }, "engines": { - "node": ">= 10" + "node": "^18.17 || >=20.6.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">= 10" + "node": ">=14.17" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/exec": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/exec/-/exec-6.0.3.tgz", + "integrity": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "parse-json": "^5.0.0" + }, "engines": { - "node": ">= 10" + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/exec/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/exec/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "cpu": [ - "arm64" - ], + "node_modules/@semantic-release/exec/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], "engines": { - "node": ">= 10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "cpu": [ - "x64" - ], + "node_modules/@semantic-release/git": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", + "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "micromatch": "^4.0.0", + "p-reduce": "^2.0.0" + }, "engines": { - "node": ">= 10" + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" } }, - "node_modules/@nx/webpack/node_modules/@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "node_modules/@semantic-release/git/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "node_modules/@nx/webpack/node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=14.15.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@nx/webpack/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@semantic-release/git/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/argparse": { + "node_modules/@semantic-release/git/node_modules/is-stream": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/@nx/webpack/node_modules/array-union": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", - "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@semantic-release/github": { + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", + "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", "dev": true, + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@octokit/core": "^5.0.0", + "@octokit/plugin-paginate-rest": "^9.0.0", + "@octokit/plugin-retry": "^6.0.0", + "@octokit/plugin-throttling": "^8.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^6.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^3.0.0", + "url-join": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@nx/webpack/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@semantic-release/github/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", "dev": true, + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "debug": "^4.3.4" }, "engines": { - "node": ">=7.0.0" + "node": ">= 14" } }, - "node_modules/@nx/webpack/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@nx/webpack/node_modules/copy-webpack-plugin": { - "version": "10.2.4", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", - "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", + "node_modules/@semantic-release/github/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, + "peer": true, "dependencies": { - "fast-glob": "^3.2.7", - "glob-parent": "^6.0.1", - "globby": "^12.0.2", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">= 12.20.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/@semantic-release/github/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, + "peer": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "escape-string-regexp": "5.0.0" }, "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, + "peer": true, "engines": { - "node": "*" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/@semantic-release/github/node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, + "peer": true, "dependencies": { - "is-glob": "^4.0.3" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=10.13.0" + "node": ">=8.6.0" } }, - "node_modules/@nx/webpack/node_modules/globby": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", - "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "node_modules/@semantic-release/github/node_modules/globby": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", "dev": true, + "peer": true, "dependencies": { - "array-union": "^3.0.1", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.7", - "ignore": "^5.1.9", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/@semantic-release/github/node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", "dev": true, + "peer": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">=0.10.0" + "node": ">= 14" } }, - "node_modules/@nx/webpack/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/@semantic-release/github/node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", "dev": true, + "peer": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "agent-base": "^7.0.2", + "debug": "4" }, "engines": { - "node": ">=8.9.0" + "node": ">= 14" } }, - "node_modules/@nx/webpack/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@semantic-release/github/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, + "peer": true, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/mini-css-extract-plugin": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", - "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", + "node_modules/@semantic-release/github/node_modules/mime": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.1.tgz", + "integrity": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==", "dev": true, - "dependencies": { - "schema-utils": "^4.0.0" + "funding": [ + "https://github.com/sponsors/broofa" + ], + "peer": true, + "bin": { + "mime": "bin/cli.js" }, "engines": { - "node": ">= 12.13.0" + "node": ">=16" + } + }, + "node_modules/@semantic-release/github/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=14.16" }, - "peerDependencies": { - "webpack": "^5.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", + "node_modules/@semantic-release/github/node_modules/url-join": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", + "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", "dev": true, - "hasInstallScript": true, - "dependencies": { - "@nrwl/tao": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2" - }, - "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/@nx/webpack/node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/@semantic-release/npm": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", + "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", "dev": true, + "peer": true, "dependencies": { - "argparse": "^2.0.1" + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^8.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.0.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": "^18.17 || >=20" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" } }, - "node_modules/@nx/webpack/node_modules/parse5": { + "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", - "dev": true - }, - "node_modules/@nx/webpack/node_modules/postcss-loader": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, - "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.5" - }, + "peer": true, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" + "node": ">=18" } }, - "node_modules/@nx/webpack/node_modules/sass-loader": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "node_modules/@semantic-release/npm/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, + "peer": true, "dependencies": { - "klona": "^2.0.4", - "neo-async": "^2.6.2" + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "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 - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/@semantic-release/npm/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, + "peer": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "escape-string-regexp": "5.0.0" }, "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, + "peer": true, "engines": { "node": ">=12" }, @@ -8082,3596 +6943,3529 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@nx/webpack/node_modules/source-map-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", - "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "node_modules/@semantic-release/npm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, + "peer": true, "dependencies": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">=16.17" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@nx/webpack/node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "node_modules/@semantic-release/npm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "peer": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/webpack/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@semantic-release/npm/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "lru-cache": "^10.0.1" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@nx/webpack/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@nx/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==", + "node_modules/@semantic-release/npm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, - "dependencies": { - "@nrwl/workspace": "16.1.1", - "@nx/devkit": "16.1.1", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.1.1", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" + "peer": true, + "engines": { + "node": ">=16.17.0" } }, - "node_modules/@nx/workspace/node_modules/@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", + "node_modules/@semantic-release/npm/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "dependencies": { - "@nx/devkit": "16.1.1" + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/workspace/node_modules/@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", + "node_modules/@semantic-release/npm/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "nx": ">= 15 <= 17" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/workspace/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@semantic-release/npm/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "peer": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "14 || >=16.14" } }, - "node_modules/@nx/workspace/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@semantic-release/npm/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "peer": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/workspace/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@semantic-release/npm/node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": ">=7.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@nx/workspace/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/@semantic-release/npm/node_modules/normalize-url": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", + "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@nx/workspace/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@semantic-release/npm/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/workspace/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "node_modules/@semantic-release/npm/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "peer": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/workspace/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@semantic-release/npm/node_modules/parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nx/workspace/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@octokit/auth-token": { + "node_modules/@semantic-release/npm/node_modules/path-key": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", - "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, "peer": true, "engines": { - "node": ">= 18" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@octokit/core": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", - "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", + "node_modules/@semantic-release/npm/node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, "peer": true, "dependencies": { - "@octokit/auth-token": "^4.0.0", - "@octokit/graphql": "^7.0.0", - "@octokit/request": "^8.0.2", - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^12.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": ">= 18" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@octokit/endpoint": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", - "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", + "node_modules/@semantic-release/npm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "peer": true, - "dependencies": { - "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" - }, "engines": { - "node": ">= 18" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@octokit/graphql": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", - "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", + "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, "peer": true, - "dependencies": { - "@octokit/request": "^8.0.1", - "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" - }, "engines": { - "node": ">= 18" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@octokit/openapi-types": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", - "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", - "dev": true, - "peer": true - }, - "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", - "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", + "node_modules/@semantic-release/npm/node_modules/type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", "dev": true, "peer": true, - "dependencies": { - "@octokit/types": "^12.4.0" - }, "engines": { - "node": ">= 18" + "node": ">=16" }, - "peerDependencies": { - "@octokit/core": ">=5" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@octokit/plugin-retry": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", - "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", + "node_modules/@semantic-release/release-notes-generator": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", + "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", "dev": true, - "peer": true, "dependencies": { - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^12.0.0", - "bottleneck": "^2.15.3" + "conventional-changelog-angular": "^7.0.0", + "conventional-changelog-writer": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^1.0.3", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-pkg-up": "^11.0.0" }, "engines": { - "node": ">= 18" + "node": "^18.17 || >=20.6.1" }, "peerDependencies": { - "@octokit/core": ">=5" + "semantic-release": ">=20.1.0" } }, - "node_modules/@octokit/plugin-throttling": { - "version": "8.1.3", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", - "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", + "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", "dev": true, - "peer": true, - "dependencies": { - "@octokit/types": "^12.2.0", - "bottleneck": "^2.15.3" - }, "engines": { - "node": ">= 18" + "node": ">=16" }, - "peerDependencies": { - "@octokit/core": "^5.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@octokit/request": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", - "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", + "node_modules/@sigstore/protobuf-specs": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", + "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", "dev": true, - "peer": true, - "dependencies": { - "@octokit/endpoint": "^9.0.0", - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" - }, "engines": { - "node": ">= 18" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@octokit/request-error": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", - "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", + "node_modules/@sigstore/tuf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", + "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", "dev": true, - "peer": true, "dependencies": { - "@octokit/types": "^12.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" + "@sigstore/protobuf-specs": "^0.1.0", + "tuf-js": "^1.1.7" }, "engines": { - "node": ">= 18" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@octokit/types": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", - "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", - "dev": true, - "peer": true, - "dependencies": { - "@octokit/openapi-types": "^19.1.0" - } + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true }, - "node_modules/@parcel/watcher": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", - "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", "dev": true, - "hasInstallScript": true, - "dependencies": { - "node-addon-api": "^3.2.1", - "node-gyp-build": "^4.3.0" - }, "engines": { - "node": ">= 10.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@phenomnomnominal/tsquery": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz", - "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==", - "dev": true, - "dependencies": { - "esquery": "^1.4.0" - }, - "peerDependencies": { - "typescript": "^3 || ^4 || ^5" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "node_modules/@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", "dev": true, "peer": true, "engines": { - "node": ">=12.22.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, - "peer": true, "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" + "type-detect": "4.0.8" } }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true, - "peer": true - }, - "node_modules/@pnpm/npm-conf": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", - "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==", + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, - "peer": true, "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" + "@sinonjs/commons": "^3.0.0" } }, - "node_modules/@schematics/angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.6.tgz", - "integrity": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==", + "node_modules/@swc-node/core": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", + "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", "dev": true, - "dependencies": { - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "jsonc-parser": "3.2.0" - }, "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" + "node": ">= 10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@swc/core": ">= 1.3" } }, - "node_modules/@semantic-release/changelog": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", - "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", + "node_modules/@swc-node/register": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", + "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", "dev": true, "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "fs-extra": "^11.0.0", - "lodash": "^4.17.4" - }, - "engines": { - "node": ">=14.17" + "@swc-node/core": "^1.8.2", + "@swc-node/sourcemap-support": "^0.1.11", + "chalk": "4", + "debug": "^4.3.3", + "pirates": "^4.0.4", + "tslib": "^2.3.1", + "typescript": "^4.5.3" }, - "peerDependencies": { - "semantic-release": ">=18.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" } }, - "node_modules/@semantic-release/commit-analyzer": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", - "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", + "node_modules/@swc-node/register/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true, - "dependencies": { - "conventional-changelog-angular": "^7.0.0", - "conventional-commits-filter": "^4.0.0", - "conventional-commits-parser": "^5.0.0", - "debug": "^4.0.0", - "import-from-esm": "^1.0.3", - "lodash-es": "^4.17.21", - "micromatch": "^4.0.2" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": "^18.17 || >=20.6.1" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" + "node": ">=4.2.0" } }, - "node_modules/@semantic-release/error": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", - "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "node_modules/@swc-node/sourcemap-support": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", + "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", "dev": true, - "engines": { - "node": ">=14.17" + "dependencies": { + "source-map-support": "^0.5.21" } }, - "node_modules/@semantic-release/exec": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/exec/-/exec-6.0.3.tgz", - "integrity": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==", + "node_modules/@swc/cli": { + "version": "0.1.62", + "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", + "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", "dev": true, "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "parse-json": "^5.0.0" + "@mole-inc/bin-wrapper": "^8.0.1", + "commander": "^7.1.0", + "fast-glob": "^3.2.5", + "semver": "^7.3.8", + "slash": "3.0.0", + "source-map": "^0.7.3" + }, + "bin": { + "spack": "bin/spack.js", + "swc": "bin/swc.js", + "swcx": "bin/swcx.js" }, "engines": { - "node": ">=14.17" + "node": ">= 12.13" }, "peerDependencies": { - "semantic-release": ">=18.0.0" + "@swc/core": "^1.2.66", + "chokidar": "^3.5.1" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } } }, - "node_modules/@semantic-release/exec/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/@swc/core": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", + "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, + "hasInstallScript": true, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.67", + "@swc/core-darwin-x64": "1.3.67", + "@swc/core-linux-arm-gnueabihf": "1.3.67", + "@swc/core-linux-arm64-gnu": "1.3.67", + "@swc/core-linux-arm64-musl": "1.3.67", + "@swc/core-linux-x64-gnu": "1.3.67", + "@swc/core-linux-x64-musl": "1.3.67", + "@swc/core-win32-arm64-msvc": "1.3.67", + "@swc/core-win32-ia32-msvc": "1.3.67", + "@swc/core-win32-x64-msvc": "1.3.67" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } } }, - "node_modules/@semantic-release/exec/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", + "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@semantic-release/exec/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", + "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/@semantic-release/git": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", - "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", + "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.0", - "p-reduce": "^2.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0" + "node": ">=10" } }, - "node_modules/@semantic-release/git/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", + "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@semantic-release/git/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", + "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@semantic-release/git/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", + "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/@semantic-release/github": { - "version": "9.2.5", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", - "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", + "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", + "cpu": [ + "x64" + ], "dev": true, - "peer": true, - "dependencies": { - "@octokit/core": "^5.0.0", - "@octokit/plugin-paginate-rest": "^9.0.0", - "@octokit/plugin-retry": "^6.0.0", - "@octokit/plugin-throttling": "^8.0.0", - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "debug": "^4.3.4", - "dir-glob": "^3.0.1", - "globby": "^14.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "issue-parser": "^6.0.0", - "lodash-es": "^4.17.21", - "mime": "^4.0.0", - "p-filter": "^3.0.0", - "url-join": "^5.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=18" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" + "node": ">=10" } }, - "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", + "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", + "cpu": [ + "arm64" + ], "dev": true, - "peer": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=18" + "node": ">=10" } }, - "node_modules/@semantic-release/github/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", + "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", + "cpu": [ + "ia32" + ], "dev": true, - "peer": true, - "dependencies": { - "debug": "^4.3.4" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 14" + "node": ">=10" } }, - "node_modules/@semantic-release/github/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.67", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", + "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", + "cpu": [ + "x64" + ], "dev": true, - "peer": true, - "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/@semantic-release/github/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", "dev": true, - "peer": true, "dependencies": { - "escape-string-regexp": "5.0.0" + "tslib": "^2.4.0" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "dependencies": { + "defer-to-connect": "^2.0.0" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "dev": true + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, - "peer": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 10" } }, - "node_modules/@semantic-release/github/node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "dev": true, - "peer": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, "engines": { - "node": ">=8.6.0" + "node": ">=10.13.0" } }, - "node_modules/@semantic-release/github/node_modules/globby": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", - "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@tufjs/canonical-json": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", + "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", "dev": true, - "peer": true, - "dependencies": { - "@sindresorhus/merge-streams": "^1.0.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@semantic-release/github/node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "node_modules/@tufjs/models": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", + "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", "dev": true, - "peer": true, "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "@tufjs/canonical-json": "1.0.0", + "minimatch": "^9.0.0" }, "engines": { - "node": ">= 14" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@semantic-release/github/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "node_modules/@tufjs/models/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "peer": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" + "balanced-match": "^1.0.0" } }, - "node_modules/@semantic-release/github/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "node_modules/@tufjs/models/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, - "peer": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@semantic-release/github/node_modules/mime": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.1.tgz", - "integrity": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==", + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", "dev": true, - "funding": [ - "https://github.com/sponsors/broofa" - ], - "peer": true, - "bin": { - "mime": "bin/cli.js" - }, - "engines": { - "node": ">=16" + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@semantic-release/github/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@babel/types": "^7.0.0" } }, - "node_modules/@semantic-release/github/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, - "peer": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/@semantic-release/github/node_modules/url-join": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", - "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", "dev": true, - "peer": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dependencies": { + "@babel/types": "^7.20.7" } }, - "node_modules/@semantic-release/npm": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", - "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, - "peer": true, "dependencies": { - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "execa": "^8.0.0", - "fs-extra": "^11.0.0", - "lodash-es": "^4.17.21", - "nerf-dart": "^1.0.0", - "normalize-url": "^8.0.0", - "npm": "^10.0.0", - "rc": "^1.2.8", - "read-pkg": "^9.0.0", - "registry-auth-token": "^5.0.0", - "semver": "^7.1.2", - "tempy": "^3.0.0" - }, - "engines": { - "node": "^18.17 || >=20" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" + "@types/connect": "*", + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", "dev": true, - "peer": true, - "engines": { - "node": ">=18" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", "dev": true, - "peer": true, "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" } }, - "node_modules/@semantic-release/npm/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, - "peer": true, "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "node_modules/@types/eslint": { + "version": "8.40.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", + "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", "dev": true, - "peer": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/@semantic-release/npm/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, - "peer": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" } }, - "node_modules/@semantic-release/npm/node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", "dev": true, - "peer": true, "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "node_modules/@semantic-release/npm/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "node_modules/@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", "dev": true, - "peer": true, - "engines": { - "node": ">=16.17.0" + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@semantic-release/npm/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", "dev": true, - "peer": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "dev": true + }, + "node_modules/@types/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dev": true, - "peer": true, - "engines": { - "node": "14 || >=16.14" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/inquirer": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", + "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", + "dependencies": { + "@types/through": "*", + "rxjs": "^7.2.0" } }, - "node_modules/@semantic-release/npm/node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, - "peer": true, "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@semantic-release/npm/node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, - "peer": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/istanbul-lib-report": "*" } }, - "node_modules/@semantic-release/npm/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "node_modules/@types/jest": { + "version": "29.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", + "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", "dev": true, - "peer": true, "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "expect": "^29.0.0", + "pretty-format": "^29.0.0" } }, - "node_modules/@semantic-release/npm/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", "dev": true, - "peer": true, "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" } }, - "node_modules/@semantic-release/npm/node_modules/parse-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", - "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", "dev": true, - "peer": true, "dependencies": { - "@babel/code-frame": "^7.22.13", - "index-to-position": "^0.1.2", - "type-fest": "^4.7.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/path-key": { + "node_modules/@types/lodash": { + "version": "4.14.195", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", + "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/node": { + "version": "18.7.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", + "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/parse-json": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true }, - "node_modules/@semantic-release/npm/node_modules/read-pkg": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", - "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", "dev": true, - "peer": true, "dependencies": { - "@types/normalize-package-data": "^2.4.3", - "normalize-package-data": "^6.0.0", - "parse-json": "^8.0.0", - "type-fest": "^4.6.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/node": "*" } }, - "node_modules/@semantic-release/npm/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true }, - "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@types/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", + "dev": true }, - "node_modules/@semantic-release/npm/node_modules/type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", "dev": true, - "peer": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/@semantic-release/release-notes-generator": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", - "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "dev": true, "dependencies": { - "conventional-changelog-angular": "^7.0.0", - "conventional-changelog-writer": "^7.0.0", - "conventional-commits-filter": "^4.0.0", - "conventional-commits-parser": "^5.0.0", - "debug": "^4.0.0", - "get-stream": "^7.0.0", - "import-from-esm": "^1.0.3", - "into-stream": "^7.0.0", - "lodash-es": "^4.17.21", - "read-pkg-up": "^11.0.0" - }, - "engines": { - "node": "^18.17 || >=20.6.1" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" + "@types/express": "*" } }, - "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", - "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "node_modules/@types/serve-static": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", + "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" } }, - "node_modules/@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } + "node_modules/@types/sinonjs__fake-timers": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "dev": true }, - "node_modules/@sigstore/tuf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", - "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", + "node_modules/@types/sizzle": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "tuf-js": "^1.1.7" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "@types/node": "*" } }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "node_modules/@types/through": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", + "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", + "dependencies": { + "@types/node": "*" } }, - "node_modules/@sindresorhus/merge-streams": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", - "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "node_modules/@types/tough-cookie": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", + "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", "dev": true, - "peer": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dev": true, "dependencies": { - "type-detect": "4.0.8" + "@types/yargs-parser": "*" } }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", "dev": true, + "optional": true, "dependencies": { - "@sinonjs/commons": "^3.0.0" + "@types/node": "*" } }, - "node_modules/@swc-node/core": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", - "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", + "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/type-utils": "5.60.1", + "@typescript-eslint/utils": "5.60.1", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, "engines": { - "node": ">= 10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@swc/core": ">= 1.3" + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@swc-node/register": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", - "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", + "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", "dev": true, "dependencies": { - "@swc-node/core": "^1.8.2", - "@swc-node/sourcemap-support": "^0.1.11", - "chalk": "4", - "debug": "^4.3.3", - "pirates": "^4.0.4", - "tslib": "^2.3.1", - "typescript": "^4.5.3" + "@typescript-eslint/typescript-estree": "5.60.1", + "@typescript-eslint/utils": "5.60.1", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" - } - }, - "node_modules/@swc-node/register/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "eslint": "*" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@swc-node/register/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", + "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/typescript-estree": "5.60.1", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@swc-node/register/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=8.0.0" } }, - "node_modules/@swc-node/register/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@swc-node/register/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/@swc-node/register/node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "node_modules/@typescript-eslint/parser": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", + "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "dependencies": { + "@typescript-eslint/scope-manager": "5.60.1", + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/typescript-estree": "5.60.1", + "debug": "^4.3.4" }, "engines": { - "node": ">=4.2.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@swc-node/sourcemap-support": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", - "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", + "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", "dev": true, "dependencies": { - "source-map-support": "^0.5.21" + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/visitor-keys": "5.60.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@swc/cli": { - "version": "0.1.62", - "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", - "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", + "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", "dev": true, "dependencies": { - "@mole-inc/bin-wrapper": "^8.0.1", - "commander": "^7.1.0", - "fast-glob": "^3.2.5", - "semver": "^7.3.8", - "slash": "3.0.0", - "source-map": "^0.7.3" - }, - "bin": { - "spack": "bin/spack.js", - "swc": "bin/swc.js", - "swcx": "bin/swcx.js" + "@typescript-eslint/typescript-estree": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "debug": "^4.3.4", + "tsutils": "^3.21.0" }, "engines": { - "node": ">= 12.13" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@swc/core": "^1.2.66", - "chokidar": "^3.5.1" + "eslint": "*" }, "peerDependenciesMeta": { - "chokidar": { + "typescript": { "optional": true } } }, - "node_modules/@swc/core": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", - "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", "dev": true, - "hasInstallScript": true, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/swc" + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, - "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.67", - "@swc/core-darwin-x64": "1.3.67", - "@swc/core-linux-arm-gnueabihf": "1.3.67", - "@swc/core-linux-arm64-gnu": "1.3.67", - "@swc/core-linux-arm64-musl": "1.3.67", - "@swc/core-linux-x64-gnu": "1.3.67", - "@swc/core-linux-x64-musl": "1.3.67", - "@swc/core-win32-arm64-msvc": "1.3.67", - "@swc/core-win32-ia32-msvc": "1.3.67", - "@swc/core-win32-x64-msvc": "1.3.67" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "@swc/helpers": "^0.5.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, "peerDependenciesMeta": { - "@swc/helpers": { + "typescript": { "optional": true } } }, - "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", - "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", - "cpu": [ - "arm64" - ], + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", - "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", - "cpu": [ - "x64" - ], + "node_modules/@typescript-eslint/types": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", + "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", - "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", - "cpu": [ - "arm" - ], + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", + "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@typescript-eslint/types": "5.60.1", + "@typescript-eslint/visitor-keys": "5.60.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", - "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", - "cpu": [ - "arm64" - ], + "node_modules/@typescript-eslint/utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", + "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.7", + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/typescript-estree": "5.59.7", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", - "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", - "cpu": [ - "arm64" - ], + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", + "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", - "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", - "cpu": [ - "x64" - ], + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", - "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", - "cpu": [ - "x64" - ], + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", - "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", - "cpu": [ - "arm64" - ], + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", - "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", - "cpu": [ - "ia32" - ], + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, "engines": { - "node": ">=10" + "node": ">=8.0.0" } }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", - "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", - "cpu": [ - "x64" - ], + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "optional": true, - "os": [ - "win32" - ], "engines": { - "node": ">=10" + "node": ">=4.0" } }, - "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.60.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", + "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", "dev": true, "dependencies": { - "tslib": "^2.4.0" + "@typescript-eslint/types": "5.60.1", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "node_modules/@verdaccio/commons-api": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", + "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", "dev": true, "dependencies": { - "defer-to-connect": "^2.0.0" + "http-errors": "2.0.0", + "http-status-codes": "2.2.0" }, "engines": { - "node": ">=10" + "node": ">=8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", - "dev": true - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "node_modules/@verdaccio/config": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", + "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", "dev": true, + "dependencies": { + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "js-yaml": "4.1.0", + "lodash": "4.17.21", + "minimatch": "3.1.2", + "yup": "0.32.11" + }, "engines": { - "node": ">=10.13.0" + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "node_modules/@verdaccio/config/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@tufjs/canonical-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", - "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/@tufjs/models": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", - "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", + "node_modules/@verdaccio/config/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "@tufjs/canonical-json": "1.0.0", - "minimatch": "^9.0.0" + "argparse": "^2.0.1" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@tufjs/models/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@verdaccio/config/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/@verdaccio/core": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", + "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "ajv": "8.12.0", + "core-js": "3.30.2", + "http-errors": "2.0.0", + "http-status-codes": "2.2.0", + "process-warning": "1.0.0", + "semver": "7.5.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "node_modules/@verdaccio/core/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "node_modules/@verdaccio/core/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, "dependencies": { - "@babel/types": "^7.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "node_modules/@verdaccio/core/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@verdaccio/file-locking": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", + "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", "dev": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "lockfile": "1.0.4" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "node_modules/@verdaccio/local-storage": { + "version": "10.3.3", + "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", + "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", "dev": true, "dependencies": { - "@babel/types": "^7.20.7" + "@verdaccio/commons-api": "10.2.0", + "@verdaccio/file-locking": "10.3.1", + "@verdaccio/streams": "10.2.1", + "async": "3.2.4", + "debug": "4.3.4", + "lodash": "4.17.21", + "lowdb": "1.0.0", + "mkdirp": "1.0.4" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "node_modules/@verdaccio/local-storage/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "node_modules/@verdaccio/logger-7": { + "version": "6.0.0-6-next.16", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", + "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", "dev": true, "dependencies": { - "@types/node": "*" + "@verdaccio/logger-commons": "6.0.0-6-next.39", + "pino": "7.11.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "node_modules/@verdaccio/logger-commons": { + "version": "6.0.0-6-next.39", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", + "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", "dev": true, "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/logger-prettify": "6.0.0-6-next.10", + "colorette": "2.0.20", + "debug": "4.3.4" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "node_modules/@verdaccio/logger-prettify": { + "version": "6.0.0-6-next.10", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", + "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", "dev": true, "dependencies": { - "@types/node": "*" + "colorette": "2.0.20", + "dayjs": "1.11.7", + "lodash": "4.17.21", + "pino-abstract-transport": "1.0.0", + "sonic-boom": "3.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "node_modules/@verdaccio/logger-prettify/node_modules/dayjs": { + "version": "1.11.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", + "dev": true + }, + "node_modules/@verdaccio/middleware": { + "version": "6.0.0-6-next.50", + "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", + "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", "dev": true, "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "express": "4.18.2", + "express-rate-limit": "5.5.1", + "lodash": "4.17.21", + "lru-cache": "7.18.3", + "mime": "2.6.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/eslint": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", - "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "node_modules/@verdaccio/middleware/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "engines": { + "node": ">=12" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "node_modules/@verdaccio/middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" } }, - "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "dev": true + "node_modules/@verdaccio/search": { + "version": "6.0.0-6-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", + "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", + "dev": true, + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" + } }, - "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "node_modules/@verdaccio/signature": { + "version": "6.0.0-6-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", + "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", "dev": true, "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "debug": "4.3.4", + "jsonwebtoken": "9.0.0", + "lodash": "4.17.21" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "node_modules/@verdaccio/streams": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", + "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", "dev": true, - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "engines": { + "node": ">=12", + "npm": ">=5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "node_modules/@verdaccio/tarball": { + "version": "11.0.0-6-next.40", + "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", + "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", "dev": true, "dependencies": { - "@types/node": "*" + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "debug": "4.3.4", + "lodash": "4.17.21" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "node_modules/@types/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "node_modules/@verdaccio/ui-theme": { + "version": "6.0.0-6-next.71", + "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", + "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", "dev": true }, - "node_modules/@types/http-proxy": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", - "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "node_modules/@verdaccio/url": { + "version": "11.0.0-6-next.37", + "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", + "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", "dev": true, "dependencies": { - "@types/node": "*" + "@verdaccio/core": "6.0.0-6-next.71", + "debug": "4.3.4", + "lodash": "4.17.21", + "validator": "13.9.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/inquirer": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", - "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", + "node_modules/@verdaccio/utils": { + "version": "6.0.0-6-next.39", + "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", + "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", + "dev": true, "dependencies": { - "@types/through": "*", - "rxjs": "^7.2.0" + "@verdaccio/core": "6.0.0-6-next.71", + "lodash": "4.17.21", + "minimatch": "3.1.2", + "semver": "7.5.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "node_modules/@verdaccio/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "*" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "node_modules/@verdaccio/utils/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "@types/istanbul-lib-report": "*" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/@types/jest": { - "version": "29.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", - "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "node_modules/@verdaccio/utils/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, "dependencies": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", - "dev": true, - "dependencies": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "node_modules/@verdaccio/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true + "node_modules/@vitejs/plugin-basic-ssl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", + "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", + "dev": true, + "engines": { + "node": ">=14.6.0" + }, + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0" + } }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dev": true, "dependencies": { - "@types/node": "*" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/@types/lodash": { - "version": "4.14.195", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", - "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", - "dev": true - }, - "node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", "dev": true }, - "node_modules/@types/node": { - "version": "18.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", - "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", "dev": true }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "dev": true }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", "dev": true }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } }, - "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dev": true, "dependencies": { - "@types/node": "*" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } }, - "node_modules/@types/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", "dev": true }, - "node_modules/@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dev": true, "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, - "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dev": true, "dependencies": { - "@types/express": "*" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/@types/serve-static": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", - "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dev": true, "dependencies": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, - "node_modules/@types/sinonjs__fake-timers": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", - "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", - "dev": true - }, - "node_modules/@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", - "dev": true + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } }, - "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dev": true, "dependencies": { - "@types/node": "*" + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" } }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true }, - "node_modules/@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", - "dependencies": { - "@types/node": "*" - } + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true }, - "node_modules/@types/tough-cookie": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", - "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", "dev": true }, - "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "node_modules/@yarnpkg/parsers": { + "version": "3.0.0-rc.48", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", + "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", "dev": true, "dependencies": { - "@types/node": "*" + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=18.12.0" } }, - "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "node_modules/@zkochan/js-yaml": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", + "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "node_modules/@zkochan/js-yaml/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, - "optional": true, "dependencies": { - "@types/node": "*" + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", - "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/type-utils": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">= 0.6" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", - "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=0.4.0" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", - "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "acorn": "^8" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, "engines": { - "node": ">=8.0.0" + "node": ">=0.4.0" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true, "engines": { - "node": ">=4.0" + "node": ">= 10.0.0" } }, - "node_modules/@typescript-eslint/parser": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", - "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "debug": "^4.3.4" + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=8.9" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", - "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=8.9.0" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", - "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "debug": "4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">= 6.0.0" } }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "node_modules/agentkeepalive": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", + "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "debug": "^4.1.0", + "depd": "^2.0.0", + "humanize-ms": "^1.2.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">= 8.0.0" } }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=8" } }, - "node_modules/@typescript-eslint/types": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", - "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", + "node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", - "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "ajv": "^8.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "ajv": "^8.0.0" }, "peerDependenciesMeta": { - "typescript": { + "ajv": { "optional": true } } }, - "node_modules/@typescript-eslint/utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", - "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.7", - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/typescript-estree": "5.59.7", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "fast-deep-equal": "^3.1.3" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "ajv": "^8.8.2" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", - "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7" + "type-fest": "^0.21.3" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "node_modules/ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "ansi-wrap": "0.1.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=8" } }, - "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "color-convert": "^1.9.0" }, "engines": { - "node": ">=8.0.0" + "node": ">=4" } }, - "node_modules/@typescript-eslint/utils/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", "dev": true, "engines": { - "node": ">=4.0" + "node": ">=0.10.0" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", - "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", + "node_modules/ansicolors": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", + "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.60.1", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } + "peer": true }, - "node_modules/@verdaccio/commons-api": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", - "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "dependencies": { - "http-errors": "2.0.0", - "http-status-codes": "2.2.0" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">=8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": ">= 8" } }, - "node_modules/@verdaccio/config": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", - "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", + "node_modules/apache-md5": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", + "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", "dev": true, - "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "js-yaml": "4.1.0", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "yup": "0.32.11" - }, "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": ">=8" } }, - "node_modules/@verdaccio/config/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, - "node_modules/@verdaccio/config/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/@verdaccio/config/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": "*" + "node": ">= 6" } }, - "node_modules/@verdaccio/core": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", - "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "dependencies": { - "ajv": "8.12.0", - "core-js": "3.30.2", - "http-errors": "2.0.0", - "http-status-codes": "2.2.0", - "process-warning": "1.0.0", - "semver": "7.5.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "sprintf-js": "~1.0.2" } }, - "node_modules/@verdaccio/core/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/argv-formatter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", + "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", + "dev": true, + "peer": true + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "deep-equal": "^2.0.5" } }, - "node_modules/@verdaccio/core/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@verdaccio/core/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true }, - "node_modules/@verdaccio/file-locking": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", - "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", "dev": true, "dependencies": { - "lockfile": "1.0.4" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@verdaccio/local-storage": { - "version": "10.3.3", - "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", - "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "dependencies": { - "@verdaccio/commons-api": "10.2.0", - "@verdaccio/file-locking": "10.3.1", - "@verdaccio/streams": "10.2.1", - "async": "3.2.4", - "debug": "4.3.4", - "lodash": "4.17.21", - "lowdb": "1.0.0", - "mkdirp": "1.0.4" - }, "engines": { "node": ">=8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@verdaccio/local-storage/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@verdaccio/logger-7": { - "version": "6.0.0-6-next.16", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", - "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", "dev": true, "dependencies": { - "@verdaccio/logger-commons": "6.0.0-6-next.39", - "pino": "7.11.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@verdaccio/logger-commons": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", - "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/logger-prettify": "6.0.0-6-next.10", - "colorette": "2.0.20", - "debug": "4.3.4" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" } }, - "node_modules/@verdaccio/logger-prettify": { - "version": "6.0.0-6-next.10", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", - "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, "dependencies": { - "colorette": "2.0.20", - "dayjs": "1.11.7", - "lodash": "4.17.21", - "pino-abstract-transport": "1.0.0", - "sonic-boom": "3.3.0" - }, + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": ">=0.8" } }, - "node_modules/@verdaccio/logger-prettify/node_modules/dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "dev": true }, - "node_modules/@verdaccio/middleware": { - "version": "6.0.0-6-next.50", - "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", - "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, - "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "2.6.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": ">= 4.0.0" } }, - "node_modules/@verdaccio/middleware/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/atomic-sleep": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", + "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", "dev": true, "engines": { - "node": ">=12" + "node": ">=8.0.0" } }, - "node_modules/@verdaccio/middleware/node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "node_modules/autolinker": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", + "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", + "dev": true, + "dependencies": { + "gulp-header": "^1.7.1" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, "bin": { - "mime": "cli.js" + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": ">=4.0.0" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/@verdaccio/search": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", - "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "dev": true, "engines": { - "node": ">=12", - "npm": ">=6" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@verdaccio/signature": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", - "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "dev": true, - "dependencies": { - "debug": "4.3.4", - "jsonwebtoken": "9.0.0", - "lodash": "4.17.21" - }, "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": "*" } }, - "node_modules/@verdaccio/streams": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", - "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "dev": true + }, + "node_modules/axios": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", + "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", "dev": true, - "engines": { - "node": ">=12", - "npm": ">=5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, - "node_modules/@verdaccio/tarball": { - "version": "11.0.0-6-next.40", - "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", - "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "lodash": "4.17.21" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "node": ">= 6" } }, - "node_modules/@verdaccio/ui-theme": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", - "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", + "node_modules/axios/node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "dev": true }, - "node_modules/@verdaccio/url": { - "version": "11.0.0-6-next.37", - "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", - "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "debug": "4.3.4", - "lodash": "4.17.21", - "validator": "13.9.0" + "deep-equal": "^2.0.5" + } + }, + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "peerDependencies": { + "@babel/core": "^7.8.0" } }, - "node_modules/@verdaccio/utils": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", - "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", + "node_modules/babel-loader": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", + "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "semver": "7.5.0" + "find-cache-dir": "^3.3.2", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">= 14.15.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/@verdaccio/utils/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/babel-plugin-const-enum": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", + "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-syntax-typescript": "^7.3.3", + "@babel/traverse": "^7.16.0" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@verdaccio/utils/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/@verdaccio/utils/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@verdaccio/utils/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } }, - "node_modules/@vitejs/plugin-basic-ssl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", - "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", "dev": true, - "engines": { - "node": ">=14.6.0" + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" }, "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "node_modules/babel-plugin-transform-typescript-metadata": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", + "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", "dev": true, "dependencies": { - "@xtuc/ieee754": "^1.2.0" + "@babel/helper-plugin-utils": "^7.0.0" } }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { - "@xtuc/long": "4.2.2" + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "node_modules/basic-auth/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" + "tweetnacl": "^0.14.3" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "node_modules/bcryptjs": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", "dev": true }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true, + "peer": true }, - "node_modules/@yarnpkg/lockfile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", - "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", - "dev": true + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } }, - "node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.48", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", - "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", "dev": true, "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" + "execa": "^0.7.0", + "executable": "^4.1.0" }, "engines": { - "node": ">=18.12.0" + "node": ">=4" } }, - "node_modules/@zkochan/js-yaml": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", - "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", + "node_modules/bin-version": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", + "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "execa": "^5.0.0", + "find-versions": "^5.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@zkochan/js-yaml/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/bin-version-check": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", + "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", "dev": true, "dependencies": { - "event-target-shim": "^5.0.0" + "bin-version": "^6.0.0", + "semver": "^7.5.3", + "semver-truncate": "^3.0.0" }, "engines": { - "node": ">=6.5" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/bin-version-check/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=10" } }, - "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "node_modules/bin-version-check/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "bin": { - "acorn": "bin/acorn" + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.4.0" + "node": ">=10" } }, - "node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "dev": true, - "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" - } + "node_modules/bin-version-check/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/bin-version/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "peerDependencies": { - "acorn": "^8" + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/bin-version/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "node_modules/bin-version/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, "engines": { - "node": ">= 10.0.0" + "node": ">=8" } }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "engines": { - "node": ">=8.9" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=8.9.0" + "node": ">= 6" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/blob-util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", + "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", + "dev": true + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dev": true, "dependencies": { - "debug": "4" + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" + "ms": "2.0.0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "side-channel": "^1.0.4" }, "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "node": ">=0.6" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", "dev": true, "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "node_modules/bonjour-service/node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/bottleneck": { + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } + "peer": true }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "fill-range": "^7.0.1" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], "dependencies": { - "ansi-wrap": "0.1.0" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" + "fast-json-stable-stringify": "2.x" }, "engines": { - "node": ">=4" - } - }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", - "dev": true, - "peer": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" + "node-int64": "^0.4.0" } }, - "node_modules/apache-md5": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", - "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", + "node_modules/btoa": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", "dev": true, + "bin": { + "btoa": "bin/btoa.js" + }, "engines": { - "node": ">=8" + "node": ">= 0.4.0" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { @@ -11686,4422 +10480,4417 @@ "type": "consulting", "url": "https://feross.org/support" } - ] - }, - "node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, + ], "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/are-we-there-yet/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, "engines": { - "node": ">= 6" + "node": "*" } }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", "dev": true }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "semver": "^7.0.0" } }, - "node_modules/argv-formatter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", - "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "peer": true + "engines": { + "node": ">= 0.8" + } }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "node_modules/cacache": { + "version": "17.0.6", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", + "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "balanced-match": "^1.0.0" } }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/array-ify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", - "dev": true - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "node_modules/cacache/node_modules/glob": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2", + "path-scurry": "^1.10.0" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/cacache/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "node_modules/cacache/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10.6.0" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "dependencies": { - "safer-buffer": "~2.1.0" + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "node_modules/cachedir": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", + "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", "dev": true, "engines": { - "node": ">=0.8" + "node": ">=6" } }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">=6" } }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "engines": { - "node": ">=8.0.0" + "node": ">=6" } }, - "node_modules/autolinker": { - "version": "0.28.1", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", - "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "dependencies": { - "gulp-header": "^1.7.1" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "node_modules/caniuse-lite": { + "version": "1.0.30001511", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", + "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", "dev": true, "funding": [ { "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } - ], + ] + }, + "node_modules/cardinal": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", + "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", + "dev": true, + "peer": true, "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" }, "bin": { - "autoprefixer": "bin/autoprefixer" + "cdl": "bin/cdl.js" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, + "node_modules/chalk/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true, + "node_modules/chalk/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": "*" + "node": ">=7.0.0" } }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true + "node_modules/chalk/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "node_modules/axios": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", - "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", - "dev": true, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/axios/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/axios/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "node_modules/check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", "dev": true, - "dependencies": { - "deep-equal": "^2.0.5" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { - "@jest/transform": "^29.5.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 8.10.0" }, - "peerDependencies": { - "@babel/core": "^7.8.0" + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=10" } }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6.0" } }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "restore-cursor": "^3.1.0" }, "engines": { "node": ">=8" } }, - "node_modules/babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "node_modules/cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", "dev": true, - "dependencies": { - "find-cache-dir": "^3.3.2", - "schema-utils": "^4.0.0" - }, "engines": { - "node": ">= 14.15.0" + "node": ">=6" }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/babel-plugin-const-enum": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", - "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", + "node_modules/cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-typescript": "^7.3.3", - "@babel/traverse": "^7.16.0" + "string-width": "^4.2.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "node_modules/cli-truncate/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "dependencies": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "ansi-regex": "^6.0.1" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">= 10" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "node_modules/clipanion": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", + "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "typanion": "^3.8.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "typanion": "*" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/babel-plugin-transform-typescript-metadata": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", - "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0" + "engines": { + "node": ">=0.8" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "node_modules/clone-deep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", - "babel-preset-current-node-syntax": "^1.0.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "node": ">=0.10.0" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "node_modules/coffee-script": { + "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", + "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", "dev": true, - "dependencies": { - "safe-buffer": "5.1.2" + "bin": { + "cake": "bin/cake", + "coffee": "bin/coffee" }, "engines": { - "node": ">= 0.8" + "node": ">=0.8.0" } }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "tweetnacl": "^0.14.3" + "color-name": "1.1.3" } }, - "node_modules/bcryptjs": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "node_modules/before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true, - "peer": true - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, - "engines": { - "node": "*" + "bin": { + "color-support": "bin.js" } }, - "node_modules/bin-check": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "dependencies": { - "execa": "^0.7.0", - "executable": "^4.1.0" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/bin-version": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", - "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, - "dependencies": { - "execa": "^5.0.0", - "find-versions": "^5.0.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 10" } }, - "node_modules/bin-version-check": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", - "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, - "dependencies": { - "bin-version": "^6.0.0", - "semver": "^7.5.3", - "semver-truncate": "^3.0.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0.0" } }, - "node_modules/bin-version-check/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" } }, - "node_modules/bin-version-check/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "mime-db": ">= 1.43.0 < 2" }, "engines": { - "node": ">=10" + "node": ">= 0.6" } }, - "node_modules/bin-version-check/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/bin-version/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">= 0.8.0" } }, - "node_modules/bin-version/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/bin-version/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, - "engines": { - "node": ">=8" + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", "dev": true, "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "source-map": "^0.6.1" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/concat-with-sourcemaps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/blob-util": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", - "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "peer": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "peer": true + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true }, - "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=0.8" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": "*" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "safe-buffer": "5.2.1" }, "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.6" } }, - "node_modules/bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, - "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "engines": { + "node": ">= 0.6" } }, - "node_modules/bonjour-service/node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "node_modules/bottleneck": { - "version": "2.19.5", - "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", - "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", - "dev": true, - "peer": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/conventional-changelog-angular": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", + "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=16" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/conventional-changelog-conventionalcommits": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", + "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "compare-func": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=16" } }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "node_modules/conventional-changelog-writer": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz", + "integrity": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" + "conventional-commits-filter": "^4.0.0", + "handlebars": "^4.7.7", + "json-stringify-safe": "^5.0.1", + "meow": "^12.0.1", + "semver": "^7.5.2", + "split2": "^4.0.0" }, "bin": { - "browserslist": "cli.js" + "conventional-changelog-writer": "cli.mjs" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=16" } }, - "node_modules/bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "node_modules/conventional-changelog-writer/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "fast-json-stable-stringify": "2.x" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "node_modules/conventional-changelog-writer/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/btoa": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", - "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", - "dev": true, + "lru-cache": "^6.0.0" + }, "bin": { - "btoa": "bin/btoa.js" + "semver": "bin/semver.js" }, "engines": { - "node": ">= 0.4.0" + "node": ">=10" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/conventional-changelog-writer/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/conventional-commits-filter": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", + "integrity": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "engines": { + "node": ">=16" } }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "node_modules/conventional-commits-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", + "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", "dev": true, + "dependencies": { + "is-text-path": "^2.0.0", + "JSONStream": "^1.3.5", + "meow": "^12.0.1", + "split2": "^4.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.mjs" + }, "engines": { - "node": "*" + "node": ">=16" } }, - "node_modules/buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", - "dev": true - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true, - "dependencies": { - "semver": "^7.0.0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", "dev": true, + "dependencies": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + }, "engines": { "node": ">= 0.8" } }, - "node_modules/cacache": { - "version": "17.0.6", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", - "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "is-what": "^3.14.1" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "funding": { + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/cacache/node_modules/glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "node_modules/copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "dev": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" - }, - "bin": { - "glob": "dist/cjs/src/bin.js" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 14.15.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/cacache/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/copy-webpack-plugin/node_modules/fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=12" + "node": ">=8.6.0" } }, - "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 6" } }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">=10.6.0" + "node": ">=10.13.0" } }, - "node_modules/cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", + "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", "dev": true, "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "node_modules/core-js": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "dev": true, - "engines": { - "node": ">=6" + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "node_modules/core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "browserslist": "^4.21.5" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, "engines": { - "node": ">=6" + "node": ">= 0.10" } }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/corser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", + "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 0.4.0" } }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001511", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", - "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true }, - "node_modules/cardinal": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", - "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", + "node_modules/critters": { + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", "dev": true, - "peer": true, "dependencies": { - "ansicolors": "~0.3.2", - "redeyed": "~2.1.0" - }, - "bin": { - "cdl": "bin/cdl.js" + "chalk": "^4.1.0", + "css-select": "^4.2.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "postcss": "^8.3.7", + "pretty-bytes": "^5.3.0" } }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "node_modules/critters/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true }, - "node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dev": true, + "peer": true, + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, + "peer": true, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/check-more-types": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "node_modules/css-declaration-sorter": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", + "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "node_modules/css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 12.13.0" }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "node_modules/css-minimizer-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" + }, "engines": { - "node": ">=6.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "@swc/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "lightningcss": { + "optional": true + } } }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "node_modules/css-minimizer-webpack-plugin/node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", "dev": true, "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, { "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" + "url": "https://github.com/sponsors/ai" } ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >=14" } }, - "node_modules/cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", - "dev": true - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, "dependencies": { - "restore-cursor": "^3.1.0" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=8" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, - "dependencies": { - "string-width": "^4.2.0" + "bin": { + "cssesc": "bin/cssesc" }, "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "node": ">=4" } }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "node_modules/cssnano": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", + "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", "dev": true, "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" + "cssnano-preset-default": "^6.0.1", + "lilconfig": "^2.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": "^14 || ^16 || >=18.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/cli-truncate/node_modules/ansi-regex": { + "node_modules/cssnano-preset-default": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", + "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^4.0.0", + "postcss-calc": "^9.0.0", + "postcss-colormin": "^6.0.0", + "postcss-convert-values": "^6.0.0", + "postcss-discard-comments": "^6.0.0", + "postcss-discard-duplicates": "^6.0.0", + "postcss-discard-empty": "^6.0.0", + "postcss-discard-overridden": "^6.0.0", + "postcss-merge-longhand": "^6.0.0", + "postcss-merge-rules": "^6.0.1", + "postcss-minify-font-values": "^6.0.0", + "postcss-minify-gradients": "^6.0.0", + "postcss-minify-params": "^6.0.0", + "postcss-minify-selectors": "^6.0.0", + "postcss-normalize-charset": "^6.0.0", + "postcss-normalize-display-values": "^6.0.0", + "postcss-normalize-positions": "^6.0.0", + "postcss-normalize-repeat-style": "^6.0.0", + "postcss-normalize-string": "^6.0.0", + "postcss-normalize-timing-functions": "^6.0.0", + "postcss-normalize-unicode": "^6.0.0", + "postcss-normalize-url": "^6.0.0", + "postcss-normalize-whitespace": "^6.0.0", + "postcss-ordered-values": "^6.0.0", + "postcss-reduce-initial": "^6.0.0", + "postcss-reduce-transforms": "^6.0.0", + "postcss-svgo": "^6.0.0", + "postcss-unique-selectors": "^6.0.0" + }, "engines": { - "node": ">=12" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/cssnano-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", + "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, "engines": { - "node": ">=12" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "dependencies": { - "ansi-regex": "^6.0.1" + "css-tree": "~2.2.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, "engines": { - "node": ">= 10" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/clipanion": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", - "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "dependencies": { - "typanion": "^3.8.0" + "cssom": "~0.3.6" }, - "peerDependencies": { - "typanion": "*" + "engines": { + "node": ">=8" } }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/cypress": { + "version": "12.16.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", + "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", "dev": true, + "hasInstallScript": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "@cypress/request": "^2.88.10", + "@cypress/xvfb": "^1.2.4", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "8.1.1", + "@types/sizzle": "^2.3.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", + "bluebird": "^3.7.2", + "buffer": "^5.6.0", + "cachedir": "^2.3.0", + "chalk": "^4.1.0", + "check-more-types": "^2.24.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", + "common-tags": "^1.8.0", + "dayjs": "^1.10.4", + "debug": "^4.3.4", + "enquirer": "^2.3.6", + "eventemitter2": "6.4.7", + "execa": "4.1.0", + "executable": "^4.1.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", + "getos": "^3.2.1", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", + "lazy-ass": "^1.6.0", + "listr2": "^3.8.3", + "lodash": "^4.17.21", + "log-symbols": "^4.0.0", + "minimist": "^1.2.8", + "ospath": "^1.2.2", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", + "request-progress": "^3.0.0", + "semver": "^7.3.2", + "supports-color": "^8.1.1", + "tmp": "~0.2.1", + "untildify": "^4.0.0", + "yauzl": "^2.10.0" + }, + "bin": { + "cypress": "bin/cypress" + }, + "engines": { + "node": "^14.0.0 || ^16.0.0 || >=18.0.0" } }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "node_modules/cypress/node_modules/@types/node": { + "version": "14.18.53", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", + "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", + "dev": true + }, + "node_modules/cypress/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", "dev": true, "engines": { - "node": ">=0.8" + "node": ">= 6" } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "node_modules/cypress/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/clone-deep/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/cypress/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "node_modules/cypress/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "dependencies": { - "mimic-response": "^1.0.0" + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "node_modules/cypress/node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true, "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "node": ">=8.12.0" } }, - "node_modules/coffee-script": { - "version": "1.12.7", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", - "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", - "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", + "node_modules/cypress/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "bin": { - "cake": "bin/cake", - "coffee": "bin/coffee" - }, "engines": { - "node": ">=0.8.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", "dev": true, "dependencies": { - "color-name": "1.1.3" + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "node_modules/dayjs": { + "version": "1.11.9", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", + "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", "dev": true }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, - "bin": { - "color-support": "bin.js" + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", "dev": true }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, "dependencies": { - "delayed-stream": "~1.0.0" + "mimic-response": "^3.1.0" }, "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "dev": true, "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-equal": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, + "peer": true, "engines": { "node": ">=4.0.0" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/compare-func": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", - "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, - "dependencies": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "execa": "^5.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">= 10" } }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true, - "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/default-gateway/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "node_modules/default-gateway/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "dependencies": { - "source-map": "^0.6.1" + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/concat-with-sourcemaps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, - "peer": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" + "engines": { + "node": ">=8" } }, - "node_modules/config-chain/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "peer": true - }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, "engines": { - "node": ">=0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/connect-pause": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", - "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, "engines": { - "node": "*" + "node": ">=0.4.0" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" - }, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", "dev": true, - "engines": { - "node": ">= 0.6" - } + "peer": true }, - "node_modules/conventional-changelog-angular": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", - "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "dependencies": { - "compare-func": "^2.0.0" - }, "engines": { - "node": ">=16" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/conventional-changelog-conventionalcommits": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", - "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, - "dependencies": { - "compare-func": "^2.0.0" - }, "engines": { - "node": ">=16" + "node": ">=8" } }, - "node_modules/conventional-changelog-writer": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz", - "integrity": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/detect-port": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", "dev": true, "dependencies": { - "conventional-commits-filter": "^4.0.0", - "handlebars": "^4.7.7", - "json-stringify-safe": "^5.0.1", - "meow": "^12.0.1", - "semver": "^7.5.2", - "split2": "^4.0.0" + "address": "^1.0.1", + "debug": "4" }, "bin": { - "conventional-changelog-writer": "cli.mjs" - }, - "engines": { - "node": ">=16" + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" } }, - "node_modules/conventional-changelog-writer/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/diacritics-map": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", + "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">=0.8.0" } }, - "node_modules/conventional-changelog-writer/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, "engines": { - "node": ">=10" + "node": ">=0.3.1" } }, - "node_modules/conventional-changelog-writer/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/conventional-commits-filter": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", - "integrity": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==", + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "dev": true, "engines": { - "node": ">=16" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/conventional-commits-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", - "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "is-text-path": "^2.0.0", - "JSONStream": "^1.3.5", - "meow": "^12.0.1", - "split2": "^4.0.0" - }, - "bin": { - "conventional-commits-parser": "cli.mjs" + "path-type": "^4.0.0" }, "engines": { - "node": ">=16" + "node": ">=8" } }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "node_modules/dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/cookies": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", - "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">= 0.8" + "node": ">=6.0.0" } }, - "node_modules/copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "dependencies": { - "is-what": "^3.14.1" + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/mesqueeb" + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, - "dependencies": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, - "node_modules/copy-webpack-plugin/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">=8.6.0" + "node": ">=12" } }, - "node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "domelementtype": "^2.2.0" }, "engines": { - "node": ">= 6" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" }, - "engines": { - "node": ">=10.13.0" + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", - "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "is-obj": "^2.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/core-js": { - "version": "3.30.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", - "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", - "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true }, - "node_modules/core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", "dev": true, + "peer": true, "dependencies": { - "browserslist": "^4.21.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "readable-stream": "^2.0.2" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "node_modules/duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", "dev": true, "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" } }, - "node_modules/corser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", - "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", + "node_modules/duplexify/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, "engines": { - "node": ">= 0.4.0" + "node": ">= 6" } }, - "node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, - "engines": { - "node": ">=8" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/create-require": { + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/ee-first": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "node_modules/critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", "dev": true, "dependencies": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/critters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/electron-to-chromium": { + "version": "1.4.447", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", + "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/critters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", + "dev": true, + "peer": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 4" } }, - "node_modules/critters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "dev": true, + "optional": true, "dependencies": { - "color-name": "~1.1.4" + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/critters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } }, - "node_modules/critters/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } }, - "node_modules/critters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-colors": "^4.1.1" }, "engines": { - "node": ">=8" + "node": ">=8.6" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-ci": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", + "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", "dev": true, + "peer": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "execa": "^8.0.0", + "java-properties": "^1.0.2" }, "engines": { - "node": ">= 8" + "node": "^18.17 || >=20.6.1" } }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "node_modules/env-ci/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, "peer": true, "dependencies": { - "type-fest": "^1.0.1" + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">=12" + "node": ">=16.17" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "node_modules/env-ci/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, "peer": true, "engines": { - "node": ">=10" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-declaration-sorter": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", - "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", + "node_modules/env-ci/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, + "peer": true, "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" + "node": ">=16.17.0" } }, - "node_modules/css-loader": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", - "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "node_modules/env-ci/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.19", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" - }, + "peer": true, "engines": { - "node": ">= 12.13.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12" }, - "peerDependencies": { - "webpack": "^5.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", - "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", + "node_modules/env-ci/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "peer": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "cssnano": "^6.0.1", - "jest-worker": "^29.4.3", - "postcss": "^8.4.24", - "schema-utils": "^4.0.1", - "serialize-javascript": "^6.0.1" + "path-key": "^4.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "@swc/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "lightningcss": { - "optional": true - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "node_modules/env-ci/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "peer": true, "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "mimic-fn": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "node_modules/env-ci/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "peer": true, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "node_modules/env-ci/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, + "peer": true, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "node_modules/env-ci/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, + "peer": true, "engines": { - "node": ">= 6" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true, "bin": { - "cssesc": "bin/cssesc" + "envinfo": "dist/cli.js" }, "engines": { "node": ">=4" } }, - "node_modules/cssnano": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", - "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, + "optional": true, "dependencies": { - "cssnano-preset-default": "^6.0.1", - "lilconfig": "^2.1.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "prr": "~1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "dev": true, + "dependencies": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": ">= 0.8" } }, - "node_modules/cssnano-preset-default": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", - "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", "dev": true, "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^4.0.0", - "postcss-calc": "^9.0.0", - "postcss-colormin": "^6.0.0", - "postcss-convert-values": "^6.0.0", - "postcss-discard-comments": "^6.0.0", - "postcss-discard-duplicates": "^6.0.0", - "postcss-discard-empty": "^6.0.0", - "postcss-discard-overridden": "^6.0.0", - "postcss-merge-longhand": "^6.0.0", - "postcss-merge-rules": "^6.0.1", - "postcss-minify-font-values": "^6.0.0", - "postcss-minify-gradients": "^6.0.0", - "postcss-minify-params": "^6.0.0", - "postcss-minify-selectors": "^6.0.0", - "postcss-normalize-charset": "^6.0.0", - "postcss-normalize-display-values": "^6.0.0", - "postcss-normalize-positions": "^6.0.0", - "postcss-normalize-repeat-style": "^6.0.0", - "postcss-normalize-string": "^6.0.0", - "postcss-normalize-timing-functions": "^6.0.0", - "postcss-normalize-unicode": "^6.0.0", - "postcss-normalize-url": "^6.0.0", - "postcss-normalize-whitespace": "^6.0.0", - "postcss-ordered-values": "^6.0.0", - "postcss-reduce-initial": "^6.0.0", - "postcss-reduce-transforms": "^6.0.0", - "postcss-svgo": "^6.0.0", - "postcss-unique-selectors": "^6.0.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", - "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", - "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", - "dev": true, - "dependencies": { - "css-tree": "~2.2.0" + "node": ">= 0.4" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true - }, - "node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "node_modules/es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", "dev": true }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", "dev": true, "dependencies": { - "cssom": "~0.3.6" + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/cypress": { - "version": "12.16.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", - "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", "dev": true, - "hasInstallScript": true, "dependencies": { - "@cypress/request": "^2.88.10", - "@cypress/xvfb": "^1.2.4", - "@types/node": "^14.14.31", - "@types/sinonjs__fake-timers": "8.1.1", - "@types/sizzle": "^2.3.2", - "arch": "^2.2.0", - "blob-util": "^2.0.2", - "bluebird": "^3.7.2", - "buffer": "^5.6.0", - "cachedir": "^2.3.0", - "chalk": "^4.1.0", - "check-more-types": "^2.24.0", - "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.1", - "commander": "^6.2.1", - "common-tags": "^1.8.0", - "dayjs": "^1.10.4", - "debug": "^4.3.4", - "enquirer": "^2.3.6", - "eventemitter2": "6.4.7", - "execa": "4.1.0", - "executable": "^4.1.1", - "extract-zip": "2.0.1", - "figures": "^3.2.0", - "fs-extra": "^9.1.0", - "getos": "^3.2.1", - "is-ci": "^3.0.0", - "is-installed-globally": "~0.4.0", - "lazy-ass": "^1.6.0", - "listr2": "^3.8.3", - "lodash": "^4.17.21", - "log-symbols": "^4.0.0", - "minimist": "^1.2.8", - "ospath": "^1.2.2", - "pretty-bytes": "^5.6.0", - "proxy-from-env": "1.0.0", - "request-progress": "^3.0.0", - "semver": "^7.3.2", - "supports-color": "^8.1.1", - "tmp": "~0.2.1", - "untildify": "^4.0.0", - "yauzl": "^2.10.0" - }, - "bin": { - "cypress": "bin/cypress" - }, - "engines": { - "node": "^14.0.0 || ^16.0.0 || >=18.0.0" + "has": "^1.0.3" } }, - "node_modules/cypress/node_modules/@types/node": { - "version": "14.18.53", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", - "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", - "dev": true - }, - "node_modules/cypress/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cypress/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/esbuild": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", + "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=10" + "node": ">=12" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "optionalDependencies": { + "@esbuild/android-arm": "0.17.18", + "@esbuild/android-arm64": "0.17.18", + "@esbuild/android-x64": "0.17.18", + "@esbuild/darwin-arm64": "0.17.18", + "@esbuild/darwin-x64": "0.17.18", + "@esbuild/freebsd-arm64": "0.17.18", + "@esbuild/freebsd-x64": "0.17.18", + "@esbuild/linux-arm": "0.17.18", + "@esbuild/linux-arm64": "0.17.18", + "@esbuild/linux-ia32": "0.17.18", + "@esbuild/linux-loong64": "0.17.18", + "@esbuild/linux-mips64el": "0.17.18", + "@esbuild/linux-ppc64": "0.17.18", + "@esbuild/linux-riscv64": "0.17.18", + "@esbuild/linux-s390x": "0.17.18", + "@esbuild/linux-x64": "0.17.18", + "@esbuild/netbsd-x64": "0.17.18", + "@esbuild/openbsd-x64": "0.17.18", + "@esbuild/sunos-x64": "0.17.18", + "@esbuild/win32-arm64": "0.17.18", + "@esbuild/win32-ia32": "0.17.18", + "@esbuild/win32-x64": "0.17.18" } }, - "node_modules/cypress/node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/esbuild-wasm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", + "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/cypress/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=6" } }, - "node_modules/cypress/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "node_modules/cypress/node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cypress/node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=10" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/cypress/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, + "optional": true, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/cypress/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/eslint": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", + "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", "dev": true, "dependencies": { - "pump": "^3.0.0" + "@eslint/eslintrc": "^1.2.3", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.2", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/cypress/node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "node_modules/eslint-config-prettier": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", + "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", "dev": true, - "engines": { - "node": ">=8.12.0" + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/cypress/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/eslint-config-standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", + "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "engines": { - "node": ">=8" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", + "eslint-plugin-promise": "^6.0.0" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "node_modules/eslint-config-standard-jsx": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", + "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peerDependencies": { + "eslint": "^8.8.0", + "eslint-plugin-react": "^7.28.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", "dev": true, "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" } }, - "node_modules/data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - }, - "engines": { - "node": ">=12" + "ms": "^2.1.1" } }, - "node_modules/dayjs": { - "version": "1.11.9", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", - "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dev": true, "dependencies": { - "ms": "2.1.2" + "debug": "^3.2.7" }, "engines": { - "node": ">=6.0" + "node": ">=4" }, "peerDependenciesMeta": { - "supports-color": { + "eslint": { "optional": true } } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "node_modules/eslint-plugin-cypress": { + "version": "2.13.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", + "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", "dev": true, "dependencies": { - "mimic-response": "^3.1.0" + "globals": "^11.12.0" + }, + "peerDependencies": { + "eslint": ">= 3.2.1" + } + }, + "node_modules/eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "dev": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" }, "engines": { - "node": ">=10" + "node": ">=8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" } }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/deep-equal": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", - "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.0", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "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-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "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.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "peer": true, - "engines": { - "node": ">=4.0.0" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "node_modules/eslint-plugin-import/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { - "execa": "^5.0.0" + "minimist": "^1.2.0" }, - "engines": { - "node": ">= 10" + "bin": { + "json5": "lib/cli.js" } }, - "node_modules/default-gateway/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": "*" } }, - "node_modules/default-gateway/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/default-gateway/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/eslint-plugin-import/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", "dev": true, "dependencies": { - "clone": "^1.0.2" + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/eslint-plugin-n": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", + "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", + "dev": true, + "dependencies": { + "builtins": "^5.0.1", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.11.0", + "minimatch": "^3.1.2", + "resolve": "^1.22.1", + "semver": "^7.3.8" + }, + "engines": { + "node": ">=12.22.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "node_modules/eslint-plugin-n/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=10" + "node": "*" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", "dev": true, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" } }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", "dev": true, "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" }, "engines": { - "node": ">= 0.4" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { - "node": ">=0.4.0" + "node": ">=0.10.0" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "node_modules/eslint-plugin-react/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">= 0.8" + "node": "*" } }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true, - "peer": true - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">=8" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "dev": true - }, - "node_modules/detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "dependencies": { - "address": "^1.0.1", - "debug": "4" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, - "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/diacritics-map": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", - "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, "engines": { - "node": ">=0.3.1" + "node": ">=10" } }, - "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "path-type": "^4.0.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/dns-packet": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", - "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=6" + "node": ">=10.13.0" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "argparse": "^2.0.1" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "webidl-conversions": "^7.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=12" + "node": "*" } }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "dependencies": { - "domelementtype": "^2.2.0" - }, "engines": { - "node": ">= 4" + "node": ">=10" }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/espree": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", + "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "url": "https://opencollective.com/eslint" } }, - "node_modules/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "dependencies": { - "is-obj": "^2.0.0" + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">=8" - } - }, - "node_modules/dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "dev": true, - "peer": true, - "dependencies": { - "readable-stream": "^2.0.2" + "node": ">=4" } }, - "node_modules/duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" } }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 6" + "node": ">=4.0" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "engines": { + "node": ">=4.0" } }, - "node_modules/ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.447", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", - "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", - "dev": true - }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "node": ">=6" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "node_modules/eventemitter-asyncresource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", + "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", "dev": true }, - "node_modules/emojilib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", - "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", - "dev": true, - "peer": true + "node_modules/eventemitter2": { + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", + "dev": true }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, "engines": { - "node": ">= 4" + "node": ">=0.8.x" } }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=4" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "node_modules/execa/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, - "optional": true, "dependencies": { - "iconv-lite": "^0.6.2" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/execa/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, - "optional": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/execa/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "dev": true, "dependencies": { - "once": "^1.4.0" + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, "engines": { - "node": ">=10.13.0" + "node": ">=4" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "ansi-colors": "^4.1.1" + "shebang-regex": "^1.0.0" }, "engines": { - "node": ">=8.6" + "node": ">=0.10.0" } }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/env-ci": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", - "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "peer": true, "dependencies": { - "execa": "^8.0.0", - "java-properties": "^1.0.2" + "isexe": "^2.0.0" }, - "engines": { - "node": "^18.17 || >=20.6.1" + "bin": { + "which": "bin/which" } }, - "node_modules/env-ci/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "node_modules/execa/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", "dev": true, - "peer": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" + "pify": "^2.2.0" }, "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=4" } }, - "node_modules/env-ci/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, - "peer": true, "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8.0" } }, - "node_modules/env-ci/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "node_modules/expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", "dev": true, - "peer": true, + "dependencies": { + "fill-range": "^2.1.0" + }, "engines": { - "node": ">=16.17.0" + "node": ">=0.10.0" } }, - "node_modules/env-ci/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "node_modules/expand-range/node_modules/fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "dev": true, - "peer": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dependencies": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "peer": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/env-ci/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "node_modules/expand-range/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/expand-range/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "dev": true, - "peer": true, "dependencies": { - "path-key": "^4.0.0" + "isarray": "1.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/env-ci/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", "dev": true, - "peer": true, "dependencies": { - "mimic-fn": "^4.0.0" + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/env-ci/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "dev": true }, - "node_modules/env-ci/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, - "peer": true, - "engines": { - "node": ">=14" + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">= 0.10.0" } }, - "node_modules/env-ci/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "node_modules/express-rate-limit": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", + "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", + "dev": true + }, + "node_modules/express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", + "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "debug": "*", + "path-to-regexp": "^1.0.3" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "node_modules/express-urlrewrite/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/express-urlrewrite/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "isarray": "0.0.1" } }, - "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "node_modules/express/node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dev": true, - "bin": { - "envinfo": "dist/cli.js" + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">=4" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "optional": true, "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" + "ms": "2.0.0" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, "dependencies": { - "is-arrayish": "^0.2.1" + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/errorhandler": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", - "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "node_modules/express/node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "dependencies": { - "accepts": "~1.3.7", - "escape-html": "~1.0.3" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, - "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" + "mime-db": "^1.28.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/es-module-lexer": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", - "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "node_modules/es-set-tostringtag": { + "node_modules/extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "is-extendable": "^0.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "dependencies": { - "has": "^1.0.3" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/external-editor/node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "os-tmpdir": "~1.0.2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.6.0" } }, - "node_modules/esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, - "hasInstallScript": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, "bin": { - "esbuild": "bin/esbuild" + "extract-zip": "cli.js" }, "engines": { - "node": ">=12" + "node": ">= 10.17.0" }, "optionalDependencies": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" + "@types/yauzl": "^2.9.1" } }, - "node_modules/esbuild-wasm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", - "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "pump": "^3.0.0" }, "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "dev": true, + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fast-redact": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", + "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" }, "engines": { - "node": ">=6.0" + "node": ">=8" }, - "optionalDependencies": { - "source-map": "~0.6.1" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "optional": true, "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" + "flat-cache": "^3.0.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/eslint-config-prettier": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", - "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", + "node_modules/file-type": { + "version": "17.1.6", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", + "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" + "dependencies": { + "readable-web-to-node-stream": "^3.0.2", + "strtok3": "^7.0.0-alpha.9", + "token-types": "^5.0.0-alpha.2" }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-config-standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", - "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "engines": { - "node": ">=12.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "eslint": "^8.0.1", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", - "eslint-plugin-promise": "^6.0.0" - } - }, - "node_modules/eslint-config-standard-jsx": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", - "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peerDependencies": { - "eslint": "^8.8.0", - "eslint-plugin-react": "^7.28.0" + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" + "minimatch": "^5.0.1" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "balanced-match": "^1.0.0" } }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-cypress": { - "version": "2.13.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", - "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", - "dev": true, - "dependencies": { - "globals": "^11.12.0" - }, - "peerDependencies": { - "eslint": ">= 3.2.1" + "node": ">=10" } }, - "node_modules/eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "node_modules/filename-reserved-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", + "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", "dev": true, - "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, "engines": { - "node": ">=8.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-es/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "node_modules/filenamify": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", + "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" + "filename-reserved-regex": "^3.0.0", + "strip-outer": "^2.0.0", + "trim-repeated": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=12.20" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "dependencies": { - "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-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "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.1" + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" }, "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "node": ">= 0.8" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "ms": "2.0.0" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" + "node": ">=8" }, - "bin": { - "json5": "lib/cli.js" + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/eslint-plugin-import/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=8" } }, - "node_modules/eslint-plugin-import/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/find-up-simple": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", + "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", "dev": true, "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-n": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", - "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", + "node_modules/find-versions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", + "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", "dev": true, "dependencies": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" + "semver-regex": "^4.0.5" }, "engines": { - "node": ">=12.22.0" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=7.0.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-n/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" }, "engines": { - "node": "*" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=4.0" }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "is-callable": "^1.1.3" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-react/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": "*" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": "*" } }, - "node_modules/eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "7.2.13", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", + "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" + "node": ">=12.13.0", + "yarn": ">=1.0.0" }, "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", - "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "typescript": ">3.6.0", + "vue-template-compiler": "*", + "webpack": "^5.11.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "peerDependenciesMeta": { + "vue-template-compiler": { + "optional": true + } } }, - "node_modules/eslint/node_modules/ajv": { + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", @@ -16117,1410 +14906,1485 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=12" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=10" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.12" } }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.6" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, "engines": { - "node": ">=8" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "dev": true, "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" } }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": "*" + "node": ">=14.14" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/fs-minipass": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", + "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "minipass": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/fs-monkey": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", + "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/espree": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", - "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "dev": true, "dependencies": { - "estraverse": "^5.1.0" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" }, "engines": { - "node": ">=0.10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, "engines": { - "node": ">=4.0" + "node": ">=6.9.0" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { - "node": ">=4.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">=8.0.0" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "node_modules/get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", "dev": true, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eventemitter-asyncresource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", - "dev": true - }, - "node_modules/eventemitter2": { - "version": "6.4.7", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", - "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", "dev": true, "engines": { - "node": ">=0.8.x" + "node": ">=4" } }, - "node_modules/execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/execa/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "node_modules/getos": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", + "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", "dev": true, "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "async": "^3.2.0" } }, - "node_modules/execa/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "assert-plus": "^1.0.0" } }, - "node_modules/execa/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "node_modules/git-log-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", + "integrity": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==", "dev": true, + "peer": true, "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" + "argv-formatter": "~1.0.0", + "spawn-error-forwarder": "~1.0.0", + "split2": "~1.0.0", + "stream-combiner2": "~1.1.1", + "through2": "~2.0.0", + "traverse": "~0.6.6" } }, - "node_modules/execa/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "node_modules/git-log-parser/node_modules/split2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", + "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", "dev": true, - "engines": { - "node": ">=4" + "peer": true, + "dependencies": { + "through2": "~2.0.0" } }, - "node_modules/execa/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, "dependencies": { - "shebang-regex": "^1.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/execa/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/execa/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "is-glob": "^4.0.1" }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">= 6" } }, - "node_modules/execa/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, - "node_modules/executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "pify": "^2.2.0" - }, - "engines": { - "node": ">=4" + "balanced-match": "^1.0.0" } }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=10" } }, - "node_modules/expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, "dependencies": { - "fill-range": "^2.1.0" + "ini": "2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/expand-range/node_modules/fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, - "dependencies": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/expand-range/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/expand-range/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "dependencies": { - "isarray": "1.0.0" + "define-properties": "^1.1.3" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", - "dev": true - }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "node_modules/globby/node_modules/fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", "dev": true, "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">= 0.10.0" + "node": ">=8.6.0" } }, - "node_modules/express-rate-limit": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", - "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", - "dev": true - }, - "node_modules/express-urlrewrite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", - "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "dependencies": { - "debug": "*", - "path-to-regexp": "^1.0.3" + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/express-urlrewrite/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "node_modules/express-urlrewrite/node_modules/path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", "dev": true, "dependencies": { - "isarray": "0.0.1" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/express/node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/gray-matter": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", + "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", "dev": true, "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "ansi-red": "^0.1.1", + "coffee-script": "^1.12.4", + "extend-shallow": "^2.0.1", + "js-yaml": "^3.8.1", + "toml": "^2.3.2" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=0.10.0" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/gulp-header": { + "version": "1.8.12", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", + "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", + "deprecated": "Removed event-stream from gulp-header", "dev": true, "dependencies": { - "ms": "2.0.0" + "concat-with-sourcemaps": "*", + "lodash.template": "^4.4.0", + "through2": "^2.0.0" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/express/node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "duplexer": "^0.1.2" }, "engines": { - "node": ">=0.6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/express/node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dev": true, "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" }, "engines": { - "node": ">= 0.8" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "mime-db": "^1.28.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "dev": true, - "dependencies": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" - }, "engines": { "node": ">=4" } }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/har-validator/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">=4" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/external-editor/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "node_modules/har-validator/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "dependencies": { - "os-tmpdir": "~1.0.2" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=0.6.0" + "node": ">= 0.4.0" } }, - "node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, - "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" + "node": ">=8" } }, - "node_modules/extract-zip/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, "dependencies": { - "pump": "^3.0.0" + "get-intrinsic": "^1.1.1" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "engines": [ - "node >=0.6.0" - ] + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "dev": true }, - "node_modules/fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", + "node_modules/hdr-histogram-js": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", + "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "@assemblyscript/loader": "^0.10.1", + "base64-js": "^1.2.0", + "pako": "^1.0.3" } }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "node_modules/hdr-histogram-percentiles-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", + "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", "dev": true }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true, - "dependencies": { - "reusify": "^1.0.4" + "bin": { + "he": "bin/he" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "node_modules/hook-std": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", + "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hosted-git-info": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", + "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", "dev": true, "dependencies": { - "websocket-driver": ">=0.5.1" + "lru-cache": "^7.5.1" }, "engines": { - "node": ">=0.8.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "dependencies": { - "bser": "2.1.1" + "engines": { + "node": ">=12" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "dependencies": { - "pend": "~1.2.0" + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", "dev": true, "dependencies": { - "escape-string-regexp": "^1.0.5" + "whatwg-encoding": "^2.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", "dev": true, - "engines": { - "node": ">=0.8.0" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">= 0.8" } }, - "node_modules/file-type": { - "version": "17.1.6", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", - "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "dependencies": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0-alpha.9", - "token-types": "^5.0.0-alpha.2" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" - } - }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "dependencies": { - "minimatch": "^5.0.1" + "node": ">=8.0.0" } }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": ">=10" + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/filename-reserved-regex": { + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", - "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/filenamify": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", - "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", + "node_modules/http-server": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", "dev": true, "dependencies": { - "filename-reserved-regex": "^3.0.0", - "strip-outer": "^2.0.0", - "trim-repeated": "^2.0.0" + "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.6", + "opener": "^1.5.1", + "portfinder": "^1.0.28", + "secure-compare": "3.0.1", + "union": "~0.5.0", + "url-join": "^4.0.1" }, - "engines": { - "node": ">=12.20" + "bin": { + "http-server": "bin/http-server" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=12" } }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/http-signature": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, "dependencies": { - "to-regex-range": "^5.0.1" + "assert-plus": "^1.0.0", + "jsprim": "^2.0.2", + "sshpk": "^1.14.1" }, "engines": { - "node": ">=8" + "node": ">=0.10" } }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "node_modules/http-status-codes": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", + "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", + "dev": true + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", "dev": true, "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=10.19.0" } }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "dependencies": { - "ms": "2.0.0" + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "node": ">=10.17.0" } }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" + "ms": "^2.0.0" } }, - "node_modules/find-up-simple": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", - "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true, + "bin": { + "husky": "lib/bin.js" + }, "engines": { - "node": ">=18" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/find-versions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", - "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "dependencies": { - "semver-regex": "^4.0.5" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "bin": { - "flat": "cli.js" + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", "dev": true, "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "harmony-reflect": "^1.4.6" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=4" } }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } - ], + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "node": ">= 4" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/ignore-walk": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", + "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", "dev": true, "dependencies": { - "is-callable": "^1.1.3" + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "node_modules/ignore-walk/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "node_modules/ignore-walk/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=14" + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/immutable": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", + "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, "engines": { - "node": ">=14" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "engines": { - "node": "*" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "7.2.13", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", - "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", + "node_modules/import-from-esm": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", + "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" + "debug": "^4.3.4", + "import-meta-resolve": "^4.0.0" }, "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 - } + "node": ">=16.20" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "dev": true, "funding": { "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" + "engines": { + "node": ">=0.8.19" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/index-to-position": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", + "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/ini": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", + "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, "engines": { - "node": ">=10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=12.0.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/inquirer-autocomplete-prompt": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", + "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "ansi-escapes": "^4.3.2", + "figures": "^3.2.0", + "picocolors": "^1.0.0", + "run-async": "^2.4.1", + "rxjs": "^7.5.4" }, "engines": { - "node": ">= 10.13.0" + "node": ">=12" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "peerDependencies": { + "inquirer": "^8.0.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "node_modules/into-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", + "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "from2": "^2.3.0", + "p-is-promise": "^3.0.0" }, "engines": { - "node": ">= 0.12" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">= 0.10" } }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", "dev": true, "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "has-bigints": "^1.0.1" }, - "engines": { - "node": ">=14.14" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fs-minipass": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", - "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "dependencies": { - "minipass": "^5.0.0" + "binary-extensions": "^2.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/fs-monkey": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", - "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=8" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -17529,111 +16393,55 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "ci-info": "^3.2.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" + "bin": { + "is-ci": "bin.js" } }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "has": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -17642,167 +16450,80 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/getos": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", - "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", - "dev": true, - "dependencies": { - "async": "^3.2.0" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/git-log-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", - "integrity": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==", - "dev": true, - "peer": true, - "dependencies": { - "argv-formatter": "~1.0.0", - "spawn-error-forwarder": "~1.0.0", - "split2": "~1.0.0", - "stream-combiner2": "~1.1.1", - "through2": "~2.0.0", - "traverse": "~0.6.6" - } - }, - "node_modules/git-log-parser/node_modules/split2": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", - "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", - "dev": true, - "peer": true, - "dependencies": { - "through2": "~2.0.0" - } - }, - "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "node": ">=0.10.0" } }, - "node_modules/glob/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", "dev": true, - "dependencies": { - "ini": "2.0.0" - }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { - "define-properties": "^1.1.3" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { "node": ">=10" @@ -17811,266 +16532,174 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, "engines": { - "node": ">=8.6.0" + "node": ">=8" } }, - "node_modules/gopd": { + "node_modules/is-lambda": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "dev": true, - "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - }, "engines": { - "node": ">=10.19.0" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/gray-matter": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", - "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", + "node_modules/is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", "dev": true, "dependencies": { - "ansi-red": "^0.1.1", - "coffee-script": "^1.12.4", - "extend-shallow": "^2.0.1", - "js-yaml": "^3.8.1", - "toml": "^2.3.2" + "kind-of": "^3.0.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/gulp-header": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "deprecated": "Removed event-stream from gulp-header", - "dev": true, - "dependencies": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" - } - }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "dependencies": { - "duplexer": "^0.1.2" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" + "node": ">=8" } }, - "node_modules/handlebars/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" + "isobject": "^3.0.1" }, "engines": { - "node": ">=6" - } - }, - "node_modules/har-validator/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "node": ">=0.10.0" } }, - "node_modules/har-validator/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, - "node_modules/harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { - "function-bind": "^1.1.1" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", "dev": true, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -18078,10 +16707,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, "dependencies": { "has-symbols": "^1.0.2" @@ -18093,1659 +16722,1662 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "node_modules/hdr-histogram-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", - "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", + "node_modules/is-text-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", + "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", "dev": true, "dependencies": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" + "text-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", - "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", - "dev": true - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", "dev": true, - "bin": { - "he": "bin/he" + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hook-std": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", - "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, - "peer": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", "dev": true, - "dependencies": { - "lru-cache": "^7.5.1" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dev": true, "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, "dependencies": { - "whatwg-encoding": "^2.0.0" + "is-docker": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ] - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "dev": true }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "node_modules/issue-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", + "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", "dev": true, + "peer": true, "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" }, "engines": { - "node": ">=8.0.0" + "node": ">=10.13" } }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "node": ">=8" } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/http-server": { - "version": "14.1.1", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", - "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": 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.6", - "opener": "^1.5.1", - "portfinder": "^1.0.28", - "secure-compare": "3.0.1", - "union": "~0.5.0", - "url-join": "^4.0.1" - }, - "bin": { - "http-server": "bin/http-server" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/http-server/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/http-server/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/http-server/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/http-server/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/http-server/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/http-signature": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", - "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", + "node_modules/jackspeak": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", + "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", "dev": true, "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^2.0.2", - "sshpk": "^1.14.1" + "@isaacs/cliui": "^8.0.2" }, "engines": { - "node": ">=0.10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/http-status-codes": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", - "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", - "dev": true - }, - "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", "dev": true, "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" }, "engines": { - "node": ">=10.19.0" + "node": ">=10" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/jake/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 6" + "node": "*" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/java-properties": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", "dev": true, + "peer": true, "engines": { - "node": ">=10.17.0" + "node": ">= 0.6.0" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", "dev": true, "dependencies": { - "ms": "^2.0.0" - } - }, - "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", - "dev": true, + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, "bin": { - "husky": "lib/bin.js" + "jest": "bin/jest.js" }, "engines": { - "node": ">=14" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/typicode" + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "execa": "^5.0.0", + "p-limit": "^3.1.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "harmony-reflect": "^1.4.6" + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, "engines": { - "node": ">= 4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/ignore-walk": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", - "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", "dev": true, "dependencies": { - "minimatch": "^9.0.0" + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/ignore-walk/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/jest-config/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "node_modules/jest-config/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "optional": true, - "bin": { - "image-size": "bin/image-size.js" + "dependencies": { + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "dev": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/import-from-esm": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", - "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", "dev": true, "dependencies": { - "debug": "^4.3.4", - "import-meta-resolve": "^4.0.0" + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" }, "engines": { - "node": ">=16.20" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "node_modules/jest-environment-jsdom": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", + "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", "dev": true, "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0", + "jsdom": "^20.0.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-meta-resolve": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", - "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, "engines": { - "node": ">=0.8.19" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/index-to-position": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", - "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, "engines": { - "node": ">=18" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", - "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=12.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inquirer-autocomplete-prompt": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", - "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", "dev": true, "dependencies": { - "ansi-escapes": "^4.3.2", - "figures": "^3.2.0", - "picocolors": "^1.0.0", - "run-async": "^2.4.1", - "rxjs": "^7.5.4" + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" }, "engines": { - "node": ">=12" - }, - "peerDependencies": { - "inquirer": "^8.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=6" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-preset-angular": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", + "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "bs-logger": "^0.2.6", + "esbuild-wasm": ">=0.13.8", + "jest-environment-jsdom": "^29.0.0", + "jest-util": "^29.0.0", + "pretty-format": "^29.0.0", + "ts-jest": "^29.0.0" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || >=16.10.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "optionalDependencies": { + "esbuild": ">=0.13.8" + }, + "peerDependencies": { + "@angular-devkit/build-angular": ">=13.0.0 <17.0.0", + "@angular/compiler-cli": ">=13.0.0 <17.0.0", + "@angular/core": ">=13.0.0 <17.0.0", + "@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0", + "jest": "^29.0.0", + "typescript": ">=4.4" } }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" }, "engines": { - "node": ">= 0.4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/into-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", - "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", + "node_modules/jest-resolve/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, - "dependencies": { - "from2": "^2.3.0", - "p-is-promise": "^3.0.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", "dev": true, "dependencies": { - "binary-extensions": "^2.0.0" + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/jest-runtime/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, "engines": { - "node": ">= 0.4" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "node_modules/jest-runtime/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "ci-info": "^3.2.0" + "brace-expansion": "^1.1.7" }, - "bin": { - "is-ci": "bin.js" + "engines": { + "node": "*" } }, - "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", "dev": true, "dependencies": { - "has": "^1.0.3" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", "dev": true, "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", "dev": true }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, - "node_modules/is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { - "kind-of": "^3.0.2" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "node_modules/jsdom/node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "node_modules/jsdom/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 4.0.0" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "dependencies": { - "isobject": "^3.0.1" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "node_modules/is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "node_modules/json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "jju": "^1.1.0" } }, - "node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/json-server": { + "version": "0.17.3", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", + "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.21", + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "standard": "^17.0.0", + "yargs": "^17.0.1" }, - "engines": { - "node": ">= 0.4" + "bin": { + "json-server": "lib/cli/bin.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12" } }, - "node_modules/is-text-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", - "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "text-extensions": "^2.0.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "node_modules/jsonc-eslint-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", + "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "acorn": "^8.5.0", + "eslint-visitor-keys": "^3.0.0", + "espree": "^9.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/ota-meshi" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "engines": [ + "node >= 0.2.0" + ] }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "JSONStream": "bin.js" + }, + "engines": { + "node": "*" } }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "node_modules/jsonwebtoken": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", + "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "jws": "^3.2.2", + "lodash": "^4.17.21", + "ms": "^2.1.1", + "semver": "^7.3.8" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12", + "npm": ">=6" } }, - "node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true + "node_modules/jsprim": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "node_modules/jsx-ast-utils": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", + "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", "dev": true, "dependencies": { - "is-docker": "^2.0.0" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "node_modules/jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, - "node_modules/issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "dev": true, - "peer": true, "dependencies": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - }, - "engines": { - "node": ">=10.13" + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "node_modules/karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "source-map-support": "^0.5.5" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/keygrip": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "tsscmp": "1.0.6" }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/keyv": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", + "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "json-buffer": "3.0.1" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" } }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "node_modules/lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, "engines": { - "node": ">=8" + "node": "> 0.8" } }, - "node_modules/jackspeak": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", - "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", + "node_modules/lazy-cache": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", + "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", "dev": true, "dependencies": { - "@isaacs/cliui": "^8.0.2" + "set-getter": "^0.1.0" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "node": ">=0.10.0" } }, - "node_modules/jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "node_modules/less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", "dev": true, "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" }, "bin": { - "jake": "bin/cli.js" + "lessc": "bin/lessc" }, "engines": { - "node": ">=10" + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" } }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/less-loader": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", + "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "klona": "^2.0.4" }, "engines": { - "node": ">=8" + "node": ">= 14.15.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" } }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "optional": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6" } }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/less/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "optional": true, "engines": { - "node": ">=7.0.0" + "node": ">=6" } }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jake/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/less/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "optional": true, + "bin": { + "semver": "bin/semver" } }, - "node_modules/java-properties": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", - "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "peer": true, + "optional": true, "engines": { - "node": ">= 0.6.0" + "node": ">=0.10.0" } }, - "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", - "import-local": "^3.0.2", - "jest-cli": "^29.5.0" - }, - "bin": { - "jest": "bin/jest.js" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=6" } }, - "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.8.0" } }, - "node_modules/jest-changed-files/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/license-webpack-plugin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", + "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" + "webpack-sources": "^3.0.0" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-sources": { + "optional": true + } } }, - "node_modules/jest-changed-files/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "dev": true, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-changed-files/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/lines-and-columns": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", + "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", "dev": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "node_modules/lint-staged": { + "version": "13.2.3", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", + "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.2" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { + "node_modules/lint-staged/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -19760,23 +18392,19 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-circus/node_modules/color-convert": { + "node_modules/lint-staged/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -19788,165 +18416,261 @@ "node": ">=7.0.0" } }, - "node_modules/jest-circus/node_modules/color-name": { + "node_modules/lint-staged/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/lint-staged/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/lint-staged/node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "engines": { "node": ">=8" } }, - "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", - "yargs": "^17.3.1" + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "bin": { - "jest": "bin/jest.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "dev": true, + "dependencies": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.13.1 || >=16.0.0" }, "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "enquirer": ">= 2.3.0 < 3" }, "peerDependenciesMeta": { - "node-notifier": { + "enquirer": { "optional": true } } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/lint-staged/node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/lint-staged/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/lint-staged/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/lint-staged/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/list-item": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", + "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", "dev": true, "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "expand-range": "^1.8.1", + "extend-shallow": "^2.0.1", + "is-number": "^2.1.0", + "repeat-string": "^1.5.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" + } + }, + "node_modules/listr2": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", + "dev": true, + "dependencies": { + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.1", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10.0.0" }, "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" + "enquirer": ">= 2.3.0 < 3" }, "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { + "enquirer": { "optional": true } } }, - "node_modules/jest-config/node_modules/ansi-styles": { + "node_modules/listr2/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -19961,23 +18685,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config/node_modules/color-convert": { + "node_modules/listr2/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -19989,328 +18713,266 @@ "node": ">=7.0.0" } }, - "node_modules/jest-config/node_modules/color-name": { + "node_modules/listr2/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-config/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/listr2/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=8" } }, - "node_modules/jest-config/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/load-json-file/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=6.11.5" } }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">= 12.13.0" } }, - "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "detect-newline": "^3.0.0" + "p-locate": "^4.1.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "node_modules/lockfile": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", + "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "signal-exit": "^3.0.2" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, + "node_modules/lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", + "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 4" } }, - "node_modules/jest-each/node_modules/chalk": { + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "dev": true + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "dev": true, + "peer": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.escaperegexp": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } + "peer": true }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } + "peer": true }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "dev": true, + "peer": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true }, - "node_modules/jest-environment-jsdom": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", - "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "dev": true + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/jsdom": "^20.0.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0", - "jsdom": "^20.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" } }, - "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "lodash._reinterpolate": "^3.0.0" } }, - "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "peer": true }, - "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "node": ">=10" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "node_modules/log-update/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20325,23 +18987,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { + "node_modules/log-update/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -20353,3618 +18999,3619 @@ "node": ">=7.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { + "node_modules/log-update/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=4" } }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/lowdb/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "yallist": "^3.0.2" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" + "node_modules/magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "engines": { + "node": ">=12" } }, - "node_modules/jest-preset-angular": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", - "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { - "bs-logger": "^0.2.6", - "esbuild-wasm": ">=0.13.8", - "jest-environment-jsdom": "^29.0.0", - "jest-util": "^29.0.0", - "pretty-format": "^29.0.0", - "ts-jest": "^29.0.0" + "semver": "^6.0.0" }, "engines": { - "node": "^14.15.0 || >=16.10.0" - }, - "optionalDependencies": { - "esbuild": ">=0.13.8" + "node": ">=8" }, - "peerDependencies": { - "@angular-devkit/build-angular": ">=13.0.0 <17.0.0", - "@angular/compiler-cli": ">=13.0.0 <17.0.0", - "@angular/core": ">=13.0.0 <17.0.0", - "@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0", - "jest": "^29.0.0", - "typescript": ">=4.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/make-fetch-happen": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", + "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "agentkeepalive": "^4.2.1", + "cacache": "^17.0.0", + "http-cache-semantics": "^4.1.1", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^10.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, - "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "tmpl": "1.0.5" } }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/markdown-link": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", + "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/markdown-toc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", + "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "concat-stream": "^1.5.2", + "diacritics-map": "^0.1.0", + "gray-matter": "^2.1.0", + "lazy-cache": "^2.0.2", + "list-item": "^1.1.1", + "markdown-link": "^0.1.1", + "minimist": "^1.2.0", + "mixin-deep": "^1.1.3", + "object.pick": "^1.2.0", + "remarkable": "^1.7.1", + "repeat-string": "^1.6.1", + "strip-color": "^0.1.0" + }, + "bin": { + "markdown-toc": "cli.js" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-resolve/node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true, - "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/marked": { + "version": "9.1.6", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", + "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "peer": true, + "bin": { + "marked": "bin/marked.js" }, "engines": { - "node": ">=8" + "node": ">= 16" } }, - "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "node_modules/marked-terminal": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", + "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", "dev": true, + "peer": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "ansi-escapes": "^6.2.0", + "cardinal": "^2.1.1", + "chalk": "^5.3.0", + "cli-table3": "^0.6.3", + "node-emoji": "^2.1.3", + "supports-hyperlinks": "^3.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=16.0.0" + }, + "peerDependencies": { + "marked": ">=1 <12" } }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/marked-terminal/node_modules/ansi-escapes": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", + "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", "dev": true, + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "type-fest": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/marked-terminal/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "peer": true, "engines": { - "node": ">=10" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/marked-terminal/node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "peer": true, "engines": { - "node": ">=7.0.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/math-random": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", "dev": true }, - "node_modules/jest-runner/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "fs-monkey": "^1.0.4" }, "engines": { - "node": ">=8" + "node": ">= 4.0.0" } }, - "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.10.0" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/meow": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", + "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=16.10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 8" } }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.10" } }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/method-override/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/method-override/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/jest-runtime/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 0.6" } }, - "node_modules/jest-runtime/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": "*" + "node": ">=8.6" } }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.6" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "mime-db": "1.52.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6" } }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.7.5", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", + "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 8" } }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "yallist": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/minipass-collect/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/minipass-fetch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", + "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "minipass": "^5.0.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "minipass": "^3.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 8" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" } }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/minipass-json-stream/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "minipass": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.5.0", - "string-length": "^4.0.1" + "minipass": "^3.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/minipass-sized/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 8" } }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "yallist": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "dependencies": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "is-plain-object": "^2.0.4" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "minimist": "^1.2.6" }, "bin": { - "js-yaml": "bin/js-yaml.js" + "mkdirp": "bin/cmd.js" } }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, - "node_modules/jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "node_modules/morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", "dev": true, "dependencies": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "node": ">= 0.8.0" } }, - "node_modules/jsdom/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/morgan/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" + "ms": "2.0.0" } }, - "node_modules/jsdom/node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "node_modules/morgan/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/morgan/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dev": true, "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "ee-first": "1.1.1" }, "engines": { - "node": ">=6" + "node": ">= 0.8" } }, - "node_modules/jsdom/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">=10" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" }, - "engines": { - "node": ">=4" + "bin": { + "multicast-dns": "cli.js" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "node_modules/mv": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", + "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", + "dev": true, + "dependencies": { + "mkdirp": "~0.5.1", + "ncp": "~2.0.0", + "rimraf": "~2.4.0" + }, + "engines": { + "node": ">=0.8.0" + } }, - "node_modules/json-parse-helpfulerror": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", - "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", + "node_modules/mv/node_modules/glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", "dev": true, "dependencies": { - "jju": "^1.1.0" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" } }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "node_modules/mv/node_modules/rimraf": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", + "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", + "dev": true, + "dependencies": { + "glob": "^6.0.1" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/nanoclone": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", + "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", "dev": true }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/json-server": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", - "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "node_modules/ncp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", + "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", + "dev": true, + "bin": { + "ncp": "bin/ncp" + } + }, + "node_modules/needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", "dev": true, + "optional": true, "dependencies": { - "body-parser": "^1.19.0", - "chalk": "^4.1.2", - "compression": "^1.7.4", - "connect-pause": "^0.1.1", - "cors": "^2.8.5", - "errorhandler": "^1.5.1", - "express": "^4.17.1", - "express-urlrewrite": "^1.4.0", - "json-parse-helpfulerror": "^1.0.3", - "lodash": "^4.17.21", - "lodash-id": "^0.14.1", - "lowdb": "^1.0.0", - "method-override": "^3.0.0", - "morgan": "^1.10.0", - "nanoid": "^3.1.23", - "please-upgrade-node": "^3.2.0", - "pluralize": "^8.0.0", - "server-destroy": "^1.0.1", - "standard": "^17.0.0", - "yargs": "^17.0.1" + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" }, "bin": { - "json-server": "lib/cli/bin.js" + "needle": "bin/needle" }, "engines": { - "node": ">=12" + "node": ">= 4.4.x" } }, - "node_modules/json-server/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, + "optional": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "ms": "^2.1.1" } }, - "node_modules/json-server/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/needle/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/json-server/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.6" } }, - "node_modules/json-server/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "node_modules/json-server/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/nerf-dart": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", + "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", + "dev": true, + "peer": true + }, + "node_modules/nice-napi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", + "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "!win32" + ], "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "node-addon-api": "^3.0.0", + "node-gyp-build": "^4.2.2" } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", "dev": true }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "node_modules/node-addon-api": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", + "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", + "dev": true + }, + "node_modules/node-emoji": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", + "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", "dev": true, - "bin": { - "json5": "lib/cli.js" + "peer": true, + "dependencies": { + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" } }, - "node_modules/jsonc-eslint-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", - "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, "dependencies": { - "acorn": "^8.5.0", - "eslint-visitor-keys": "^3.0.0", - "espree": "^9.0.0", - "semver": "^7.3.5" + "whatwg-url": "^5.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "4.x || >=6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ota-meshi" + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/jsonparse": { + "node_modules/node-forge": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true, - "engines": [ - "node >= 0.2.0" - ] - }, - "node_modules/JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, - "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - }, - "bin": { - "JSONStream": "bin.js" - }, "engines": { - "node": "*" + "node": ">= 6.13.0" } }, - "node_modules/jsonwebtoken": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", + "node_modules/node-gyp": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", + "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", "dev": true, "dependencies": { - "jws": "^3.2.2", - "lodash": "^4.17.21", - "ms": "^2.1.1", - "semver": "^7.3.8" + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^11.0.3", + "nopt": "^6.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">=12", - "npm": ">=6" + "node": "^12.13 || ^14.13 || >=16" } }, - "node_modules/jsprim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", - "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", + "node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", - "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", + "node_modules/node-gyp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=4.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "node_modules/node-gyp/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dev": true, - "dependencies": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true }, - "node_modules/karma-source-map-support": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", - "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", - "dev": true, - "dependencies": { - "source-map-support": "^0.5.5" - } + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true }, - "node_modules/keygrip": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", - "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", + "node_modules/nopt": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dev": true, "dependencies": { - "tsscmp": "1.0.6" + "abbrev": "^1.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", + "node_modules/normalize-package-data": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", + "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", "dev": true, "dependencies": { - "json-buffer": "3.0.1" + "hosted-git-info": "^6.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true, "engines": { - "node": ">= 8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/launch-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", - "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "node_modules/npm": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", + "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/config", + "@npmcli/fs", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/promise-spawn", + "@npmcli/run-script", + "@sigstore/tuf", + "abbrev", + "archy", + "cacache", + "chalk", + "ci-info", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "fs-minipass", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minimatch", + "minipass", + "minipass-pipeline", + "ms", + "node-gyp", + "nopt", + "normalize-package-data", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "p-map", + "pacote", + "parse-conflict-json", + "proc-log", + "qrcode-terminal", + "read", + "semver", + "spdx-expression-parse", + "ssri", + "strip-ansi", + "supports-color", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], "dev": true, + "peer": true, "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" - } - }, - "node_modules/lazy-ass": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", - "dev": true, + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^7.2.1", + "@npmcli/config": "^8.0.2", + "@npmcli/fs": "^3.1.0", + "@npmcli/map-workspaces": "^3.0.4", + "@npmcli/package-json": "^5.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.2", + "@sigstore/tuf": "^2.2.0", + "abbrev": "^2.0.0", + "archy": "~1.0.0", + "cacache": "^18.0.1", + "chalk": "^5.3.0", + "ci-info": "^4.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.3", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.16", + "fs-minipass": "^3.0.3", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "hosted-git-info": "^7.0.1", + "ini": "^4.1.1", + "init-package-json": "^6.0.0", + "is-cidr": "^5.0.3", + "json-parse-even-better-errors": "^3.0.1", + "libnpmaccess": "^8.0.1", + "libnpmdiff": "^6.0.3", + "libnpmexec": "^7.0.4", + "libnpmfund": "^5.0.1", + "libnpmhook": "^10.0.0", + "libnpmorg": "^6.0.1", + "libnpmpack": "^6.0.3", + "libnpmpublish": "^9.0.2", + "libnpmsearch": "^7.0.0", + "libnpmteam": "^6.0.0", + "libnpmversion": "^5.0.1", + "make-fetch-happen": "^13.0.0", + "minimatch": "^9.0.3", + "minipass": "^7.0.4", + "minipass-pipeline": "^1.2.4", + "ms": "^2.1.2", + "node-gyp": "^10.0.1", + "nopt": "^7.2.0", + "normalize-package-data": "^6.0.0", + "npm-audit-report": "^5.0.0", + "npm-install-checks": "^6.3.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-profile": "^9.0.0", + "npm-registry-fetch": "^16.1.0", + "npm-user-validate": "^2.0.0", + "npmlog": "^7.0.1", + "p-map": "^4.0.0", + "pacote": "^17.0.5", + "parse-conflict-json": "^3.0.1", + "proc-log": "^3.0.0", + "qrcode-terminal": "^0.12.0", + "read": "^2.1.0", + "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1", + "ssri": "^10.0.5", + "strip-ansi": "^7.1.0", + "supports-color": "^9.4.0", + "tar": "^6.2.0", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^3.0.0", + "validate-npm-package-name": "^5.0.0", + "which": "^4.0.0", + "write-file-atomic": "^5.0.1" + }, + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" + }, "engines": { - "node": "> 0.8" + "node": "^18.17.0 || >=20.5.0" } }, - "node_modules/lazy-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", + "node_modules/npm-bundled": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", + "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", "dev": true, "dependencies": { - "set-getter": "^0.1.0" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "node_modules/npm-install-checks": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.1.1.tgz", + "integrity": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==", "dev": true, "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" + "semver": "^7.1.1" }, "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "source-map": "~0.6.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, - "dependencies": { - "klona": "^2.0.4" - }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "less": "^3.5.0 || ^4.0.0", - "webpack": "^5.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/less/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "node_modules/npm-package-arg": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", + "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", "dev": true, - "optional": true, "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "hosted-git-info": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": ">=6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/less/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "node_modules/npm-packlist": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", + "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", "dev": true, - "optional": true, + "dependencies": { + "ignore-walk": "^6.0.0" + }, "engines": { - "node": ">=6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/less/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/npm-pick-manifest": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", + "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" + "dependencies": { + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^10.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/less/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/npm-registry-fetch": { + "version": "14.0.5", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", + "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", "dev": true, - "optional": true, + "dependencies": { + "make-fetch-happen": "^11.0.0", + "minipass": "^5.0.0", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^10.0.0", + "proc-log": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, "engines": { - "node": ">=6" + "node": ">= 4" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/npm-run-all/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/license-webpack-plugin": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", - "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "dependencies": { - "webpack-sources": "^3.0.0" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-sources": { - "optional": true - } + "engines": { + "node": ">=4.8" } }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "node_modules/npm-run-all/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "engines": { - "node": ">=10" + "node": ">=0.8.0" } }, - "node_modules/lines-and-columns": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", - "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", + "node_modules/npm-run-all/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=4" } }, - "node_modules/lint-staged": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", - "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, - "dependencies": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", - "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.2" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" - }, "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" + "node": ">=4" } }, - "node_modules/lint-staged/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/npm-run-all/node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" + "bin": { + "pidtree": "bin/pidtree.js" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10" } }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "bin": { + "semver": "bin/semver" } }, - "node_modules/lint-staged/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "shebang-regex": "^1.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/lint-staged/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/lint-staged/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "node_modules/npm-run-all/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, "engines": { - "node": ">=14" + "node": ">=0.10.0" } }, - "node_modules/lint-staged/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "node_modules/npm-run-all/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "has-flag": "^3.0.0" }, "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=4" } }, - "node_modules/lint-staged/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "isexe": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "which": "bin/which" } }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "node_modules/npm/node_modules/@colors/colors": { + "version": "1.5.0", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.1.90" } }, - "node_modules/lint-staged/node_modules/listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "node_modules/npm/node_modules/@isaacs/cliui": { + "version": "8.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "node": ">=12" } }, - "node_modules/lint-staged/node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "node_modules/npm/node_modules/@npmcli/agent": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "path-key": "^4.0.0" + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "7.2.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "mimic-fn": "^4.0.0" + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/fs": "^3.1.0", + "@npmcli/installed-package-contents": "^2.0.2", + "@npmcli/map-workspaces": "^3.0.2", + "@npmcli/metavuln-calculator": "^7.0.0", + "@npmcli/name-from-folder": "^2.0.0", + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", + "@npmcli/query": "^3.0.1", + "@npmcli/run-script": "^7.0.2", + "bin-links": "^4.0.1", + "cacache": "^18.0.0", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^7.0.1", + "json-parse-even-better-errors": "^3.0.0", + "json-stringify-nice": "^1.1.4", + "minimatch": "^9.0.0", + "nopt": "^7.0.0", + "npm-install-checks": "^6.2.0", + "npm-package-arg": "^11.0.1", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "parse-conflict-json": "^3.0.0", + "proc-log": "^3.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.2", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^10.0.5", + "treeverse": "^3.0.0", + "walk-up-path": "^3.0.1" }, - "engines": { - "node": ">=12" + "bin": { + "arborist": "bin/index.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "node_modules/npm/node_modules/@npmcli/config": { + "version": "8.0.3", "dev": true, - "engines": { - "node": ">=12" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/map-workspaces": "^3.0.2", + "ci-info": "^4.0.0", + "ini": "^4.1.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.5", + "walk-up-path": "^3.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/slice-ansi": { + "node_modules/npm/node_modules/@npmcli/disparity-colors": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "ansi-styles": "^4.3.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lint-staged/node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "3.1.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "semver": "^7.3.5" + }, "engines": { - "node": ">= 14" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/list-item": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", - "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", + "node_modules/npm/node_modules/@npmcli/git": { + "version": "5.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "expand-range": "^1.8.1", - "extend-shallow": "^2.0.1", - "is-number": "^2.1.0", - "repeat-string": "^1.5.2" + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/listr2": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", - "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "2.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.1", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=10.0.0" + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" + "bin": { + "installed-package-contents": "lib/index.js" }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "3.0.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "@npmcli/name-from-folder": "^2.0.0", + "glob": "^10.2.2", + "minimatch": "^9.0.0", + "read-package-json-fast": "^3.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "cacache": "^18.0.0", + "json-parse-even-better-errors": "^3.0.0", + "pacote": "^17.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/listr2/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "2.0.0", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=7.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/listr2/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/listr2/node_modules/is-fullwidth-code-point": { + "node_modules/npm/node_modules/@npmcli/node-gyp": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/listr2/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "5.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^3.0.0", + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "which": "^4.0.0" }, "engines": { - "node": ">=4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/npm/node_modules/@npmcli/query": { + "version": "3.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/load-json-file/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "7.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/npm/node_modules/@pkgjs/parseargs": { + "version": "0.11.0", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "node_modules/npm/node_modules/@sigstore/bundle": { + "version": "2.1.0", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1" + }, "engines": { - "node": ">=6.11.5" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "node_modules/npm/node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "engines": { - "node": ">= 12.13.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/npm/node_modules/@sigstore/sign": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "dependencies": { - "p-locate": "^4.1.0" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lockfile": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", - "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", + "node_modules/npm/node_modules/@sigstore/tuf": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, "dependencies": { - "signal-exit": "^3.0.2" + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true - }, - "node_modules/lodash-id": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", - "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", + "node_modules/npm/node_modules/@tufjs/canonical-json": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", - "dev": true, - "peer": true - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "node_modules/lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", - "dev": true, - "peer": true - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true, - "peer": true - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", - "dev": true, - "peer": true - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "node_modules/npm/node_modules/@tufjs/models": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "node_modules/npm/node_modules/abbrev": { + "version": "2.0.0", "dev": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0" + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "node_modules/lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "node_modules/npm/node_modules/abort-controller": { + "version": "3.0.0", "dev": true, - "peer": true + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "node_modules/npm/node_modules/agent-base": { + "version": "7.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "debug": "^4.3.4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 14" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/npm/node_modules/ansi-regex": { + "version": "6.0.1", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/npm/node_modules/ansi-styles": { + "version": "6.2.1", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=7.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "4.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "delegates": "^1.0.0", + "readable-stream": "^4.1.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/base64-js": { + "version": "1.5.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/bin-links": { + "version": "4.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" + "cmd-shim": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "read-cmd-shim": "^4.0.0", + "write-file-atomic": "^5.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.2.0", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-update/node_modules/color-convert": { + "node_modules/npm/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "balanced-match": "^1.0.0" } }, - "node_modules/log-update/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/npm/node_modules/buffer": { + "version": "6.0.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } }, - "node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/npm/node_modules/builtins": { + "version": "5.0.1", "dev": true, - "engines": { - "node": ">=8" + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "semver": "^7.0.0" } }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "node_modules/npm/node_modules/cacache": { + "version": "18.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, "engines": { - "node": ">=10" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/chalk": { + "version": "5.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/npm/node_modules/ci-info": { + "version": "4.0.0", "dev": true, - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/lowdb": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", - "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "node_modules/npm/node_modules/cidr-regex": { + "version": "4.0.3", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "dependencies": { - "graceful-fs": "^4.1.3", - "is-promise": "^2.1.0", - "lodash": "4", - "pify": "^3.0.0", - "steno": "^0.4.1" + "ip-regex": "^5.0.0" }, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/lowdb/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "node_modules/npm/node_modules/cli-columns": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "yallist": "^3.0.2" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.3", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "semver": "^6.0.0" + "string-width": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "10.* || >= 12.*" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", "dev": true, - "bin": { - "semver": "bin/semver.js" + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.8" } }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/make-fetch-happen": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", - "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", + "node_modules/npm/node_modules/cmd-shim": { + "version": "6.0.2", "dev": true, - "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/make-fetch-happen/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">=12" + "node": ">=7.0.0" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", "dev": true, - "dependencies": { - "tmpl": "1.0.5" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/markdown-link": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", - "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", "dev": true, - "engines": { - "node": ">=0.10.0" + "inBundle": true, + "license": "ISC", + "peer": true, + "bin": { + "color-support": "bin.js" } }, - "node_modules/markdown-toc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", - "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", + "node_modules/npm/node_modules/columnify": { + "version": "1.6.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "concat-stream": "^1.5.2", - "diacritics-map": "^0.1.0", - "gray-matter": "^2.1.0", - "lazy-cache": "^2.0.2", - "list-item": "^1.1.1", - "markdown-link": "^0.1.1", - "minimist": "^1.2.0", - "mixin-deep": "^1.1.3", - "object.pick": "^1.2.0", - "remarkable": "^1.7.1", - "repeat-string": "^1.6.1", - "strip-color": "^0.1.0" - }, - "bin": { - "markdown-toc": "cli.js" + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, - "node_modules/marked": { - "version": "9.1.6", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", - "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", + "node_modules/npm/node_modules/columnify/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, + "inBundle": true, + "license": "MIT", "peer": true, - "bin": { - "marked": "bin/marked.js" - }, "engines": { - "node": ">= 16" + "node": ">=8" } }, - "node_modules/marked-terminal": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", - "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", + "node_modules/npm/node_modules/columnify/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", "peer": true, "dependencies": { - "ansi-escapes": "^6.2.0", - "cardinal": "^2.1.1", - "chalk": "^5.3.0", - "cli-table3": "^0.6.3", - "node-emoji": "^2.1.3", - "supports-hyperlinks": "^3.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "marked": ">=1 <12" + "node": ">=8" } }, - "node_modules/marked-terminal/node_modules/ansi-escapes": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", - "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/cross-spawn": { + "version": "7.0.3", "dev": true, + "inBundle": true, + "license": "MIT", "peer": true, "dependencies": { - "type-fest": "^3.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/marked-terminal/node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "node_modules/npm/node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", "dev": true, + "inBundle": true, + "license": "ISC", "peer": true, - "engines": { - "node": ">=14.16" + "dependencies": { + "isexe": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", - "dev": true - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "node_modules/npm/node_modules/cssesc": { + "version": "3.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "bin": { + "cssesc": "bin/cssesc" + }, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "node_modules/npm/node_modules/debug": { + "version": "4.3.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "fs-monkey": "^1.0.4" + "ms": "2.1.2" }, "engines": { - "node": ">= 4.0.0" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", "dev": true, - "engines": { - "node": ">= 0.10.0" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/meow": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", - "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", + "node_modules/npm/node_modules/defaults": { + "version": "1.0.4", "dev": true, - "engines": { - "node": ">=16.10" + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "clone": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/npm/node_modules/delegates": { + "version": "1.0.0", "dev": true, - "engines": { - "node": ">= 8" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/method-override": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", - "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "node_modules/npm/node_modules/diff": { + "version": "5.1.0", "dev": true, - "dependencies": { - "debug": "3.1.0", - "methods": "~1.1.2", - "parseurl": "~1.3.2", - "vary": "~1.1.2" - }, + "inBundle": true, + "license": "BSD-3-Clause", + "peer": true, "engines": { - "node": ">= 0.10" + "node": ">=0.3.1" } }, - "node_modules/method-override/node_modules/debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "node_modules/npm/node_modules/eastasianwidth": { + "version": "0.2.0", "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/method-override/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", "dev": true, - "engines": { - "node": ">= 0.6" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" + "iconv-lite": "^0.6.2" } }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", "dev": true, - "bin": { - "mime": "cli.js" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", "dev": true, - "engines": { - "node": ">= 0.6" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/npm/node_modules/event-target-shim": { + "version": "5.0.1", "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/npm/node_modules/events": { + "version": "3.3.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=6" + "node": ">=0.8.x" } }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "node_modules/npm/node_modules/exponential-backoff": { + "version": "3.1.1", "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=4" + "node": ">= 4.9.1" } }, - "node_modules/mini-css-extract-plugin": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", - "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", + "node_modules/npm/node_modules/foreground-child": { + "version": "3.1.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "schema-utils": "^4.0.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">= 12.13.0" + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "node_modules/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "node_modules/npm/node_modules/fs-minipass": { + "version": "3.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "brace-expansion": "^1.1.7" + "minipass": "^7.0.3" }, "engines": { - "node": "*" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "node_modules/npm/node_modules/gauge": { + "version": "5.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "node_modules/npm/node_modules/gauge/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/npm/node_modules/gauge/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, - "node_modules/minipass-collect/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-fetch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", - "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", + "node_modules/npm/node_modules/glob": { + "version": "10.3.10", "dev": true, - "dependencies": { - "minipass": "^5.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=16 || 14 >=14.17" }, - "optionalDependencies": { - "encoding": "^0.1.13" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.11", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/hasown": { + "version": "2.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "minipass": "^3.0.0" + "function-bind": "^1.1.2" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" } }, - "node_modules/minipass-flush/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/npm/node_modules/hosted-git-info": { + "version": "7.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "lru-cache": "^10.0.1" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/minipass-flush/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.1", "dev": true, - "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - } + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true }, - "node_modules/minipass-json-stream/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "7.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">=8" + "node": ">= 14" } }, - "node_modules/minipass-json-stream/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "7.0.2", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "minipass": "^3.0.0" + "agent-base": "^7.0.2", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 14" } }, - "node_modules/minipass-pipeline/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/minipass-pipeline/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/npm/node_modules/ieee754": { + "version": "1.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "BSD-3-Clause", + "peer": true }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "node_modules/npm/node_modules/ignore-walk": { + "version": "6.0.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "minipass": "^3.0.0" + "minimatch": "^9.0.0" }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=8" + "node": ">=0.8.19" } }, - "node_modules/minipass-sized/node_modules/yallist": { + "node_modules/npm/node_modules/indent-string": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "node_modules/npm/node_modules/ini": { + "version": "4.1.1", "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { - "node": ">= 8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/npm/node_modules/init-package-json": { + "version": "6.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "yallist": "^4.0.0" + "npm-package-arg": "^11.0.0", + "promzard": "^1.0.0", + "read": "^2.0.0", + "read-package-json": "^7.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/npm/node_modules/ip": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "node_modules/npm/node_modules/ip-regex": { + "version": "5.0.0", "dev": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "node_modules/npm/node_modules/is-cidr": { + "version": "5.0.3", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "dependencies": { - "is-plain-object": "^2.0.4" + "cidr-regex": "4.0.3" }, "engines": { - "node": ">=0.10.0" + "node": ">=14" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "node_modules/npm/node_modules/is-core-module": { + "version": "2.13.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "minimist": "^1.2.6" + "hasown": "^2.0.0" }, - "bin": { - "mkdirp": "bin/cmd.js" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", "dev": true, - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/morgan/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", "dev": true, - "dependencies": { - "ms": "2.0.0" - } + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/morgan/node_modules/ms": { + "node_modules/npm/node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "node_modules/npm/node_modules/jackspeak": { + "version": "2.3.6", "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "peer": true, "dependencies": { - "ee-first": "1.1.1" + "@isaacs/cliui": "^8.0.2" }, "engines": { - "node": ">= 0.8" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "3.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", "dev": true, - "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" + "inBundle": true, + "license": "ISC", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "dev": true, + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT", + "peer": true }, - "node_modules/mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", + "node_modules/npm/node_modules/just-diff": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "5.5.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "8.0.2", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0" }, "engines": { - "node": ">=0.8.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/mv/node_modules/glob": { + "node_modules/npm/node_modules/libnpmdiff": { "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "@npmcli/arborist": "^7.2.1", + "@npmcli/disparity-colors": "^3.0.0", + "@npmcli/installed-package-contents": "^2.0.2", + "binary-extensions": "^2.2.0", + "diff": "^5.1.0", + "minimatch": "^9.0.0", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4", + "tar": "^6.2.0" }, "engines": { - "node": "*" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/mv/node_modules/rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", + "node_modules/npm/node_modules/libnpmexec": { + "version": "7.0.5", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "glob": "^6.0.1" + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "ci-info": "^4.0.0", + "npm-package-arg": "^11.0.1", + "npmlog": "^7.0.1", + "pacote": "^17.0.4", + "proc-log": "^3.0.0", + "read": "^2.0.0", + "read-package-json-fast": "^3.0.2", + "semver": "^7.3.7", + "walk-up-path": "^3.0.1" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/nanoclone": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", - "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "node_modules/npm/node_modules/libnpmfund": { + "version": "5.0.2", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/arborist": "^7.2.1" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "node_modules/ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", + "node_modules/npm/node_modules/libnpmhook": { + "version": "10.0.1", "dev": true, - "bin": { - "ncp": "bin/ncp" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/needle": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", - "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "node_modules/npm/node_modules/libnpmorg": { + "version": "6.0.2", "dev": true, - "optional": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "debug": "^3.2.6", - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" }, - "bin": { - "needle": "bin/needle" + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/libnpmpack": { + "version": "6.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", + "npm-package-arg": "^11.0.1", + "pacote": "^17.0.4" }, "engines": { - "node": ">= 4.4.x" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/npm/node_modules/libnpmpublish": { + "version": "9.0.3", "dev": true, - "optional": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ms": "^2.1.1" + "ci-info": "^4.0.0", + "normalize-package-data": "^6.0.0", + "npm-package-arg": "^11.0.1", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7", + "sigstore": "^2.1.0", + "ssri": "^10.0.5" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/needle/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/npm/node_modules/libnpmsearch": { + "version": "7.0.1", "dev": true, - "optional": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "npm-registry-fetch": "^16.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/npm/node_modules/libnpmteam": { + "version": "6.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^16.0.0" + }, "engines": { - "node": ">= 0.6" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true + "node_modules/npm/node_modules/libnpmversion": { + "version": "5.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/git": "^5.0.3", + "@npmcli/run-script": "^7.0.2", + "json-parse-even-better-errors": "^3.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } }, - "node_modules/nerf-dart": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", - "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", + "node_modules/npm/node_modules/lru-cache": { + "version": "10.1.0", "dev": true, - "peer": true + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": "14 || >=16.14" + } }, - "node_modules/nice-napi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", - "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "13.0.0", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "!win32" - ], + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "node-addon-api": "^3.0.0", - "node-gyp-build": "^4.2.2" + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", - "dev": true + "node_modules/npm/node_modules/minimatch": { + "version": "9.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/node-addon-api": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", - "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", - "dev": true + "node_modules/npm/node_modules/minipass": { + "version": "7.0.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } }, - "node_modules/node-emoji": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", - "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", + "node_modules/npm/node_modules/minipass-collect": { + "version": "2.0.1", "dev": true, + "inBundle": true, + "license": "ISC", "peer": true, "dependencies": { - "@sindresorhus/is": "^4.6.0", - "char-regex": "^1.0.2", - "emojilib": "^2.4.0", - "skin-tone": "^2.0.0" + "minipass": "^7.0.3" }, "engines": { - "node": ">=18" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "node_modules/npm/node_modules/minipass-fetch": { + "version": "3.0.4", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "whatwg-url": "^5.0.0" + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true + "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" } }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">= 6.13.0" + "node": ">=8" } }, - "node_modules/node-gyp": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", - "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^11.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" + "minipass": "^3.0.0" }, "engines": { - "node": "^12.13 || ^14.13 || >=16" + "node": ">=8" } }, - "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", "dev": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=8" } }, - "node_modules/node-gyp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "brace-expansion": "^1.1.7" + "yallist": "^4.0.0" }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } }, - "node_modules/nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "node_modules/npm/node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "abbrev": "^1.0.0" + "yallist": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "bin": { - "nopt": "bin/nopt.js" + "mkdirp": "bin/cmd.js" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=10" } }, - "node_modules/normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", "dev": true, - "dependencies": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/mute-stream": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.3", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "node_modules/npm/node_modules/node-gyp": { + "version": "10.0.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "node_modules/npm/node_modules/nopt": { + "version": "7.2.0", "dev": true, - "engines": { - "node": ">=10" + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "abbrev": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", - "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", - "bundleDependencies": [ - "@isaacs/string-locale-compare", - "@npmcli/arborist", - "@npmcli/config", - "@npmcli/fs", - "@npmcli/map-workspaces", - "@npmcli/package-json", - "@npmcli/promise-spawn", - "@npmcli/run-script", - "@sigstore/tuf", - "abbrev", - "archy", - "cacache", - "chalk", - "ci-info", - "cli-columns", - "cli-table3", - "columnify", - "fastest-levenshtein", - "fs-minipass", - "glob", - "graceful-fs", - "hosted-git-info", - "ini", - "init-package-json", - "is-cidr", - "json-parse-even-better-errors", - "libnpmaccess", - "libnpmdiff", - "libnpmexec", - "libnpmfund", - "libnpmhook", - "libnpmorg", - "libnpmpack", - "libnpmpublish", - "libnpmsearch", - "libnpmteam", - "libnpmversion", - "make-fetch-happen", - "minimatch", - "minipass", - "minipass-pipeline", - "ms", - "node-gyp", - "nopt", - "normalize-package-data", - "npm-audit-report", - "npm-install-checks", - "npm-package-arg", - "npm-pick-manifest", - "npm-profile", - "npm-registry-fetch", - "npm-user-validate", - "npmlog", - "p-map", - "pacote", - "parse-conflict-json", - "proc-log", - "qrcode-terminal", - "read", - "semver", - "spdx-expression-parse", - "ssri", - "strip-ansi", - "supports-color", - "tar", - "text-table", - "tiny-relative-date", - "treeverse", - "validate-npm-package-name", - "which", - "write-file-atomic" - ], + "node_modules/npm/node_modules/normalize-package-data": { + "version": "6.0.0", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", "peer": true, "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^7.2.1", - "@npmcli/config": "^8.0.2", - "@npmcli/fs": "^3.1.0", - "@npmcli/map-workspaces": "^3.0.4", - "@npmcli/package-json": "^5.0.0", - "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.2", - "@sigstore/tuf": "^2.2.0", - "abbrev": "^2.0.0", - "archy": "~1.0.0", - "cacache": "^18.0.1", - "chalk": "^5.3.0", - "ci-info": "^4.0.0", - "cli-columns": "^4.0.0", - "cli-table3": "^0.6.3", - "columnify": "^1.6.0", - "fastest-levenshtein": "^1.0.16", - "fs-minipass": "^3.0.3", - "glob": "^10.3.10", - "graceful-fs": "^4.2.11", - "hosted-git-info": "^7.0.1", - "ini": "^4.1.1", - "init-package-json": "^6.0.0", - "is-cidr": "^5.0.3", - "json-parse-even-better-errors": "^3.0.1", - "libnpmaccess": "^8.0.1", - "libnpmdiff": "^6.0.3", - "libnpmexec": "^7.0.4", - "libnpmfund": "^5.0.1", - "libnpmhook": "^10.0.0", - "libnpmorg": "^6.0.1", - "libnpmpack": "^6.0.3", - "libnpmpublish": "^9.0.2", - "libnpmsearch": "^7.0.0", - "libnpmteam": "^6.0.0", - "libnpmversion": "^5.0.1", - "make-fetch-happen": "^13.0.0", - "minimatch": "^9.0.3", - "minipass": "^7.0.4", - "minipass-pipeline": "^1.2.4", - "ms": "^2.1.2", - "node-gyp": "^10.0.1", - "nopt": "^7.2.0", - "normalize-package-data": "^6.0.0", - "npm-audit-report": "^5.0.0", - "npm-install-checks": "^6.3.0", - "npm-package-arg": "^11.0.1", - "npm-pick-manifest": "^9.0.0", - "npm-profile": "^9.0.0", - "npm-registry-fetch": "^16.1.0", - "npm-user-validate": "^2.0.0", - "npmlog": "^7.0.1", - "p-map": "^4.0.0", - "pacote": "^17.0.5", - "parse-conflict-json": "^3.0.1", - "proc-log": "^3.0.0", - "qrcode-terminal": "^0.12.0", - "read": "^2.1.0", - "semver": "^7.5.4", - "spdx-expression-parse": "^3.0.1", - "ssri": "^10.0.5", - "strip-ansi": "^7.1.0", - "supports-color": "^9.4.0", - "tar": "^6.2.0", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "treeverse": "^3.0.0", - "validate-npm-package-name": "^5.0.0", - "which": "^4.0.0", - "write-file-atomic": "^5.0.1" - }, - "bin": { - "npm": "bin/npm-cli.js", - "npx": "bin/npx-cli.js" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-bundled": { + "node_modules/npm/node_modules/npm-audit-report": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/npm-bundled": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { "npm-normalize-package-bin": "^3.0.0" }, @@ -23972,11 +22619,12 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-install-checks": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.1.1.tgz", - "integrity": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==", + "node_modules/npm/node_modules/npm-install-checks": { + "version": "6.3.0", "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "dependencies": { "semver": "^7.1.1" }, @@ -23984,726 +22632,724 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-normalize-package-bin": { + "node_modules/npm/node_modules/npm-normalize-package-bin": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", - "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-package-arg": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", - "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", + "node_modules/npm/node_modules/npm-package-arg": { + "version": "11.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "hosted-git-info": "^6.0.0", + "hosted-git-info": "^7.0.0", "proc-log": "^3.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-packlist": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", - "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", + "node_modules/npm/node_modules/npm-packlist": { + "version": "8.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ignore-walk": "^6.0.0" + "ignore-walk": "^6.0.4" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-pick-manifest": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", - "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "9.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { "npm-install-checks": "^6.0.0", "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", + "npm-package-arg": "^11.0.0", "semver": "^7.3.5" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch": { - "version": "14.0.5", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", - "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", + "node_modules/npm/node_modules/npm-profile": { + "version": "9.0.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "make-fetch-happen": "^11.0.0", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", + "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "16.1.0", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "bin": { - "npm-run-all": "bin/npm-run-all/index.js", - "run-p": "bin/run-p/index.js", - "run-s": "bin/run-s/index.js" + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" }, "engines": { - "node": ">= 4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-run-all/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/npm/node_modules/npm-user-validate": { + "version": "2.0.0", "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "inBundle": true, + "license": "BSD-2-Clause", + "peer": true, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-run-all/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/npm/node_modules/npmlog": { + "version": "7.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "are-we-there-yet": "^4.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^5.0.0", + "set-blocking": "^2.0.0" }, "engines": { - "node": ">=4.8" - } - }, - "node_modules/npm-run-all/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/npm-run-all/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-run-all/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-run-all/node_modules/pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "node_modules/npm/node_modules/pacote": { + "version": "17.0.5", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "dependencies": { + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, "bin": { - "pidtree": "bin/pidtree.js" + "pacote": "lib/bin.js" }, "engines": { - "node": ">=0.10" - } - }, - "node_modules/npm-run-all/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-run-all/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "3.0.1", "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, "dependencies": { - "shebang-regex": "^1.0.0" + "json-parse-even-better-errors": "^3.0.0", + "just-diff": "^6.0.0", + "just-diff-apply": "^5.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-run-all/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/npm/node_modules/path-key": { + "version": "3.1.1", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/npm-run-all/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/npm/node_modules/path-scurry": { + "version": "1.10.1", "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "peer": true, "dependencies": { - "has-flag": "^3.0.0" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/npm-run-all/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" + "node": ">=16 || 14 >=14.17" }, - "bin": { - "which": "bin/which" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/npm/node_modules/postcss-selector-parser": { + "version": "6.0.13", "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, "dependencies": { - "path-key": "^3.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/npm/node_modules/@colors/colors": { - "version": "1.5.0", + "node_modules/npm/node_modules/proc-log": { + "version": "3.0.0", "dev": true, "inBundle": true, - "license": "MIT", - "optional": true, + "license": "ISC", "peer": true, "engines": { - "node": ">=0.1.90" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@isaacs/cliui": { - "version": "8.0.2", + "node_modules/npm/node_modules/process": { + "version": "0.11.10", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, "engines": { - "node": ">=12" + "node": ">= 0.6.0" } }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", "dev": true, "inBundle": true, - "license": "MIT", - "peer": true + "license": "ISC", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.2", "dev": true, "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/@isaacs/string-locale-compare": { - "version": "1.1.0", + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", "dev": true, "inBundle": true, "license": "ISC", "peer": true }, - "node_modules/npm/node_modules/@npmcli/agent": { - "version": "2.2.0", + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, "dependencies": { - "agent-base": "^7.1.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.2.2", + "node_modules/npm/node_modules/promzard": { + "version": "1.0.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/fs": "^3.1.0", - "@npmcli/installed-package-contents": "^2.0.2", - "@npmcli/map-workspaces": "^3.0.2", - "@npmcli/metavuln-calculator": "^7.0.0", - "@npmcli/name-from-folder": "^2.0.0", - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/package-json": "^5.0.0", - "@npmcli/query": "^3.0.1", - "@npmcli/run-script": "^7.0.2", - "bin-links": "^4.0.1", - "cacache": "^18.0.0", - "common-ancestor-path": "^1.0.1", - "hosted-git-info": "^7.0.1", - "json-parse-even-better-errors": "^3.0.0", - "json-stringify-nice": "^1.1.4", - "minimatch": "^9.0.0", - "nopt": "^7.0.0", - "npm-install-checks": "^6.2.0", - "npm-package-arg": "^11.0.1", - "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", - "npmlog": "^7.0.1", - "pacote": "^17.0.4", - "parse-conflict-json": "^3.0.0", - "proc-log": "^3.0.0", - "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^1.0.2", - "read-package-json-fast": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^10.0.5", - "treeverse": "^3.0.0", - "walk-up-path": "^3.0.1" - }, - "bin": { - "arborist": "bin/index.js" + "read": "^2.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.0.3", + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", + "dev": true, + "inBundle": true, + "peer": true, + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/npm/node_modules/read": { + "version": "2.1.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "@npmcli/map-workspaces": "^3.0.2", - "ci-info": "^4.0.0", - "ini": "^4.1.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", - "read-package-json-fast": "^3.0.2", - "semver": "^7.3.5", - "walk-up-path": "^3.0.1" + "mute-stream": "~1.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/disparity-colors": { - "version": "3.0.0", + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, - "dependencies": { - "ansi-styles": "^4.3.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/npm/node_modules/read-package-json": { + "version": "7.0.0", "dev": true, "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/fs": { - "version": "3.1.0", + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "3.0.2", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "semver": "^7.3.5" + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/git": { - "version": "5.0.3", + "node_modules/npm/node_modules/readable-stream": { + "version": "4.4.2", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, "dependencies": { - "@npmcli/promise-spawn": "^7.0.0", - "lru-cache": "^10.0.1", - "npm-pick-manifest": "^9.0.0", - "proc-log": "^3.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^4.0.0" + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/installed-package-contents": { - "version": "2.0.2", + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/npm/node_modules/semver": { + "version": "7.5.4", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" + "lru-cache": "^6.0.0" }, "bin": { - "installed-package-contents": "lib/index.js" + "semver": "bin/semver.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/@npmcli/map-workspaces": { - "version": "3.0.4", + "node_modules/npm/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "@npmcli/name-from-folder": "^2.0.0", - "glob": "^10.2.2", - "minimatch": "^9.0.0", - "read-package-json-fast": "^3.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { - "version": "7.0.0", + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", "peer": true, "dependencies": { - "cacache": "^18.0.0", - "json-parse-even-better-errors": "^3.0.0", - "pacote": "^17.0.0", - "semver": "^7.3.5" + "shebang-regex": "^3.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/@npmcli/name-from-folder": { - "version": "2.0.0", + "node_modules/npm/node_modules/shebang-regex": { + "version": "3.0.0", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/@npmcli/node-gyp": { - "version": "3.0.0", + "node_modules/npm/node_modules/signal-exit": { + "version": "4.1.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/@npmcli/package-json": { - "version": "5.0.0", + "node_modules/npm/node_modules/sigstore": { + "version": "2.1.0", "dev": true, "inBundle": true, - "license": "ISC", + "license": "Apache-2.0", "peer": true, "dependencies": { - "@npmcli/git": "^5.0.0", - "glob": "^10.2.2", - "hosted-git-info": "^7.0.0", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.5.3" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/promise-spawn": { - "version": "7.0.0", + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, - "dependencies": { - "which": "^4.0.0" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "node_modules/npm/node_modules/@npmcli/query": { - "version": "3.0.1", + "node_modules/npm/node_modules/socks": { + "version": "2.7.1", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "7.0.2", + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "8.0.2", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, "dependencies": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^7.0.0", - "node-gyp": "^10.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^4.0.0" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">= 14" } }, - "node_modules/npm/node_modules/@pkgjs/parseargs": { - "version": "0.11.0", + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", + "dev": true, + "inBundle": true, + "license": "CC-BY-3.0", + "peer": true + }, + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", - "optional": true, "peer": true, - "engines": { - "node": ">=14" + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/npm/node_modules/@sigstore/bundle": { - "version": "2.1.0", + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.16", "dev": true, "inBundle": true, - "license": "Apache-2.0", + "license": "CC0-1.0", + "peer": true + }, + "node_modules/npm/node_modules/ssri": { + "version": "10.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", "peer": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.2.1" + "minipass": "^7.0.3" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@sigstore/protobuf-specs": { - "version": "0.2.1", + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", "dev": true, "inBundle": true, - "license": "Apache-2.0", + "license": "MIT", "peer": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "node_modules/npm/node_modules/@sigstore/sign": { - "version": "2.2.0", + "node_modules/npm/node_modules/string-width": { + "version": "4.2.3", "dev": true, "inBundle": true, - "license": "Apache-2.0", + "license": "MIT", "peer": true, "dependencies": { - "@sigstore/bundle": "^2.1.0", - "@sigstore/protobuf-specs": "^0.2.1", - "make-fetch-happen": "^13.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/@sigstore/tuf": { - "version": "2.2.0", + "node_modules/npm/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", "dev": true, "inBundle": true, - "license": "Apache-2.0", + "license": "MIT", "peer": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.2.1", - "tuf-js": "^2.1.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/@tufjs/canonical-json": { - "version": "2.0.0", + "node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/@tufjs/models": { - "version": "2.0.0", + "node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.3" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/abbrev": { - "version": "2.0.0", + "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/abort-controller": { - "version": "3.0.0", + "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "event-target-shim": "^5.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=6.5" + "node": ">=8" } }, - "node_modules/npm/node_modules/agent-base": { + "node_modules/npm/node_modules/strip-ansi": { "version": "7.1.0", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "debug": "^4.3.4" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">= 14" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/npm/node_modules/aggregate-error": { - "version": "3.1.0", + "node_modules/npm/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/ansi-regex": { - "version": "6.0.1", + "node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": ">=8" } }, - "node_modules/npm/node_modules/ansi-styles": { - "version": "6.2.1", + "node_modules/npm/node_modules/supports-color": { + "version": "9.4.0", "dev": true, "inBundle": true, "license": "MIT", @@ -24712,237 +23358,250 @@ "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/npm/node_modules/aproba": { - "version": "2.0.0", + "node_modules/npm/node_modules/tar": { + "version": "6.2.0", "dev": true, "inBundle": true, "license": "ISC", - "peer": true + "peer": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/npm/node_modules/archy": { - "version": "1.0.0", + "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", "dev": true, "inBundle": true, - "license": "MIT", - "peer": true + "license": "ISC", + "peer": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } }, - "node_modules/npm/node_modules/are-we-there-yet": { - "version": "4.0.1", + "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^4.1.0" + "yallist": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/balanced-match": { - "version": "1.0.2", + "node_modules/npm/node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", "dev": true, "inBundle": true, "license": "MIT", "peer": true }, - "node_modules/npm/node_modules/base64-js": { - "version": "1.5.1", + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "inBundle": true, "license": "MIT", "peer": true }, - "node_modules/npm/node_modules/bin-links": { - "version": "4.0.3", + "node_modules/npm/node_modules/treeverse": { + "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, - "dependencies": { - "cmd-shim": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "read-cmd-shim": "^4.0.0", - "write-file-atomic": "^5.0.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/binary-extensions": { - "version": "2.2.0", + "node_modules/npm/node_modules/tuf-js": { + "version": "2.1.0", "dev": true, "inBundle": true, "license": "MIT", "peer": true, + "dependencies": { + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/brace-expansion": { - "version": "2.0.1", + "node_modules/npm/node_modules/unique-filename": { + "version": "3.0.0", "dev": true, "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true, "dependencies": { - "balanced-match": "^1.0.0" + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/buffer": { - "version": "6.0.3", + "node_modules/npm/node_modules/unique-slug": { + "version": "4.0.0", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/builtins": { - "version": "5.0.1", + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", "dev": true, "inBundle": true, "license": "MIT", + "peer": true + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", "peer": true, "dependencies": { - "semver": "^7.0.0" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/npm/node_modules/cacache": { - "version": "18.0.1", + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", - "minipass": "^7.0.3", - "minipass-collect": "^2.0.1", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "builtins": "^5.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/chalk": { - "version": "5.3.0", + "node_modules/npm/node_modules/walk-up-path": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "peer": true + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "dependencies": { + "defaults": "^1.0.3" } }, - "node_modules/npm/node_modules/chownr": { - "version": "2.0.0", + "node_modules/npm/node_modules/which": { + "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "peer": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, "engines": { - "node": ">=10" + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/ci-info": { - "version": "4.0.0", + "node_modules/npm/node_modules/which/node_modules/isexe": { + "version": "3.1.1", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true, "engines": { - "node": ">=8" + "node": ">=16" } }, - "node_modules/npm/node_modules/cidr-regex": { - "version": "4.0.3", + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.5", "dev": true, "inBundle": true, - "license": "BSD-2-Clause", + "license": "ISC", "peer": true, "dependencies": { - "ip-regex": "^5.0.0" - }, - "engines": { - "node": ">=14" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/npm/node_modules/clean-stack": { - "version": "2.2.0", + "node_modules/npm/node_modules/wrap-ansi": { + "version": "8.1.0", "dev": true, "inBundle": true, "license": "MIT", "peer": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/npm/node_modules/cli-columns": { - "version": "4.0.0", + "node_modules/npm/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex": { + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { "version": "5.0.1", "dev": true, "inBundle": true, @@ -24952,605 +23611,650 @@ "node": ">=8" } }, - "node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/npm/node_modules/cli-table3": { - "version": "0.6.3", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "peer": true, "dependencies": { - "string-width": "^4.2.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/clone": { - "version": "1.0.4", + "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", "dev": true, "inBundle": true, "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.8" - } + "peer": true }, - "node_modules/npm/node_modules/cmd-shim": { - "version": "6.0.2", + "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", "dev": true, "inBundle": true, - "license": "ISC", + "license": "MIT", "peer": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/npm/node_modules/write-file-atomic": { + "version": "5.0.1", "dev": true, "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true, "dependencies": { - "color-name": "~1.1.4" + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">=7.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/color-name": { - "version": "1.1.4", + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", "dev": true, "inBundle": true, - "license": "MIT", + "license": "ISC", "peer": true }, - "node_modules/npm/node_modules/color-support": { - "version": "1.1.3", + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "bin": { - "color-support": "bin.js" + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/columnify": { - "version": "1.6.0", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "strip-ansi": "^6.0.1", - "wcwidth": "^1.0.0" + "boolbase": "^1.0.0" }, - "engines": { - "node": ">=8.0.0" + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/npm/node_modules/columnify/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/nwsapi": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", + "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==", + "dev": true + }, + "node_modules/nx": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.1.1.tgz", + "integrity": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" + "hasInstallScript": true, + "dependencies": { + "@nrwl/tao": "16.1.1", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "^3.0.0-rc.18", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "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.0.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.0", + "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.3.0", + "v8-compile-cache": "2.3.0", + "yargs": "^17.6.2", + "yargs-parser": "21.1.1" + }, + "bin": { + "nx": "bin/nx.js" + }, + "optionalDependencies": { + "@nx/nx-darwin-arm64": "16.1.1", + "@nx/nx-darwin-x64": "16.1.1", + "@nx/nx-linux-arm-gnueabihf": "16.1.1", + "@nx/nx-linux-arm64-gnu": "16.1.1", + "@nx/nx-linux-arm64-musl": "16.1.1", + "@nx/nx-linux-x64-gnu": "16.1.1", + "@nx/nx-linux-x64-musl": "16.1.1", + "@nx/nx-win32-arm64-msvc": "16.1.1", + "@nx/nx-win32-x64-msvc": "16.1.1" + }, + "peerDependencies": { + "@swc-node/register": "^1.4.2", + "@swc/core": "^1.2.173" + }, + "peerDependenciesMeta": { + "@swc-node/register": { + "optional": true + }, + "@swc/core": { + "optional": true + } } }, - "node_modules/npm/node_modules/columnify/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/nx-release": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/nx-release/-/nx-release-3.1.6.tgz", + "integrity": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "@nx/devkit": "16.5.0", + "chalk": "^4.1.2", + "inquirer": "^8.2.5", + "ora": "^5.4.1", + "process": "0.11.10" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "tslib": "^2.6.0" } }, - "node_modules/npm/node_modules/common-ancestor-path": { - "version": "1.0.1", + "node_modules/nx-release/node_modules/@nrwl/devkit": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.0.tgz", + "integrity": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "dependencies": { + "@nx/devkit": "16.5.0" + } }, - "node_modules/npm/node_modules/console-control-strings": { - "version": "1.1.0", + "node_modules/nx-release/node_modules/@nx/devkit": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.0.tgz", + "integrity": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "dependencies": { + "@nrwl/devkit": "16.5.0", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.5.3", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + }, + "peerDependencies": { + "nx": ">= 15 <= 17" + } }, - "node_modules/npm/node_modules/cross-spawn": { - "version": "7.0.3", + "node_modules/nx-release/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 8" + "node": ">=10" } }, - "node_modules/npm/node_modules/cross-spawn/node_modules/which": { - "version": "2.0.2", + "node_modules/nx-release/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "isexe": "^2.0.0" + "lru-cache": "^6.0.0" }, "bin": { - "node-which": "bin/node-which" + "semver": "bin/semver.js" }, "engines": { - "node": ">= 8" + "node": ">=10" } }, - "node_modules/npm/node_modules/cssesc": { - "version": "3.0.0", + "node_modules/nx-release/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/nx/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/nx/node_modules/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "bin": { - "cssesc": "bin/cssesc" + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=4" + "node": "*" } }, - "node_modules/npm/node_modules/debug": { - "version": "4.3.4", + "node_modules/nx/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" + "argparse": "^2.0.1" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/npm/node_modules/debug/node_modules/ms": { - "version": "2.1.2", + "node_modules/nx/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/npm/node_modules/defaults": { - "version": "1.0.4", + "node_modules/nx/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "clone": "^1.0.2" + "lru-cache": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/npm/node_modules/delegates": { - "version": "1.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true + "node_modules/nx/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/npm/node_modules/diff": { - "version": "5.1.0", + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "dev": true, - "inBundle": true, - "license": "BSD-3-Clause", - "peer": true, "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/npm/node_modules/eastasianwidth": { - "version": "0.2.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/emoji-regex": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/encoding": { - "version": "0.1.13", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "iconv-lite": "^0.6.2" + "node": "*" } }, - "node_modules/npm/node_modules/env-paths": { - "version": "2.2.1", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/err-code": { - "version": "2.0.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/event-target-shim": { - "version": "5.0.1", + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/events": { - "version": "3.3.0", + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, "engines": { - "node": ">=0.8.x" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/exponential-backoff": { - "version": "3.1.1", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "peer": true - }, - "node_modules/npm/node_modules/fastest-levenshtein": { - "version": "1.0.16", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">= 4.9.1" + "node": ">= 0.4" } }, - "node_modules/npm/node_modules/foreground-child": { - "version": "3.1.1", + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/fs-minipass": { - "version": "3.0.3", + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "minipass": "^7.0.3" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 0.4" } }, - "node_modules/npm/node_modules/function-bind": { - "version": "1.1.2", + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/gauge": { - "version": "5.0.1", + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^4.0.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/gauge/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/gauge/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "isobject": "^3.0.1" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/glob": { - "version": "10.3.10", + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/graceful-fs": { - "version": "4.2.11", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true }, - "node_modules/npm/node_modules/has-unicode": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "node_modules/on-exit-leak-free": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", + "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", + "dev": true }, - "node_modules/npm/node_modules/hasown": { - "version": "2.0.0", + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "function-bind": "^1.1.2" + "ee-first": "1.1.1" }, "engines": { - "node": ">= 0.4" + "node": ">= 0.8" } }, - "node_modules/npm/node_modules/hosted-git-info": { - "version": "7.0.1", + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "lru-cache": "^10.0.1" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">= 0.8" } }, - "node_modules/npm/node_modules/http-cache-semantics": { - "version": "4.1.1", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "peer": true + "dependencies": { + "wrappy": "1" + } }, - "node_modules/npm/node_modules/http-proxy-agent": { - "version": "7.0.0", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">= 14" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/https-proxy-agent": { - "version": "7.0.2", + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">= 14" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/iconv-lite": { - "version": "0.6.3", + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/npm/node_modules/ieee754": { - "version": "1.2.1", + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "BSD-3-Clause", - "peer": true + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/npm/node_modules/ignore-walk": { - "version": "6.0.4", + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "minimatch": "^9.0.0" + "arch": "^2.1.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/npm/node_modules/imurmurhash": { - "version": "0.1.4", + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">=0.8.19" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/indent-string": { - "version": "4.0.0", + "node_modules/ospath": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "dev": true + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/ini": { - "version": "4.1.1", + "node_modules/p-each-series": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", + "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", "dev": true, - "inBundle": true, - "license": "ISC", "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/init-package-json": { - "version": "6.0.0", + "node_modules/p-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", + "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", "dev": true, - "inBundle": true, - "license": "ISC", "peer": true, "dependencies": { - "npm-package-arg": "^11.0.0", - "promzard": "^1.0.0", - "read": "^2.0.0", - "read-package-json": "^7.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "^5.0.0" + "p-map": "^5.1.0" }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/ip": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/ip-regex": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, @@ -25558,2995 +24262,2744 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/is-cidr": { - "version": "5.0.3", + "node_modules/p-filter/node_modules/aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", "peer": true, "dependencies": { - "cidr-regex": "4.0.3" + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">=14" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/is-core-module": { - "version": "2.13.1", + "node_modules/p-filter/node_modules/clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", "dev": true, - "inBundle": true, - "license": "MIT", "peer": true, "dependencies": { - "hasown": "^2.0.0" + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", + "node_modules/p-filter/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, - "inBundle": true, - "license": "MIT", "peer": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/is-lambda": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/isexe": { - "version": "2.0.0", + "node_modules/p-filter/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/npm/node_modules/jackspeak": { - "version": "2.3.6", + "node_modules/p-filter/node_modules/p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", "peer": true, "dependencies": { - "@isaacs/cliui": "^8.0.2" + "aggregate-error": "^4.0.0" }, "engines": { - "node": ">=14" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/json-parse-even-better-errors": { - "version": "3.0.1", + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/npm/node_modules/json-stringify-nice": { - "version": "1.1.4", + "node_modules/p-is-promise": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", + "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=8" } }, - "node_modules/npm/node_modules/jsonparse": { - "version": "1.3.1", - "dev": true, - "engines": [ - "node >= 0.2.0" - ], - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/just-diff": { - "version": "6.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/just-diff-apply": { - "version": "5.5.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/libnpmaccess": { - "version": "8.0.2", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "npm-package-arg": "^11.0.1", - "npm-registry-fetch": "^16.0.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.4", + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "@npmcli/arborist": "^7.2.1", - "@npmcli/disparity-colors": "^3.0.0", - "@npmcli/installed-package-contents": "^2.0.2", - "binary-extensions": "^2.2.0", - "diff": "^5.1.0", - "minimatch": "^9.0.0", - "npm-package-arg": "^11.0.1", - "pacote": "^17.0.4", - "tar": "^6.2.0" + "p-limit": "^2.2.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.5", + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "@npmcli/arborist": "^7.2.1", - "@npmcli/run-script": "^7.0.2", - "ci-info": "^4.0.0", - "npm-package-arg": "^11.0.1", - "npmlog": "^7.0.1", - "pacote": "^17.0.4", - "proc-log": "^3.0.0", - "read": "^2.0.0", - "read-package-json-fast": "^3.0.2", - "semver": "^7.3.7", - "walk-up-path": "^3.0.1" + "p-try": "^2.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.2", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "@npmcli/arborist": "^7.2.1" + "aggregate-error": "^3.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/libnpmhook": { - "version": "10.0.1", + "node_modules/p-reduce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/libnpmorg": { - "version": "6.0.2", + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" + "@types/retry": "0.12.0", + "retry": "^0.13.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.4", + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "@npmcli/arborist": "^7.2.1", - "@npmcli/run-script": "^7.0.2", - "npm-package-arg": "^11.0.1", - "pacote": "^17.0.4" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">= 4" } }, - "node_modules/npm/node_modules/libnpmpublish": { - "version": "9.0.3", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "ci-info": "^4.0.0", - "normalize-package-data": "^6.0.0", - "npm-package-arg": "^11.0.1", - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.7", - "sigstore": "^2.1.0", - "ssri": "^10.0.5" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/libnpmsearch": { - "version": "7.0.1", + "node_modules/pacote": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz", + "integrity": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "npm-registry-fetch": "^16.0.0" + "@npmcli/git": "^4.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^6.0.1", + "@npmcli/run-script": "^6.0.0", + "cacache": "^17.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^5.0.0", + "npm-package-arg": "^10.0.0", + "npm-packlist": "^7.0.0", + "npm-pick-manifest": "^8.0.0", + "npm-registry-fetch": "^14.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^6.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^1.3.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/libnpmteam": { - "version": "6.0.1", + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" + "callsites": "^3.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/libnpmversion": { - "version": "5.0.2", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "@npmcli/git": "^5.0.3", - "@npmcli/run-script": "^7.0.2", - "json-parse-even-better-errors": "^3.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.7" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/lru-cache": { - "version": "10.1.0", + "node_modules/parse-json/node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "engines": { - "node": "14 || >=16.14" + "node": ">= 0.10" } }, - "node_modules/npm/node_modules/make-fetch-happen": { - "version": "13.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "devOptional": true, "dependencies": { - "@npmcli/agent": "^2.0.0", - "cacache": "^18.0.0", - "http-cache-semantics": "^4.1.1", - "is-lambda": "^1.0.1", - "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "ssri": "^10.0.0" + "entities": "^4.4.0" }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/npm/node_modules/minimatch": { - "version": "9.0.3", + "node_modules/parse5-html-rewriting-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz", + "integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" + "entities": "^4.3.0", + "parse5": "^7.0.0", + "parse5-sax-parser": "^7.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/npm/node_modules/minipass": { - "version": "7.0.4", + "node_modules/parse5-html-rewriting-stream/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/npm/node_modules/minipass-collect": { - "version": "2.0.1", + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": ">=16 || 14 >=14.17" + "parse5": "^6.0.1" } }, - "node_modules/npm/node_modules/minipass-fetch": { - "version": "3.0.4", + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/parse5-sax-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", + "integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "parse5": "^7.0.0" }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "devOptional": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.12" }, - "optionalDependencies": { - "encoding": "^0.1.13" + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/npm/node_modules/minipass-flush": { - "version": "1.0.5", + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "minipass": "^3.0.0" - }, "engines": { - "node": ">= 8" + "node": ">= 0.8" } }, - "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { - "version": "3.3.6", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/minipass-json-stream": { + "node_modules/path-is-absolute": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - } - }, - "node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/minipass-pipeline": { - "version": "1.2.4", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "minipass": "^3.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, - "node_modules/npm/node_modules/minipass-sized": { - "version": "1.0.3", + "node_modules/path-scurry": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz", + "integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "minipass": "^3.0.0" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "yallist": "^4.0.0" + "node": ">=16 || 14 >=14.17" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/minizlib": { - "version": "2.1.2", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", + "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, "engines": { - "node": ">= 8" + "node": "14 || >=16.14" } }, - "node_modules/npm/node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/mkdirp": { - "version": "1.0.4", + "node_modules/peek-readable": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", + "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/npm/node_modules/ms": { - "version": "2.1.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true }, - "node_modules/npm/node_modules/mute-stream": { + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "node_modules/picocolors": { "version": "1.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true }, - "node_modules/npm/node_modules/negotiator": { - "version": "0.6.3", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">= 0.6" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/npm/node_modules/node-gyp": { - "version": "10.0.1", + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^10.3.10", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^13.0.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^4.0.0" - }, "bin": { - "node-gyp": "bin/node-gyp.js" + "pidtree": "bin/pidtree.js" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=0.10" } }, - "node_modules/npm/node_modules/nopt": { - "version": "7.2.0", + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "abbrev": "^2.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/normalize-package-data": { - "version": "6.0.0", + "node_modules/pino": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", + "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==", "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "peer": true, "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" + "atomic-sleep": "^1.0.0", + "fast-redact": "^3.0.0", + "on-exit-leak-free": "^0.2.0", + "pino-abstract-transport": "v0.5.0", + "pino-std-serializers": "^4.0.0", + "process-warning": "^1.0.0", + "quick-format-unescaped": "^4.0.3", + "real-require": "^0.1.0", + "safe-stable-stringify": "^2.1.0", + "sonic-boom": "^2.2.1", + "thread-stream": "^0.15.1" }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "bin": { + "pino": "bin.js" } }, - "node_modules/npm/node_modules/npm-audit-report": { - "version": "5.0.0", + "node_modules/pino-abstract-transport": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", + "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "dependencies": { + "readable-stream": "^4.0.0", + "split2": "^4.0.0" } }, - "node_modules/npm/node_modules/npm-bundled": { - "version": "3.0.0", + "node_modules/pino-abstract-transport/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/npm/node_modules/npm-install-checks": { - "version": "6.3.0", + "node_modules/pino-abstract-transport/node_modules/readable-stream": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.1.tgz", + "integrity": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==", "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "peer": true, "dependencies": { - "semver": "^7.1.1" + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/npm-normalize-package-bin": { - "version": "3.0.1", + "node_modules/pino-std-serializers": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", + "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==", + "dev": true + }, + "node_modules/pino/node_modules/pino-abstract-transport": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz", + "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "dependencies": { + "duplexify": "^4.1.2", + "split2": "^4.0.0" } }, - "node_modules/npm/node_modules/npm-package-arg": { - "version": "11.0.1", + "node_modules/pino/node_modules/sonic-boom": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz", + "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "hosted-git-info": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "atomic-sleep": "^1.0.0" } }, - "node_modules/npm/node_modules/npm-packlist": { - "version": "8.0.1", + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "ignore-walk": "^6.0.4" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 6" } }, - "node_modules/npm/node_modules/npm-pick-manifest": { - "version": "9.0.0", + "node_modules/piscina": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", + "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^11.0.0", - "semver": "^7.3.5" + "eventemitter-asyncresource": "^1.0.0", + "hdr-histogram-js": "^2.0.1", + "hdr-histogram-percentiles-obj": "^3.0.0" }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "optionalDependencies": { + "nice-napi": "^1.0.2" } }, - "node_modules/npm/node_modules/npm-profile": { - "version": "9.0.0", + "node_modules/pkg-conf": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", + "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0" + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/npm-registry-fetch": { - "version": "16.1.0", + "node_modules/pkg-conf/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "make-fetch-happen": "^13.0.0", - "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^11.0.0", - "proc-log": "^3.0.0" + "locate-path": "^3.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/npm-user-validate": { - "version": "2.0.0", + "node_modules/pkg-conf/node_modules/load-json-file": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", + "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "peer": true, + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/npmlog": { - "version": "7.0.1", + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "are-we-there-yet": "^4.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^5.0.0", - "set-blocking": "^2.0.0" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/p-map": { - "version": "4.0.0", + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "aggregate-error": "^3.0.0" + "p-try": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/pacote": { - "version": "17.0.5", + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "@npmcli/git": "^5.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.0", - "cacache": "^18.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^7.0.2", - "npm-package-arg": "^11.0.0", - "npm-packlist": "^8.0.0", - "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^7.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^2.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "lib/bin.js" + "p-limit": "^2.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/parse-conflict-json": { - "version": "3.0.1", + "node_modules/pkg-conf/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "just-diff": "^6.0.0", - "just-diff-apply": "^5.2.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/npm/node_modules/path-key": { - "version": "3.1.1", + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/npm/node_modules/path-scurry": { - "version": "1.10.1", + "node_modules/pkg-conf/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "peer": true, - "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=6" } }, - "node_modules/npm/node_modules/postcss-selector-parser": { - "version": "6.0.13", + "node_modules/pkg-conf/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, "engines": { "node": ">=4" } }, - "node_modules/npm/node_modules/proc-log": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/process": { - "version": "0.11.10", + "node_modules/pkg-conf/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/npm/node_modules/promise-all-reject-late": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/promise-call-limit": { - "version": "1.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=6" } }, - "node_modules/npm/node_modules/promise-inflight": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true - }, - "node_modules/npm/node_modules/promise-retry": { - "version": "2.0.1", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" + "find-up": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/npm/node_modules/promzard": { - "version": "1.0.0", + "node_modules/pkginfo": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", + "integrity": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "read": "^2.0.0" - }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/qrcode-terminal": { - "version": "0.12.0", - "dev": true, - "inBundle": true, - "peer": true, - "bin": { - "qrcode-terminal": "bin/qrcode-terminal.js" + "node": ">= 0.4.0" } }, - "node_modules/npm/node_modules/read": { - "version": "2.1.0", + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "mute-stream": "~1.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "semver-compare": "^1.0.0" } }, - "node_modules/npm/node_modules/read-cmd-shim": { - "version": "4.0.0", + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/npm/node_modules/read-package-json": { - "version": "7.0.0", + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0" + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">= 0.12.0" } }, - "node_modules/npm/node_modules/read-package-json-fast": { - "version": "3.0.2", + "node_modules/portfinder/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "lodash": "^4.17.14" } }, - "node_modules/npm/node_modules/readable-stream": { - "version": "4.4.2", + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/retry": { - "version": "0.12.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">= 4" + "ms": "^2.1.1" } }, - "node_modules/npm/node_modules/safe-buffer": { - "version": "5.2.1", + "node_modules/postcss": { + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/safer-buffer": { - "version": "2.1.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "peer": true + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } }, - "node_modules/npm/node_modules/semver": { - "version": "7.5.4", + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/npm/node_modules/semver/node_modules/lru-cache": { + "node_modules/postcss-colormin": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", + "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "yallist": "^4.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/set-blocking": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true - }, - "node_modules/npm/node_modules/shebang-command": { - "version": "2.0.0", + "node_modules/postcss-convert-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", + "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "shebang-regex": "^3.0.0" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/shebang-regex": { - "version": "3.0.0", + "node_modules/postcss-discard-comments": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", + "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/signal-exit": { - "version": "4.1.0", + "node_modules/postcss-discard-duplicates": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", + "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "engines": { - "node": ">=14" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/sigstore": { - "version": "2.1.0", + "node_modules/postcss-discard-empty": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", + "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "peer": true, - "dependencies": { - "@sigstore/bundle": "^2.1.0", - "@sigstore/protobuf-specs": "^0.2.1", - "@sigstore/sign": "^2.1.0", - "@sigstore/tuf": "^2.1.0" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/smart-buffer": { - "version": "4.2.0", + "node_modules/postcss-discard-overridden": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", + "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/socks": { - "version": "2.7.1", + "node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" }, "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "node_modules/npm/node_modules/socks-proxy-agent": { - "version": "8.0.2", + "node_modules/postcss-loader": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.2.4.tgz", + "integrity": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" + "cosmiconfig": "^8.1.3", + "cosmiconfig-typescript-loader": "^4.3.0", + "klona": "^2.0.6", + "semver": "^7.3.8" }, "engines": { - "node": ">= 14" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "ts-node": ">=10", + "typescript": ">=4", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + }, + "typescript": { + "optional": true + } } }, - "node_modules/npm/node_modules/spdx-correct": { - "version": "3.2.0", + "node_modules/postcss-loader/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "peer": true, "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" } }, - "node_modules/npm/node_modules/spdx-exceptions": { - "version": "2.3.0", + "node_modules/postcss-loader/node_modules/cosmiconfig-typescript-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", + "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", "dev": true, - "inBundle": true, - "license": "CC-BY-3.0", - "peer": true + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@types/node": "*", + "cosmiconfig": ">=7", + "ts-node": ">=10", + "typescript": ">=3" + } }, - "node_modules/npm/node_modules/spdx-expression-parse": { - "version": "3.0.1", + "node_modules/postcss-loader/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/npm/node_modules/spdx-license-ids": { - "version": "3.0.16", - "dev": true, - "inBundle": true, - "license": "CC0-1.0", - "peer": true - }, - "node_modules/npm/node_modules/ssri": { - "version": "10.0.5", + "node_modules/postcss-merge-longhand": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", + "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "minipass": "^7.0.3" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/string_decoder": { - "version": "1.3.0", + "node_modules/postcss-merge-rules": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", + "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "safe-buffer": "~5.2.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/string-width": { - "version": "4.2.3", + "node_modules/postcss-minify-font-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", + "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", + "node_modules/postcss-minify-gradients": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", + "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "colord": "^2.9.1", + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/postcss-minify-params": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", + "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/postcss-minify-selectors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", + "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/npm/node_modules/strip-ansi": { - "version": "7.1.0", + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ansi-regex": "^6.0.1" + "postcss-selector-parser": "^6.0.4" }, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/npm/node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "ansi-regex": "^5.0.1" + "icss-utils": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/postcss-normalize-charset": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", + "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/supports-color": { - "version": "9.4.0", + "node_modules/postcss-normalize-display-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", + "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=12" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/tar": { - "version": "6.2.0", + "node_modules/postcss-normalize-positions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", + "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", + "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "minipass": "^3.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", + "node_modules/postcss-normalize-string": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", + "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "yallist": "^4.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/tar/node_modules/minipass": { - "version": "5.0.0", + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", + "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/text-table": { - "version": "0.2.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/tiny-relative-date": { - "version": "1.3.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/treeverse": { - "version": "3.0.0", + "node_modules/postcss-normalize-unicode": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", + "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/tuf-js": { - "version": "2.1.0", + "node_modules/postcss-normalize-url": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", + "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "@tufjs/models": "2.0.0", - "debug": "^4.3.4", - "make-fetch-happen": "^13.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/unique-filename": { - "version": "3.0.0", + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", + "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "unique-slug": "^4.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/unique-slug": { - "version": "4.0.0", + "node_modules/postcss-ordered-values": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", + "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "imurmurhash": "^0.1.4" + "cssnano-utils": "^4.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/util-deprecate": { - "version": "1.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/validate-npm-package-license": { - "version": "3.0.4", + "node_modules/postcss-reduce-initial": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", + "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "peer": true, "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/validate-npm-package-name": { - "version": "5.0.0", + "node_modules/postcss-reduce-transforms": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", + "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "builtins": "^5.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/walk-up-path": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true - }, - "node_modules/npm/node_modules/wcwidth": { - "version": "1.0.1", + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, "dependencies": { - "defaults": "^1.0.3" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "node_modules/npm/node_modules/which": { - "version": "4.0.0", + "node_modules/postcss-svgo": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", + "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" + "postcss-value-parser": "^4.2.0", + "svgo": "^3.0.2" }, "engines": { - "node": "^16.13.0 || >=18.0.0" + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/which/node_modules/isexe": { - "version": "3.1.1", + "node_modules/postcss-unique-selectors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", + "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, "engines": { - "node": ">=16" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/npm/node_modules/wide-align": { - "version": "1.1.5", + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/npm/node_modules/wrap-ansi": { - "version": "8.1.0", + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "bin": { + "prettier": "bin-prettier.js" }, "engines": { - "node": ">=12" + "node": ">=10.13.0" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/npm/node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true - }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true, - "inBundle": true, - "license": "MIT", - "peer": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6.0" } }, - "node_modules/npm/node_modules/write-file-atomic": { - "version": "5.0.1", + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/process-warning": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", + "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true, "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "peer": true - }, - "node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 6" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dev": true, "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, - "node_modules/nwsapi": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", - "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==", + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, - "node_modules/nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.1.1.tgz", - "integrity": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==", + "node_modules/property-expr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", + "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", + "dev": true + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", "dev": true, - "hasInstallScript": true, - "dependencies": { - "@nrwl/tao": "16.1.1", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.1.1", - "@nx/nx-darwin-x64": "16.1.1", - "@nx/nx-linux-arm-gnueabihf": "16.1.1", - "@nx/nx-linux-arm64-gnu": "16.1.1", - "@nx/nx-linux-arm64-musl": "16.1.1", - "@nx/nx-linux-x64-gnu": "16.1.1", - "@nx/nx-linux-x64-musl": "16.1.1", - "@nx/nx-win32-arm64-msvc": "16.1.1", - "@nx/nx-win32-x64-msvc": "16.1.1" - }, - "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } + "peer": true }, - "node_modules/nx-release": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/nx-release/-/nx-release-3.1.6.tgz", - "integrity": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==", + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "dependencies": { - "@nx/devkit": "16.5.0", - "chalk": "^4.1.2", - "inquirer": "^8.2.5", - "ora": "^5.4.1", - "process": "0.11.10" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" }, - "peerDependencies": { - "tslib": "^2.6.0" + "engines": { + "node": ">= 0.10" } }, - "node_modules/nx-release/node_modules/@nrwl/devkit": { - "version": "16.5.0", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.0.tgz", - "integrity": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==", + "node_modules/proxy-from-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", + "dev": true + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "dependencies": { - "@nx/devkit": "16.5.0" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/nx-release/node_modules/@nx/devkit": { - "version": "16.5.0", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.0.tgz", - "integrity": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==", + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "dev": true, - "dependencies": { - "@nrwl/devkit": "16.5.0", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "nx": ">= 15 <= 17" + "engines": { + "node": ">=6" } }, - "node_modules/nx-release/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/qs": { + "version": "6.10.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", + "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "side-channel": "^1.0.4" }, "engines": { - "node": ">=8" + "node": ">=0.6" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nx-release/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-format-unescaped": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", + "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", + "dev": true + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nx-release/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/randomatic": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", + "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.10.0" } }, - "node_modules/nx-release/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/nx-release/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/randomatic/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/nx-release/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/randomatic/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/nx-release/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "safe-buffer": "^5.1.0" } }, - "node_modules/nx-release/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/nx/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/nx/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/nx/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 0.8" } }, - "node_modules/nx/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, - "engines": { - "node": ">=7.0.0" + "bin": { + "rc": "cli.js" } }, - "node_modules/nx/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "peer": true }, - "node_modules/nx/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, + "peer": true, "engines": { - "node": "*" + "node": ">=0.10.0" } }, - "node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", "dev": true, "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "pify": "^2.3.0" } }, - "node_modules/nx/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/read-package-json": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", + "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^5.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/nx/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/nx/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/nx/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true, - "engines": { - "node": "*" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", + "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "node_modules/read-package-json/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "node_modules/read-package-json/node_modules/glob": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2", + "path-scurry": "^1.10.0" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", + "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", "dev": true, "engines": { - "node": ">= 0.4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/read-package-json/node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "node_modules/read-pkg-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", + "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", + "deprecated": "Renamed to read-package-up", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "node_modules/read-pkg-up/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "lru-cache": "^10.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "node_modules/read-pkg-up/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/read-pkg-up/node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "node_modules/read-pkg-up/node_modules/parse-json": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.2", + "type-fest": "^4.7.1" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "node_modules/on-exit-leak-free": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", - "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", - "dev": true - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/read-pkg-up/node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, "dependencies": { - "ee-first": "1.1.1" + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": ">= 0.8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "dependencies": { - "wrappy": "1" + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "dependencies": { - "mimic-fn": "^2.1.0" + "pify": "^3.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, "bin": { - "opener": "bin/opener-bin.js" + "semver": "bin/semver" } }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "dev": true, "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "readable-stream": "^3.6.0" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 6" } }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "picomatch": "^2.2.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8.10.0" } }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/real-require": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz", + "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">= 12.13.0" } }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/redeyed": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", + "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", "dev": true, + "peer": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "esprima": "~4.0.0" } }, - "node_modules/os-filter-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "node_modules/reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "dev": true + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, "dependencies": { - "arch": "^2.1.0" + "regenerate": "^1.4.2" }, "engines": { "node": ">=4" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/runtime": "^7.8.4" } }, - "node_modules/ospath": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", "dev": true }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/p-each-series": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", - "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, - "peer": true, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/p-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", - "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, - "peer": true, "dependencies": { - "p-map": "^5.1.0" + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/p-filter/node_modules/aggregate-error": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", - "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "node_modules/registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", "dev": true, "peer": true, "dependencies": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" + "@pnpm/npm-conf": "^2.1.0" }, "engines": { - "node": ">=12" + "node": ">=14" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "regjsparser": "bin/parser" } }, - "node_modules/p-filter/node_modules/clean-stack": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", - "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remarkable": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", + "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", "dev": true, - "peer": true, "dependencies": { - "escape-string-regexp": "5.0.0" + "argparse": "^1.0.10", + "autolinker": "~0.28.0" }, - "engines": { - "node": ">=12" + "bin": { + "remarkable": "bin/remarkable.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">= 0.10.0" } }, - "node_modules/p-filter/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "dev": true, - "peer": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/p-filter/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true, - "peer": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10" } }, - "node_modules/p-filter/node_modules/p-map": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", - "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", + "node_modules/replace-json-property": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/replace-json-property/-/replace-json-property-1.9.0.tgz", + "integrity": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==", "dev": true, - "peer": true, "dependencies": { - "aggregate-error": "^4.0.0" - }, - "engines": { - "node": ">=12" + "chalk": "^4.1.0", + "commander": "^2.19.0", + "jsonfile": "^5.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "replace-json-property": "bin/replace-json-property.bin.js", + "rjp": "bin/replace-json-property.bin.js" } }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "node_modules/replace-json-property/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/replace-json-property/node_modules/jsonfile": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz", + "integrity": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "universalify": "^0.1.2" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/p-is-promise": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", - "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", + "node_modules/replace-json-property/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 4.0.0" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 6" } }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/request-progress": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" + "throttleit": "^1.0.0" } }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/request/node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "node_modules/request/node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "dependencies": { - "aggregate-error": "^3.0.0" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.6.0" } }, - "node_modules/p-reduce": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", - "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.6" } }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "dev": true, - "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" + "bin": { + "uuid": "bin/uuid" } }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "engines": { - "node": ">= 4" + "node": ">=0.10.0" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/pacote": { - "version": "15.1.3", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz", - "integrity": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==", + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", "dev": true, "dependencies": { - "@npmcli/git": "^4.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^5.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^1.3.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { - "pacote": "lib/bin.js" + "resolve": "bin/resolve" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", "dev": true }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "dependencies": { - "callsites": "^3.0.0" + "resolve-from": "^5.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse-json/node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "node_modules/resolve-url-loader": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", + "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "devOptional": true, "dependencies": { - "entities": "^4.4.0" + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.14", + "source-map": "0.6.1" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": ">=12" } }, - "node_modules/parse5-html-rewriting-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz", - "integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==", + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { - "entities": "^4.3.0", - "parse5": "^7.0.0", - "parse5-sax-parser": "^7.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": ">=8.9.0" } }, - "node_modules/parse5-html-rewriting-stream/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "node_modules/resolve.exports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", + "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true, - "dependencies": { - "parse5": "^6.0.1" + "engines": { + "node": ">=10" } }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, - "node_modules/parse5-sax-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", - "integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==", + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", "dev": true, "dependencies": { - "parse5": "^7.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "devOptional": true, - "engines": { - "node": ">=0.12" + "lowercase-keys": "^2.0.0" }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, "engines": { "node": ">=8" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 4" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, "engines": { - "node": ">=8" + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", "dev": true }, - "node_modules/path-scurry": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz", - "integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2" + "glob": "^7.1.3" }, - "engines": { - "node": ">=16 || 14 >=14.17" + "bin": { + "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", - "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/peek-readable": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", - "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==", + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, "engines": { - "node": ">=14.16" + "node": "*" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "engines": { - "node": ">=8.6" + "dependencies": { + "brace-expansion": "^1.1.7" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "engines": { + "node": "*" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "node_modules/rollup": { + "version": "3.26.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.0.tgz", + "integrity": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==", "dev": true, "bin": { - "pidtree": "bin/pidtree.js" + "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=0.10" + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=0.12.0" } }, - "node_modules/pino": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", - "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "atomic-sleep": "^1.0.0", - "fast-redact": "^3.0.0", - "on-exit-leak-free": "^0.2.0", - "pino-abstract-transport": "v0.5.0", - "pino-std-serializers": "^4.0.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "real-require": "^0.1.0", - "safe-stable-stringify": "^2.1.0", - "sonic-boom": "^2.2.1", - "thread-stream": "^0.15.1" - }, - "bin": { - "pino": "bin.js" + "queue-microtask": "^1.2.2" } }, - "node_modules/pino-abstract-transport": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", - "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", - "dev": true, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dependencies": { - "readable-stream": "^4.0.0", - "split2": "^4.0.0" + "tslib": "^2.1.0" } }, - "node_modules/pino-abstract-transport/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { @@ -28561,2168 +27014,2237 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } + ] }, - "node_modules/pino-abstract-transport/node_modules/readable-stream": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.1.tgz", - "integrity": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==", + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", "dev": true, "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" } }, - "node_modules/pino-std-serializers": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", - "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==", + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, - "node_modules/pino/node_modules/pino-abstract-transport": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz", - "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==", + "node_modules/sass": { + "version": "1.62.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", + "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", "dev": true, "dependencies": { - "duplexify": "^4.1.2", - "split2": "^4.0.0" + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/pino/node_modules/sonic-boom": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz", - "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==", + "node_modules/sass-loader": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz", + "integrity": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==", "dev": true, "dependencies": { - "atomic-sleep": "^1.0.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, + "klona": "^2.0.6", + "neo-async": "^2.6.2" + }, "engines": { - "node": ">= 6" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.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 + } } }, - "node_modules/piscina": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", - "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", "dev": true, "dependencies": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0" + "xmlchars": "^2.2.0" }, - "optionalDependencies": { - "nice-napi": "^1.0.2" + "engines": { + "node": ">=v12.22.7" } }, - "node_modules/pkg-conf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", - "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, "dependencies": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">=6" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/pkg-conf/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "node_modules/secure-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", + "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", + "dev": true + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, "dependencies": { - "locate-path": "^3.0.0" + "node-forge": "^1" }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/pkg-conf/node_modules/load-json-file": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", - "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "node_modules/semantic-release": { + "version": "22.0.12", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", + "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", "dev": true, + "peer": true, "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" + "@semantic-release/commit-analyzer": "^11.0.0", + "@semantic-release/error": "^4.0.0", + "@semantic-release/github": "^9.0.0", + "@semantic-release/npm": "^11.0.0", + "@semantic-release/release-notes-generator": "^12.0.0", + "aggregate-error": "^5.0.0", + "cosmiconfig": "^8.0.0", + "debug": "^4.0.0", + "env-ci": "^10.0.0", + "execa": "^8.0.0", + "figures": "^6.0.0", + "find-versions": "^5.1.0", + "get-stream": "^6.0.0", + "git-log-parser": "^1.2.0", + "hook-std": "^3.0.0", + "hosted-git-info": "^7.0.0", + "import-from-esm": "^1.3.1", + "lodash-es": "^4.17.21", + "marked": "^9.0.0", + "marked-terminal": "^6.0.0", + "micromatch": "^4.0.2", + "p-each-series": "^3.0.0", + "p-reduce": "^3.0.0", + "read-pkg-up": "^11.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.3.2", + "semver-diff": "^4.0.0", + "signale": "^1.2.1", + "yargs": "^17.5.1" + }, + "bin": { + "semantic-release": "bin/semantic-release.js" }, "engines": { - "node": ">=6" + "node": "^18.17 || >=20.6.1" } }, - "node_modules/pkg-conf/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/semantic-release/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, + "peer": true, "engines": { - "node": ">=6" + "node": ">=18" } }, - "node_modules/pkg-conf/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/semantic-release/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, + "peer": true, "dependencies": { - "p-try": "^2.0.0" + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pkg-conf/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/semantic-release/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, + "node_modules/semantic-release/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, + "peer": true, "dependencies": { - "p-limit": "^2.0.0" + "escape-string-regexp": "5.0.0" }, "engines": { - "node": ">=6" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pkg-conf/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/semantic-release/node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, + "peer": true, "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/pkg-conf/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/semantic-release/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, + "peer": true, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pkg-conf/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-conf/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/semantic-release/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, + "peer": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/pkg-conf/node_modules/type-fest": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", - "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "node_modules/semantic-release/node_modules/execa/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, + "peer": true, "engines": { - "node": ">=6" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/semantic-release/node_modules/figures": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", + "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", "dev": true, + "peer": true, "dependencies": { - "find-up": "^4.0.0" + "is-unicode-supported": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pkginfo": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", - "integrity": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==", + "node_modules/semantic-release/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, + "peer": true, "engines": { - "node": ">= 0.4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "node_modules/semantic-release/node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, + "peer": true, "dependencies": { - "semver-compare": "^1.0.0" + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "node_modules/semantic-release/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, + "peer": true, "engines": { - "node": ">=4" + "node": ">=16.17.0" } }, - "node_modules/portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "node_modules/semantic-release/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, - "dependencies": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, + "peer": true, "engines": { - "node": ">= 0.12.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/portfinder/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "node_modules/semantic-release/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "lodash": "^4.17.14" + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/semantic-release/node_modules/is-unicode-supported": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", + "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "peer": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss": { - "version": "8.4.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", - "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", + "node_modules/semantic-release/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "peer": true, "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "argparse": "^2.0.1" }, - "engines": { - "node": "^10 || ^12 || >=14" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/postcss-calc": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", - "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "node_modules/semantic-release/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" - }, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" + "node": "14 || >=16.14" } }, - "node_modules/postcss-colormin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", - "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", + "node_modules/semantic-release/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-convert-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", - "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", + "node_modules/semantic-release/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "peer": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "path-key": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-comments": { + "node_modules/semantic-release/node_modules/onetime": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", - "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "peer": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-duplicates": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", - "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", + "node_modules/semantic-release/node_modules/p-reduce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", + "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", "dev": true, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-empty": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", - "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", + "node_modules/semantic-release/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-overridden": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", - "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", + "node_modules/semantic-release/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=14" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "node_modules/semantic-release/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, + "peer": true, "engines": { - "node": ">=10.0.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-loader": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.2.4.tgz", - "integrity": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==", + "node_modules/semver": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", + "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", "dev": true, "dependencies": { - "cosmiconfig": "^8.1.3", - "cosmiconfig-typescript-loader": "^4.3.0", - "klona": "^2.0.6", - "semver": "^7.3.8" - }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "lru-cache": "^6.0.0" }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "ts-node": ">=10", - "typescript": ">=4", - "webpack": "^5.0.0" + "bin": { + "semver": "bin/semver.js" }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - }, - "typescript": { - "optional": true - } + "engines": { + "node": ">=10" } }, - "node_modules/postcss-loader/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", "dev": true }, - "node_modules/postcss-loader/node_modules/cosmiconfig": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", - "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "node_modules/semver-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", "dev": true, + "peer": true, "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" + "semver": "^7.3.5" }, "engines": { - "node": ">=14" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/d-fischer" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-loader/node_modules/cosmiconfig-typescript-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", - "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", + "node_modules/semver-regex": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", + "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", "dev": true, "engines": { - "node": ">=12", - "npm": ">=6" + "node": ">=12" }, - "peerDependencies": { - "@types/node": "*", - "cosmiconfig": ">=7", - "ts-node": ">=10", - "typescript": ">=3" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-loader/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/semver-truncate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-3.0.0.tgz", + "integrity": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "semver": "^7.3.5" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-merge-longhand": { + "node_modules/semver/node_modules/lru-cache": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", - "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=10" } }, - "node_modules/postcss-merge-rules": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", - "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.0", - "postcss-selector-parser": "^6.0.5" + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.8.0" } }, - "node_modules/postcss-minify-font-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", - "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "ms": "2.0.0" } }, - "node_modules/postcss-minify-gradients": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", - "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dev": true, "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "randombytes": "^2.1.0" } }, - "node_modules/postcss-minify-params": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", - "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.8.0" } }, - "node_modules/postcss-minify-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", - "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "ms": "2.0.0" } }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 0.6" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 0.6" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 0.6" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0" + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 0.8.0" } }, - "node_modules/postcss-normalize-charset": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", - "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", + "node_modules/server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", + "dev": true + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-getter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", + "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" + "dependencies": { + "to-object-path": "^0.3.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-display-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", - "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "kind-of": "^6.0.2" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-positions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", - "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", - "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-string": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", - "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", - "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-normalize-unicode": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", - "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", "dev": true, + "peer": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=6" } }, - "node_modules/postcss-normalize-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", - "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", + "node_modules/signale/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", - "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", + "node_modules/signale/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.8.0" } }, - "node_modules/postcss-ordered-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", - "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", + "node_modules/signale/node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", "dev": true, + "peer": true, "dependencies": { - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" + "escape-string-regexp": "^1.0.5" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-reduce-initial": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", - "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", + "node_modules/signale/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, + "peer": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "locate-path": "^2.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-reduce-transforms": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", - "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", + "node_modules/signale/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "peer": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "node_modules/signale/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, + "peer": true, "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" }, "engines": { "node": ">=4" } }, - "node_modules/postcss-svgo": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", - "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", + "node_modules/signale/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, + "peer": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^3.0.2" + "p-try": "^1.0.0" }, "engines": { - "node": "^14 || ^16 || >= 18" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-unique-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", - "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", + "node_modules/signale/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, + "peer": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "p-limit": "^1.1.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true + "node_modules/signale/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/signale/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, + "peer": true, "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "node_modules/signale/node_modules/pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "peer": true, + "dependencies": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "node": ">=4" } }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "node_modules/signale/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "engines": { - "node": ">=6" + "peer": true, + "dependencies": { + "has-flag": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=4" } }, - "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "node_modules/sigstore": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", + "integrity": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "@sigstore/protobuf-specs": "^0.1.0", + "@sigstore/tuf": "^1.0.1", + "make-fetch-happen": "^11.0.1" + }, + "bin": { + "sigstore": "bin/sigstore.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", "dev": true, - "engines": { - "node": ">=10" + "peer": true, + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=8" } }, - "node_modules/proc-log": { + "node_modules/slash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/process-warning": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", - "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", - "dev": true + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", "dev": true, "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" }, "engines": { - "node": ">=10" + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", "dev": true, "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" }, "engines": { - "node": ">= 6" + "node": ">= 10" } }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "node_modules/sonic-boom": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", + "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", "dev": true, "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "atomic-sleep": "^1.0.0" } }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true - }, - "node_modules/property-expr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", - "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", - "dev": true - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true, - "peer": true - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", "dev": true, "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "is-plain-obj": "^1.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/proxy-from-env": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", - "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", - "dev": true - }, - "node_modules/prr": { + "node_modules/sort-keys-length": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "dev": true - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", "dev": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "node_modules/source-map-explorer": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/source-map-explorer/-/source-map-explorer-2.5.3.tgz", + "integrity": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] + "dependencies": { + "btoa": "^1.2.1", + "chalk": "^4.1.0", + "convert-source-map": "^1.7.0", + "ejs": "^3.1.5", + "escape-html": "^1.0.3", + "glob": "^7.1.6", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "open": "^7.3.1", + "source-map": "^0.7.4", + "temp": "^0.9.4", + "yargs": "^16.2.0" + }, + "bin": { + "sme": "bin/cli.js", + "source-map-explorer": "bin/cli.js" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/qs": { - "version": "6.10.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", - "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", + "node_modules/source-map-explorer/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=0.6" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/source-map-explorer/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", - "dev": true + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/source-map-explorer/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dev": true, + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", + "node_modules/source-map-explorer/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "dependencies": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "engines": { - "node": ">= 0.10.0" + "node": ">=10" } }, - "node_modules/randomatic/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "node_modules/source-map-explorer/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/randomatic/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/source-map-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", + "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", "dev": true, "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, + "abab": "^2.0.6", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.2" + }, "engines": { - "node": ">= 0.6" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.72.1" } }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "node_modules/source-map-loader/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, - "peer": true, "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/rc/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "peer": true - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "peer": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", "dev": true }, - "node_modules/read-cache": { + "node_modules/spawn-error-forwarder": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", + "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", + "dev": true, + "peer": true + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, "dependencies": { - "pify": "^2.3.0" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/read-package-json": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", - "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "dependencies": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=6.0.0" } }, - "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { + "node_modules/spdy-transport": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" } }, - "node_modules/read-package-json/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/read-package-json/node_modules/glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "dev": true, + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" }, "bin": { - "glob": "dist/cjs/src/bin.js" + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=0.10.0" } }, - "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "node_modules/ssri": { + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.4.tgz", + "integrity": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==", "dev": true, + "dependencies": { + "minipass": "^5.0.0" + }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/read-package-json/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "escape-string-regexp": "^2.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=10" } }, - "node_modules/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, - "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/read-pkg-up": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", - "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", - "deprecated": "Renamed to read-package-up", + "node_modules/standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", + "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "find-up-simple": "^1.0.0", - "read-pkg": "^9.0.0", - "type-fest": "^4.6.0" + "eslint": "^8.41.0", + "eslint-config-standard": "17.1.0", + "eslint-config-standard-jsx": "^11.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-n": "^15.7.0", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react": "^7.32.2", + "standard-engine": "^15.0.0", + "version-guard": "^1.1.1" }, - "engines": { - "node": ">=18" + "bin": { + "standard": "bin/cmd.cjs" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/read-pkg-up/node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "node_modules/standard-engine": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", + "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "lru-cache": "^10.0.1" + "get-stdin": "^8.0.0", + "minimist": "^1.2.6", + "pkg-conf": "^3.1.0", + "xdg-basedir": "^4.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/read-pkg-up/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "node_modules/standard/node_modules/@eslint/eslintrc": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", + "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, "engines": { - "node": "14 || >=16.14" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/read-pkg-up/node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "node_modules/standard/node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", "dev": true, "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": ">=10.10.0" } }, - "node_modules/read-pkg-up/node_modules/parse-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", - "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", + "node_modules/standard/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.13", - "index-to-position": "^0.1.2", - "type-fest": "^4.7.1" - }, - "engines": { - "node": ">=18" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/read-pkg-up/node_modules/read-pkg": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", - "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", + "node_modules/standard/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/standard/node_modules/eslint": { + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", + "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", "dev": true, "dependencies": { - "@types/normalize-package-data": "^2.4.3", - "normalize-package-data": "^6.0.0", - "parse-json": "^8.0.0", - "type-fest": "^4.6.0", - "unicorn-magic": "^0.1.0" + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.1.0", + "@eslint/js": "8.44.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.6.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": ">=18" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "node_modules/standard/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "node": ">=16" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "node_modules/standard/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "pify": "^3.0.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=4" + "node": ">=10.13.0" } }, - "node_modules/read-pkg/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/standard/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "node_modules/standard/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/standard/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "node_modules/standard/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "dependencies": { - "readable-stream": "^3.6.0" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/standard/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 6" + "node": "*" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/standard/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { - "picomatch": "^2.2.1" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=8.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/real-require": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz", - "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==", + "node_modules/standard/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { - "node": ">= 12.13.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/redeyed": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", - "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true, - "peer": true, - "dependencies": { - "esprima": "~4.0.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", - "dev": true - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true + "node_modules/steno": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", + "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.3" + } }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", "dev": true, "dependencies": { - "regenerate": "^1.4.2" + "internal-slot": "^1.0.4" }, "engines": { - "node": ">=4" + "node": ">= 0.4" } }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "node_modules/stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", "dev": true, + "peer": true, "dependencies": { - "@babel/runtime": "^7.8.4" + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" } }, - "node_modules/regex-parser": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", - "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", - "dev": true - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "safe-buffer": "~5.1.0" } }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", "dev": true, - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, "engines": { - "node": ">=4" + "node": ">=0.6.19" } }, - "node_modules/registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "peer": true, "dependencies": { - "@pnpm/npm-conf": "^2.1.0" + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=14" + "node": ">=10" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { - "jsesc": "~0.5.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "engines": { + "node": ">=8" } }, - "node_modules/remarkable": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", - "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { - "argparse": "^1.0.10", - "autolinker": "~0.28.0" - }, - "bin": { - "remarkable": "bin/remarkable.js" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 0.10.0" + "node": ">=8" } }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { - "node": ">=0.10" + "node": ">=8" } }, - "node_modules/replace-json-property": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/replace-json-property/-/replace-json-property-1.9.0.tgz", - "integrity": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==", + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", "dev": true, "dependencies": { - "chalk": "^4.1.0", - "commander": "^2.19.0", - "jsonfile": "^5.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" }, - "bin": { - "replace-json-property": "bin/replace-json-property.bin.js", - "rjp": "bin/replace-json-property.bin.js" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/replace-json-property/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/string.prototype.padend": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", + "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/replace-json-property/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/replace-json-property/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/replace-json-property/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/replace-json-property/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/replace-json-property/node_modules/jsonfile": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz", - "integrity": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==", + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", "dev": true, "dependencies": { - "universalify": "^0.1.2" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/replace-json-property/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, - "node_modules/replace-json-property/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/request-progress": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", - "dev": true, - "dependencies": { - "throttleit": "^1.0.0" + "node": ">=8" } }, - "node_modules/request/node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": ">=8" } }, - "node_modules/request/node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "node_modules/strip-color": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", + "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", "dev": true, - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, "engines": { - "node": ">=0.6.0" + "node": ">=0.10.0" } }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "dev": true, "engines": { - "node": ">=0.6" + "node": ">=0.10.0" } }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, - "bin": { - "uuid": "bin/uuid" + "engines": { + "node": ">=6" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "node_modules/strip-outer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-2.0.0.tgz", + "integrity": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "node_modules/strong-log-transformer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "duplexer": "^0.1.1", + "minimist": "^1.2.0", + "through": "^2.3.4" }, "bin": { - "resolve": "bin/resolve" + "sl-log-transformer": "bin/sl-log-transformer.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "node_modules/strtok3": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", + "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", "dev": true, "dependencies": { - "resolve-from": "^5.0.0" + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/style-loader": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/resolve-url-loader": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", - "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", + "node_modules/stylehacks": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", + "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", "dev": true, "dependencies": { - "adjust-sourcemap-loader": "^4.0.0", - "convert-source-map": "^1.7.0", - "loader-utils": "^2.0.0", - "postcss": "^8.2.14", - "source-map": "0.6.1" + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" }, "engines": { - "node": ">=12" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/resolve-url-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/stylus": { + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.59.0.tgz", + "integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==", "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "@adobe/css-tools": "^4.0.1", + "debug": "^4.3.2", + "glob": "^7.1.6", + "sax": "~1.2.4", + "source-map": "^0.7.3" + }, + "bin": { + "stylus": "bin/stylus" }, "engines": { - "node": ">=8.9.0" + "node": "*" + }, + "funding": { + "url": "https://opencollective.com/stylus" } }, - "node_modules/resolve-url-loader/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/stylus-loader": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", + "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", "dev": true, + "dependencies": { + "fast-glob": "^3.2.12", + "normalize-path": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "stylus": ">=0.52.4", + "webpack": "^5.0.0" } }, - "node_modules/resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dev": true, - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/stylus-loader/node_modules/fast-glob": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", + "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", "dev": true, "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=8" - } - }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=8.6.0" } }, - "node_modules/rimraf/node_modules/glob": { + "node_modules/stylus/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", @@ -30742,7 +29264,7 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rimraf/node_modules/minimatch": { + "node_modules/stylus/node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", @@ -30754,464 +29276,355 @@ "node": "*" } }, - "node_modules/rollup": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.0.tgz", - "integrity": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==", + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "bin": { - "rollup": "dist/bin/rollup" + "dependencies": { + "has-flag": "^4.0.0" }, "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" + "node": ">=10" }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "node_modules/supports-hyperlinks": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", + "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, "engines": { - "node": ">=0.12.0" + "node": ">=14.18" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "peer": true, "dependencies": { - "tslib": "^2.1.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { + "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/sass": { - "version": "1.62.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", - "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", + "node_modules/svgo": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", + "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", "dev": true, "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.2.1", + "csso": "^5.0.5", + "picocolors": "^1.0.0" }, "bin": { - "sass": "sass.js" + "svgo": "bin/svgo" }, "engines": { "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" } }, - "node_modules/sass-loader": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz", - "integrity": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==", + "node_modules/svgo/node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "dependencies": { - "klona": "^2.0.6", - "neo-async": "^2.6.2" - }, - "engines": { - "node": ">= 14.15.0" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.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 - } + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true + "node_modules/svgo/node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "node_modules/svgo/node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "dependencies": { - "xmlchars": "^2.2.0" + "domelementtype": "^2.3.0" }, "engines": { - "node": ">=v12.22.7" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "node_modules/svgo/node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/svgo/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, "engines": { - "node": ">= 12.13.0" + "node": ">=0.12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/secure-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", - "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", - "dev": true + "node_modules/symbol-observable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "node_modules/select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, - "node_modules/selfsigned": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", - "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true, - "dependencies": { - "node-forge": "^1" - }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/semantic-release": { - "version": "22.0.12", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", - "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", + "node_modules/tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", "dev": true, - "peer": true, "dependencies": { - "@semantic-release/commit-analyzer": "^11.0.0", - "@semantic-release/error": "^4.0.0", - "@semantic-release/github": "^9.0.0", - "@semantic-release/npm": "^11.0.0", - "@semantic-release/release-notes-generator": "^12.0.0", - "aggregate-error": "^5.0.0", - "cosmiconfig": "^8.0.0", - "debug": "^4.0.0", - "env-ci": "^10.0.0", - "execa": "^8.0.0", - "figures": "^6.0.0", - "find-versions": "^5.1.0", - "get-stream": "^6.0.0", - "git-log-parser": "^1.2.0", - "hook-std": "^3.0.0", - "hosted-git-info": "^7.0.0", - "import-from-esm": "^1.3.1", - "lodash-es": "^4.17.21", - "marked": "^9.0.0", - "marked-terminal": "^6.0.0", - "micromatch": "^4.0.2", - "p-each-series": "^3.0.0", - "p-reduce": "^3.0.0", - "read-pkg-up": "^11.0.0", - "resolve-from": "^5.0.0", - "semver": "^7.3.2", - "semver-diff": "^4.0.0", - "signale": "^1.2.1", - "yargs": "^17.5.1" - }, - "bin": { - "semantic-release": "bin/semantic-release.js" + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" }, "engines": { - "node": "^18.17 || >=20.6.1" + "node": ">=10" } }, - "node_modules/semantic-release/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, - "peer": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, "engines": { - "node": ">=18" + "node": ">=6" } }, - "node_modules/semantic-release/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "peer": true, "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 6" } }, - "node_modules/semantic-release/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "peer": true - }, - "node_modules/semantic-release/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, - "peer": true, "dependencies": { - "escape-string-regexp": "5.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/semantic-release/node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "peer": true, "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=8" } }, - "node_modules/semantic-release/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "peer": true, - "engines": { - "node": ">=12" + "bin": { + "mkdirp": "bin/cmd.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=10" } }, - "node_modules/semantic-release/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "peer": true, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" }, "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=6.0.0" } }, - "node_modules/semantic-release/node_modules/execa/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "node_modules/temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", "dev": true, "peer": true, "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=14.16" } }, - "node_modules/semantic-release/node_modules/figures": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", - "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "peer": true, "dependencies": { - "is-unicode-supported": "^2.0.0" - }, - "engines": { - "node": ">=18" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "peer": true, "engines": { - "node": ">=10" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/semantic-release/node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "node_modules/temp/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "peer": true, "dependencies": { - "lru-cache": "^10.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "*" } }, - "node_modules/semantic-release/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, - "peer": true, - "engines": { - "node": ">=16.17.0" + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" } }, - "node_modules/semantic-release/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "node_modules/tempy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", "dev": true, "peer": true, + "dependencies": { + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/is-stream": { + "node_modules/tempy/node_modules/is-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", @@ -31224,8904 +29637,5256 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/is-unicode-supported": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", - "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", + "node_modules/tempy/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, "peer": true, "engines": { - "node": ">=18" + "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/terser": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", + "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", "dev": true, - "peer": true, "dependencies": { - "argparse": "^2.0.1" + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" }, "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/semantic-release/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true, - "peer": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/semantic-release/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "peer": true, - "dependencies": { - "path-key": "^4.0.0" + "terser": "bin/terser" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/semantic-release/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "dev": true, - "peer": true, "dependencies": { - "mimic-fn": "^4.0.0" + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { - "node": ">=12" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/p-reduce": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", - "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=12" + "peerDependencies": { + "webpack": "^5.1.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } } }, - "node_modules/semantic-release/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "peer": true, - "engines": { - "node": ">=14" + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/semantic-release/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, - "peer": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/semver": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", - "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=10" + "node": ">= 10.13.0" } }, - "node_modules/semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/semver-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", - "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, - "peer": true, "dependencies": { - "semver": "^7.3.5" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=12" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/semver-regex": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", - "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/semver-truncate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-3.0.0.tgz", - "integrity": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==", + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "semver": "^7.3.5" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=12" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" + "node": "*" } }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "node_modules/text-extensions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", + "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", "dev": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/thread-stream": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", + "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==", "dev": true, "dependencies": { - "ms": "2.0.0" + "real-require": "^0.1.0" } }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", "dev": true }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, "dependencies": { - "randombytes": "^2.1.0" + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" } }, - "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "dev": true, "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "rimraf": "^3.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8.17.0" } }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "dev": true, "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "kind-of": "^3.0.2" }, "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=8.0" } }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "node_modules/to-regex-range/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=0.12.0" } }, - "node_modules/server-destroy": { + "node_modules/toidentifier": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", - "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", - "dev": true - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-getter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", - "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, - "dependencies": { - "to-object-path": "^0.3.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=0.6" } }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "node_modules/token-types": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", + "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", "dev": true, "dependencies": { - "kind-of": "^6.0.2" + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" }, "engines": { - "node": ">=8" + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/shallow-clone/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/toml": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", + "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", + "dev": true }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", + "dev": true + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "dev": true, "dependencies": { - "shebang-regex": "^3.0.0" + "psl": "^1.1.28", + "punycode": "^2.1.1" }, "engines": { - "node": ">=8" + "node": ">=0.8" } }, - "node_modules/shebang-regex": { + "node_modules/tr46": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "node_modules/traverse": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", + "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", "dev": true, + "peer": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "tree-kill": "cli.js" } }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/signale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", - "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", + "node_modules/trim-repeated": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-2.0.0.tgz", + "integrity": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==", "dev": true, - "peer": true, "dependencies": { - "chalk": "^2.3.2", - "figures": "^2.0.0", - "pkg-conf": "^2.1.0" + "escape-string-regexp": "^5.0.0" }, "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/signale/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/trim-repeated/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, - "peer": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/signale/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/ts-jest": { + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, - "peer": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, "engines": { - "node": ">=0.8.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } } }, - "node_modules/signale/node_modules/figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "peer": true, "dependencies": { - "escape-string-regexp": "^1.0.5" + "yallist": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/signale/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, - "peer": true, "dependencies": { - "locate-path": "^2.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/signale/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/ts-loader": { + "version": "9.4.4", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", + "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", "dev": true, - "peer": true, + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, "engines": { - "node": ">=4" + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" } }, - "node_modules/signale/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", "dev": true, - "peer": true, "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" }, - "engines": { - "node": ">=4" + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } } }, - "node_modules/signale/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", "dev": true, - "peer": true, "dependencies": { - "p-try": "^1.0.0" + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/signale/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "node_modules/tsconfig-paths-webpack-plugin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz", + "integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==", "dev": true, - "peer": true, "dependencies": { - "p-limit": "^1.1.0" + "chalk": "^4.1.0", + "enhanced-resolve": "^5.7.0", + "tsconfig-paths": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=10.13.0" } }, - "node_modules/signale/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "peer": true, "engines": { "node": ">=4" } }, - "node_modules/signale/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "node_modules/tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", "dev": true, - "peer": true, "engines": { - "node": ">=4" + "node": ">=0.6.x" } }, - "node_modules/signale/node_modules/pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "peer": true, "dependencies": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" + "tslib": "^1.8.1" }, "engines": { - "node": ">=4" + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "node_modules/signale/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tuf-js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", + "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", "dev": true, - "peer": true, "dependencies": { - "has-flag": "^3.0.0" + "@tufjs/models": "1.0.4", + "debug": "^4.3.4", + "make-fetch-happen": "^11.1.1" }, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/sigstore": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", - "integrity": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==", + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "@sigstore/tuf": "^1.0.1", - "make-fetch-happen": "^11.0.1" - }, - "bin": { - "sigstore": "bin/sigstore.js" + "safe-buffer": "^5.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "*" } }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "dev": true }, - "node_modules/skin-tone": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", - "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "node_modules/typanion": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.13.0.tgz", + "integrity": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "peer": true, "dependencies": { - "unicode-emoji-modifier-base": "^1.0.0" + "prelude-ls": "^1.2.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" + "node": ">= 0.6" } }, - "node_modules/sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", "dev": true, "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "node_modules/typed-assert": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", + "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", + "dev": true + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/typescript": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", + "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", "dev": true, - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" + "node": ">=12.20" } }, - "node_modules/socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", "dev": true, - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" }, "engines": { - "node": ">= 10" + "node": ">=0.8.0" } }, - "node_modules/sonic-boom": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", - "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, "dependencies": { - "atomic-sleep": "^1.0.0" + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true, - "dependencies": { - "is-plain-obj": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/sort-keys-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", - "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", "dev": true, - "dependencies": { - "sort-keys": "^1.0.0" - }, + "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, "engines": { - "node": ">= 8" + "node": ">=4" } }, - "node_modules/source-map-explorer": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/source-map-explorer/-/source-map-explorer-2.5.3.tgz", - "integrity": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==", + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true, - "dependencies": { - "btoa": "^1.2.1", - "chalk": "^4.1.0", - "convert-source-map": "^1.7.0", - "ejs": "^3.1.5", - "escape-html": "^1.0.3", - "glob": "^7.1.6", - "gzip-size": "^6.0.0", - "lodash": "^4.17.20", - "open": "^7.3.1", - "source-map": "^0.7.4", - "temp": "^0.9.4", - "yargs": "^16.2.0" - }, - "bin": { - "sme": "bin/cli.js", - "source-map-explorer": "bin/cli.js" - }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/source-map-explorer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4" } }, - "node_modules/source-map-explorer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/source-map-explorer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/union": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "qs": "^6.4.0" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.8.0" } }, - "node_modules/source-map-explorer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/source-map-explorer/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "unique-slug": "^4.0.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-explorer/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "imurmurhash": "^0.1.4" }, "engines": { - "node": "*" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/source-map-explorer/node_modules/open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dev": true, + "peer": true, "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" + "crypto-random-string": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/source-map-explorer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/universal-user-agent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "peer": true }, - "node_modules/source-map-explorer/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, "engines": { - "node": ">=10" + "node": ">= 10.0.0" } }, - "node_modules/source-map-explorer/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "node_modules/unix-crypt-td-js": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", + "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", + "dev": true + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.8" } }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/source-map-loader": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", - "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "abab": "^2.0.6", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": ">= 14.15.0" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "bin": { + "update-browserslist-db": "cli.js" }, "peerDependencies": { - "webpack": "^5.72.1" + "browserslist": ">= 4.21.0" } }, - "node_modules/source-map-loader/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" + "punycode": "^2.1.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" } }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "node_modules/spawn-error-forwarder": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", - "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true, - "peer": true + "engines": { + "node": ">= 0.4.0" + } }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/spdx-exceptions": { + "node_modules/v8-compile-cache": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, - "node_modules/spdx-expression-parse": { + "node_modules/v8-compile-cache-lib": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, - "node_modules/spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", "dev": true, "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=10.12.0" } }, - "node_modules/spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/spdy-transport/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/validate-npm-package-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", + "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "builtins": "^5.0.0" }, "engines": { - "node": ">= 6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "dev": true, - "engines": { - "node": ">= 10.x" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "dev": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ssri": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.4.tgz", - "integrity": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==", - "dev": true, - "dependencies": { - "minipass": "^5.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "node_modules/validator": { + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", + "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", "dev": true, - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, "engines": { - "node": ">=10" + "node": ">= 0.10" } }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", - "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", + "node_modules/verdaccio": { + "version": "5.25.0", + "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.25.0.tgz", + "integrity": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "dependencies": { - "eslint": "^8.41.0", - "eslint-config-standard": "17.1.0", - "eslint-config-standard-jsx": "^11.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-n": "^15.7.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react": "^7.32.2", - "standard-engine": "^15.0.0", - "version-guard": "^1.1.1" + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/local-storage": "10.3.3", + "@verdaccio/logger-7": "6.0.0-6-next.16", + "@verdaccio/middleware": "6.0.0-6-next.50", + "@verdaccio/search": "6.0.0-6-next.2", + "@verdaccio/signature": "6.0.0-6-next.2", + "@verdaccio/streams": "10.2.1", + "@verdaccio/tarball": "11.0.0-6-next.40", + "@verdaccio/ui-theme": "6.0.0-6-next.71", + "@verdaccio/url": "11.0.0-6-next.37", + "@verdaccio/utils": "6.0.0-6-next.39", + "async": "3.2.4", + "body-parser": "1.20.2", + "clipanion": "3.2.0", + "compression": "1.7.4", + "cookies": "0.8.0", + "cors": "2.8.5", + "debug": "^4.3.4", + "envinfo": "7.8.1", + "express": "4.18.2", + "express-rate-limit": "5.5.1", + "fast-safe-stringify": "2.1.1", + "handlebars": "4.7.7", + "js-yaml": "4.1.0", + "JSONStream": "1.3.5", + "jsonwebtoken": "9.0.0", + "kleur": "4.1.5", + "lodash": "4.17.21", + "lru-cache": "7.18.3", + "mime": "3.0.0", + "mkdirp": "1.0.4", + "mv": "2.1.1", + "pkginfo": "0.4.1", + "request": "2.88.2", + "semver": "7.5.1", + "validator": "13.9.0", + "verdaccio-audit": "11.0.0-6-next.34", + "verdaccio-htpasswd": "11.0.0-6-next.41" }, "bin": { - "standard": "bin/cmd.cjs" + "verdaccio": "bin/verdaccio" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/standard-engine": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", - "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "get-stdin": "^8.0.0", - "minimist": "^1.2.6", - "pkg-conf": "^3.1.0", - "xdg-basedir": "^4.0.0" + "node": ">=12.18" }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/standard/node_modules/@eslint/eslintrc": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", - "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", + "node_modules/verdaccio-audit": { + "version": "11.0.0-6-next.34", + "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-11.0.0-6-next.34.tgz", + "integrity": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==", "dev": true, "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" + "@verdaccio/config": "6.0.0-6-next.71", + "@verdaccio/core": "6.0.0-6-next.71", + "express": "4.18.2", + "https-proxy-agent": "5.0.1", + "node-fetch": "cjs" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=12" }, "funding": { - "url": "https://opencollective.com/eslint" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/standard/node_modules/@humanwhocodes/config-array": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", - "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "node_modules/verdaccio-htpasswd": { + "version": "11.0.0-6-next.41", + "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-11.0.0-6-next.41.tgz", + "integrity": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" + "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/file-locking": "11.0.0-6-next.7", + "apache-md5": "1.1.8", + "bcryptjs": "2.4.3", + "core-js": "3.30.2", + "debug": "4.3.4", + "http-errors": "2.0.0", + "unix-crypt-td-js": "1.1.4" }, "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/standard/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "node": ">=14", + "npm": ">=6" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/standard/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/verdaccio-htpasswd/node_modules/@verdaccio/file-locking": { + "version": "11.0.0-6-next.7", + "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-11.0.0-6-next.7.tgz", + "integrity": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "lockfile": "1.0.4" }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/verdaccio" } }, - "node_modules/standard/node_modules/argparse": { + "node_modules/verdaccio/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/standard/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/verdaccio/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "argparse": "^2.0.1" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/standard/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/verdaccio/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=6" } }, - "node_modules/standard/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/verdaccio/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } }, - "node_modules/standard/node_modules/eslint": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", - "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", + "node_modules/verdaccio/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.1.0", - "@eslint/js": "8.44.0", - "@humanwhocodes/config-array": "^0.11.10", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.1", - "espree": "^9.6.0", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, "bin": { - "eslint": "bin/eslint.js" + "mime": "cli.js" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=10.0.0" } }, - "node_modules/standard/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/verdaccio/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/standard/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/verdaccio/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=10.13.0" + "node": ">=10" } }, - "node_modules/standard/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "node_modules/verdaccio/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "type-fest": "^0.20.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/standard/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/verdaccio/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, + "engines": [ + "node >=0.6.0" + ], "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" } }, - "node_modules/standard/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, - "node_modules/standard/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/version-guard": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", + "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.48" } }, - "node_modules/standard/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/vite": { + "version": "4.3.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", + "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "esbuild": "^0.17.5", + "postcss": "^8.4.23", + "rollup": "^3.21.0" + }, + "bin": { + "vite": "bin/vite.js" }, "engines": { - "node": "*" + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } } }, - "node_modules/standard/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "xml-name-validator": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=14" } }, - "node_modules/standard/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "makeerror": "1.0.12" } }, - "node_modules/standard/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, - "engines": { - "node": ">= 0.8" + "dependencies": { + "minimalistic-assert": "^1.0.0" } }, - "node_modules/steno": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", - "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.3" + "defaults": "^1.0.3" } }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", "dev": true, - "dependencies": { - "internal-slot": "^1.0.4" - }, "engines": { - "node": ">= 0.4" + "node": ">=12" } }, - "node_modules/stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", + "node_modules/webpack": { + "version": "5.80.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", + "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", "dev": true, - "peer": true, "dependencies": { - "duplexer2": "~0.1.0", - "readable-stream": "^2.0.2" + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.13.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/webpack-dev-middleware": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz", + "integrity": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==", "dev": true, "dependencies": { - "safe-buffer": "~5.1.0" + "colorette": "^2.0.10", + "memfs": "^3.4.12", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "node_modules/webpack-dev-server": { + "version": "4.13.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz", + "integrity": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==", "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "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-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, "engines": { - "node": ">=0.6.19" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } } }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", "dev": true, - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, "engines": { - "node": ">=10" + "node": ">= 10" } }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=10.0.0" } }, - "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "node_modules/webpack-node-externals": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", + "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10.13.0" } }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "node_modules/webpack-subresource-integrity": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", + "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" + "typed-assert": "^1.0.8" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", + "webpack": "^5.12.0" + }, + "peerDependenciesMeta": { + "html-webpack-plugin": { + "optional": true + } } }, - "node_modules/string.prototype.padend": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", - "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8.0.0" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4.0" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=8" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" }, "engines": { - "node": ">=8" + "node": ">=0.8.0" } }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.8.0" } }, - "node_modules/strip-color": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", - "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", "dev": true, "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-outer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-2.0.0.tgz", - "integrity": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==", - "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/strong-log-transformer": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", - "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { - "duplexer": "^0.1.1", - "minimist": "^1.2.0", - "through": "^2.3.4" + "isexe": "^2.0.0" }, "bin": { - "sl-log-transformer": "bin/sl-log-transformer.js" + "node-which": "bin/node-which" }, "engines": { - "node": ">=4" + "node": ">= 8" } }, - "node_modules/strtok3": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", - "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - }, - "engines": { - "node": ">=14.16" + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/style-loader": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", - "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", "dev": true, - "engines": { - "node": ">= 12.13.0" + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/stylehacks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", - "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/stylus": { - "version": "0.59.0", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.59.0.tgz", - "integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==", + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, "dependencies": { - "@adobe/css-tools": "^4.0.1", - "debug": "^4.3.2", - "glob": "^7.1.6", - "sax": "~1.2.4", - "source-map": "^0.7.3" - }, - "bin": { - "stylus": "bin/stylus" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://opencollective.com/stylus" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/stylus-loader": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", - "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { - "fast-glob": "^3.2.12", - "normalize-path": "^3.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "stylus": ">=0.52.4", - "webpack": "^5.0.0" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/stylus-loader/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=8.6.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/stylus/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/stylus/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "color-name": "~1.1.4" }, "engines": { - "node": "*" + "node": ">=7.0.0" } }, - "node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/supports-hyperlinks": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", - "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "peer": true, "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=14.18" + "node": ">=7.0.0" } }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true }, - "node_modules/svgo": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", - "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^5.1.0", - "css-tree": "^2.2.1", - "csso": "^5.0.5", - "picocolors": "^1.0.0" - }, - "bin": { - "svgo": "bin/svgo" + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" }, "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/svgo" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/svgo/node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" + "engines": { + "node": ">=10.0.0" }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/svgo/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/svgo/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", "dev": true, - "dependencies": { - "domelementtype": "^2.3.0" - }, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": ">=8" } }, - "node_modules/svgo/node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", "dev": true, - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "engines": { + "node": ">=12" } }, - "node_modules/svgo/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node": ">=0.4" } }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "engines": { - "node": ">=0.10" + "node": ">=10" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 6" } }, - "node_modules/tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/yargs/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">= 6" + "node": ">=12" } }, - "node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" } }, - "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/temp": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", - "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "node_modules/yup": { + "version": "0.32.11", + "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", + "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", "dev": true, "dependencies": { - "mkdirp": "^0.5.1", - "rimraf": "~2.6.2" + "@babel/runtime": "^7.15.4", + "@types/lodash": "^4.14.175", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "nanoclone": "^0.2.1", + "property-expr": "^2.0.4", + "toposort": "^2.0.2" }, "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/temp/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/temp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/temp/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, + "node_modules/zone.js": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.13.1.tgz", + "integrity": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==", "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "tslib": "^2.3.0" } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true }, - "node_modules/tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dev": true, - "peer": true, - "dependencies": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "@adobe/css-tools": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", + "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", + "dev": true }, - "node_modules/tempy/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, - "peer": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/tempy/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "@angular-devkit/architect": { + "version": "0.1600.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.6.tgz", + "integrity": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==", "dev": true, - "peer": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "@angular-devkit/core": "16.0.6", + "rxjs": "7.8.1" } }, - "node_modules/terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", + "@angular-devkit/build-angular": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.0.6.tgz", + "integrity": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==", "dev": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" + "requires": { + "@ampproject/remapping": "2.2.1", + "@angular-devkit/architect": "0.1600.6", + "@angular-devkit/build-webpack": "0.1600.6", + "@angular-devkit/core": "16.0.6", + "@babel/core": "7.21.4", + "@babel/generator": "7.21.4", + "@babel/helper-annotate-as-pure": "7.18.6", + "@babel/helper-split-export-declaration": "7.18.6", + "@babel/plugin-proposal-async-generator-functions": "7.20.7", + "@babel/plugin-transform-async-to-generator": "7.20.7", + "@babel/plugin-transform-runtime": "7.21.4", + "@babel/preset-env": "7.21.4", + "@babel/runtime": "7.21.0", + "@babel/template": "7.20.7", + "@discoveryjs/json-ext": "0.5.7", + "@ngtools/webpack": "16.0.6", + "@vitejs/plugin-basic-ssl": "1.0.1", + "ansi-colors": "4.1.3", + "autoprefixer": "10.4.14", + "babel-loader": "9.1.2", + "babel-plugin-istanbul": "6.1.1", + "browserslist": "4.21.5", + "cacache": "17.0.6", + "chokidar": "3.5.3", + "copy-webpack-plugin": "11.0.0", + "critters": "0.0.16", + "css-loader": "6.7.3", + "esbuild": "0.17.18", + "esbuild-wasm": "0.17.18", + "glob": "8.1.0", + "https-proxy-agent": "5.0.1", + "inquirer": "8.2.4", + "jsonc-parser": "3.2.0", + "karma-source-map-support": "1.4.0", + "less": "4.1.3", + "less-loader": "11.1.0", + "license-webpack-plugin": "4.0.2", + "loader-utils": "3.2.1", + "magic-string": "0.30.0", + "mini-css-extract-plugin": "2.7.5", + "mrmime": "1.0.1", + "open": "8.4.2", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "7.0.0", + "picomatch": "2.3.1", + "piscina": "3.2.0", + "postcss": "8.4.23", + "postcss-loader": "7.2.4", + "resolve-url-loader": "5.0.0", + "rxjs": "7.8.1", + "sass": "1.62.1", + "sass-loader": "13.2.2", + "semver": "7.4.0", + "source-map-loader": "4.0.1", + "source-map-support": "0.5.21", + "terser": "5.17.1", + "text-table": "0.2.0", + "tree-kill": "1.2.2", + "tslib": "2.5.0", + "vite": "4.3.9", + "webpack": "5.80.0", + "webpack-dev-middleware": "6.0.2", + "webpack-dev-server": "4.13.2", + "webpack-merge": "5.8.0", + "webpack-subresource-integrity": "5.1.0" }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", - "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true + "inquirer": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } }, - "uglify-js": { - "optional": true + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "dev": true } } }, - "node_modules/terser-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "@angular-devkit/build-webpack": { + "version": "0.1600.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1600.6.tgz", + "integrity": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "requires": { + "@angular-devkit/architect": "0.1600.6", + "rxjs": "7.8.1" } }, - "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "@angular-devkit/core": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", + "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" + "requires": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" } }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "@angular-devkit/schematics": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", + "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", "dev": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" + "requires": { + "@angular-devkit/core": "16.0.6", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" } }, - "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "@angular-eslint/bundled-angular-compiler": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz", + "integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==", "dev": true }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "@angular-eslint/eslint-plugin": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz", + "integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "requires": { + "@angular-eslint/utils": "16.0.3", + "@typescript-eslint/utils": "5.59.7" } }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "@angular-eslint/eslint-plugin-template": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz", + "integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==", "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" + "requires": { + "@angular-eslint/bundled-angular-compiler": "16.0.3", + "@angular-eslint/utils": "16.0.3", + "@typescript-eslint/type-utils": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "aria-query": "5.1.3", + "axobject-query": "3.1.1" } }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "@angular-eslint/template-parser": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz", + "integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "requires": { + "@angular-eslint/bundled-angular-compiler": "16.0.3", + "eslint-scope": "^7.0.0" } }, - "node_modules/test-exclude/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "@angular-eslint/utils": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-16.0.3.tgz", + "integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==", "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "requires": { + "@angular-eslint/bundled-angular-compiler": "16.0.3", + "@typescript-eslint/utils": "5.59.7" } }, - "node_modules/text-extensions": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", - "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@angular/animations": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.6.tgz", + "integrity": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==", + "requires": { + "tslib": "^2.3.0" } }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "@angular/cdk": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.1.3.tgz", + "integrity": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==", + "requires": { + "parse5": "^7.1.2", + "tslib": "^2.3.0" + } }, - "node_modules/thread-stream": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", - "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==", + "@angular/cli": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.0.6.tgz", + "integrity": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==", "dev": true, + "requires": { + "@angular-devkit/architect": "0.1600.6", + "@angular-devkit/core": "16.0.6", + "@angular-devkit/schematics": "16.0.6", + "@schematics/angular": "16.0.6", + "@yarnpkg/lockfile": "1.1.0", + "ansi-colors": "4.1.3", + "ini": "4.0.0", + "inquirer": "8.2.4", + "jsonc-parser": "3.2.0", + "npm-package-arg": "10.1.0", + "npm-pick-manifest": "8.0.1", + "open": "8.4.2", + "ora": "5.4.1", + "pacote": "15.1.3", + "resolve": "1.22.2", + "semver": "7.4.0", + "symbol-observable": "4.0.0", + "yargs": "17.7.2" + }, "dependencies": { - "real-require": "^0.1.0" + "inquirer": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } + } } }, - "node_modules/throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", - "dev": true + "@angular/common": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", + "integrity": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==", + "requires": { + "tslib": "^2.3.0" + } }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true + "@angular/compiler": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.0.6.tgz", + "integrity": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==", + "requires": { + "tslib": "^2.3.0" + } }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "@angular/compiler-cli": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.0.6.tgz", + "integrity": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==", "dev": true, + "requires": { + "@babel/core": "7.21.8", + "@jridgewell/sourcemap-codec": "^1.4.14", + "chokidar": "^3.0.0", + "convert-source-map": "^1.5.1", + "reflect-metadata": "^0.1.2", + "semver": "^7.0.0", + "tslib": "^2.3.0", + "yargs": "^17.2.1" + }, "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" + "@babel/core": { + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + } } }, - "node_modules/thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "dev": true + "@angular/core": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.6.tgz", + "integrity": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==", + "requires": { + "tslib": "^2.3.0" + } }, - "node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" + "@angular/forms": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.6.tgz", + "integrity": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==", + "requires": { + "tslib": "^2.3.0" } }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "@angular/language-service": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-16.0.6.tgz", + "integrity": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==", "dev": true }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "@angular/platform-browser": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.6.tgz", + "integrity": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==", + "requires": { + "tslib": "^2.3.0" } }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" + "@angular/platform-browser-dynamic": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.6.tgz", + "integrity": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==", + "requires": { + "tslib": "^2.3.0" } }, - "node_modules/to-regex-range/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" + "@angular/router": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-16.0.6.tgz", + "integrity": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==", + "requires": { + "tslib": "^2.3.0" } }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } + "@assemblyscript/loader": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", + "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", + "dev": true }, - "node_modules/token-types": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", - "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", + "@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dev": true, - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=14.16" + "requires": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, - "node_modules/toml": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", - "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", - "dev": true - }, - "node_modules/toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", + "@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", "dev": true }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "@babel/core": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", + "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", "dev": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.4", + "@babel/helper-compilation-targets": "^7.21.4", + "@babel/helper-module-transforms": "^7.21.2", + "@babel/helpers": "^7.21.0", + "@babel/parser": "^7.21.4", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.4", + "@babel/types": "^7.21.4", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/traverse": { - "version": "0.6.7", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", - "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "@babel/generator": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", + "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", "dev": true, - "peer": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "@babel/types": "^7.21.4", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" } }, - "node_modules/tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", "dev": true, - "bin": { - "tree-kill": "cli.js" + "requires": { + "@babel/types": "^7.18.6" } }, - "node_modules/trim-repeated": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-2.0.0.tgz", - "integrity": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==", + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", + "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", "dev": true, - "dependencies": { - "escape-string-regexp": "^5.0.0" - }, - "engines": { - "node": ">=12" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/trim-repeated/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", "dev": true, - "engines": { - "node": ">=12" + "requires": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "@babel/helper-create-class-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", + "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", "dev": true, - "dependencies": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "^7.5.3", - "yargs-parser": "^21.0.1" - }, - "bin": { - "ts-jest": "cli.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": ">=7.0.0-beta.0 <8", - "@jest/types": "^29.0.0", - "babel-jest": "^29.0.0", - "jest": "^29.0.0", - "typescript": ">=4.3 <6" + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "semver": "^6.3.0" }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@jest/types": { - "optional": true + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } }, - "babel-jest": { - "optional": true + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } }, - "esbuild": { - "optional": true + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, - "node_modules/ts-jest/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "@babel/helper-create-regexp-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", + "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" }, - "engines": { - "node": ">=10" + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" }, - "engines": { - "node": ">=10" + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/ts-jest/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", "dev": true }, - "node_modules/ts-loader": { - "version": "9.4.4", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", - "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", + "@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", "dev": true, + "requires": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "typescript": "*", - "webpack": "^5.0.0" + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/ts-loader/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/ts-loader/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/ts-loader/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/ts-loader/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ts-loader/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } }, - "@swc/wasm": { - "optional": true + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } } } }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dev": true, - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/tsconfig-paths-webpack-plugin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz", - "integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.0.0" - }, - "engines": { - "node": ">=10.13.0" - } + "@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "@babel/helper-remap-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", + "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.5", + "@babel/types": "^7.22.5" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "@babel/helper-replace-supers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", + "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "requires": { + "@babel/types": "^7.22.5" } }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "@babel/types": "^7.18.6" } }, - "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true }, - "node_modules/tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "dev": true, - "engines": { - "node": ">=0.6.x" - } + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", + "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" + "requires": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/tuf-js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", - "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", + "@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", "dev": true, - "dependencies": { - "@tufjs/models": "1.0.4", - "debug": "^4.3.4", - "make-fetch-happen": "^11.1.1" + "requires": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" }, - "engines": { - "node": "*" + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, - "node_modules/typanion": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.13.0.tgz", - "integrity": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==", + "@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", "dev": true }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" } }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" } }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "dev": true, - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "@babel/plugin-proposal-class-static-block": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", + "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" } }, - "node_modules/typed-assert": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", - "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", - "dev": true - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "node_modules/typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "@babel/plugin-proposal-decorators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", + "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/plugin-syntax-decorators": "^7.22.5" }, - "engines": { - "node": ">=12.20" + "dependencies": { + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", "dev": true, - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" } }, - "node_modules/unicode-emoji-modifier-base": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", - "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", "dev": true, - "peer": true, - "engines": { - "node": ">=4" + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "dev": true, - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" } }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" } }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" } }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" } }, - "node_modules/union": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", - "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", "dev": true, - "dependencies": { - "qs": "^6.4.0" - }, - "engines": { - "node": ">= 0.8.0" + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, - "node_modules/unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", "dev": true, - "dependencies": { - "unique-slug": "^4.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, - "node_modules/unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }, - "node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", "dev": true, - "peer": true, - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, - "node_modules/universal-user-agent": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", - "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "peer": true + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, - "engines": { - "node": ">= 10.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" } }, - "node_modules/unix-crypt-td-js": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", - "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", - "dev": true - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "engines": { - "node": ">= 0.8" + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" } }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "@babel/plugin-syntax-decorators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", + "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, - "dependencies": { - "punycode": "^2.1.0" + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" } }, - "node_modules/url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", "dev": true, - "engines": { - "node": ">= 0.4.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, - "bin": { - "uuid": "dist/bin/uuid" + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" } }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } }, - "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, - "engines": { - "node": ">=10.12.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" } }, - "node_modules/validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "dependencies": { - "builtins": "^5.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" } }, - "node_modules/validator": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", - "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "engines": { - "node": ">= 0.10" + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" } }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "engines": { - "node": ">= 0.8" + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" } }, - "node_modules/verdaccio": { - "version": "5.25.0", - "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.25.0.tgz", - "integrity": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==", + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/local-storage": "10.3.3", - "@verdaccio/logger-7": "6.0.0-6-next.16", - "@verdaccio/middleware": "6.0.0-6-next.50", - "@verdaccio/search": "6.0.0-6-next.2", - "@verdaccio/signature": "6.0.0-6-next.2", - "@verdaccio/streams": "10.2.1", - "@verdaccio/tarball": "11.0.0-6-next.40", - "@verdaccio/ui-theme": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "async": "3.2.4", - "body-parser": "1.20.2", - "clipanion": "3.2.0", - "compression": "1.7.4", - "cookies": "0.8.0", - "cors": "2.8.5", - "debug": "^4.3.4", - "envinfo": "7.8.1", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "fast-safe-stringify": "2.1.1", - "handlebars": "4.7.7", - "js-yaml": "4.1.0", - "JSONStream": "1.3.5", - "jsonwebtoken": "9.0.0", - "kleur": "4.1.5", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "3.0.0", - "mkdirp": "1.0.4", - "mv": "2.1.1", - "pkginfo": "0.4.1", - "request": "2.88.2", - "semver": "7.5.1", - "validator": "13.9.0", - "verdaccio-audit": "11.0.0-6-next.34", - "verdaccio-htpasswd": "11.0.0-6-next.41" - }, - "bin": { - "verdaccio": "bin/verdaccio" - }, - "engines": { - "node": ">=12.18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" } }, - "node_modules/verdaccio-audit": { - "version": "11.0.0-6-next.34", - "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-11.0.0-6-next.34.tgz", - "integrity": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==", + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "express": "4.18.2", - "https-proxy-agent": "5.0.1", - "node-fetch": "cjs" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" } }, - "node_modules/verdaccio-htpasswd": { - "version": "11.0.0-6-next.41", - "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-11.0.0-6-next.41.tgz", - "integrity": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==", + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, - "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/file-locking": "11.0.0-6-next.7", - "apache-md5": "1.1.8", - "bcryptjs": "2.4.3", - "core-js": "3.30.2", - "debug": "4.3.4", - "http-errors": "2.0.0", - "unix-crypt-td-js": "1.1.4" - }, - "engines": { - "node": ">=14", - "npm": ">=6" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" } }, - "node_modules/verdaccio-htpasswd/node_modules/@verdaccio/file-locking": { - "version": "11.0.0-6-next.7", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-11.0.0-6-next.7.tgz", - "integrity": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==", + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, - "dependencies": { - "lockfile": "1.0.4" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/verdaccio" + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" } }, - "node_modules/verdaccio/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/verdaccio/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/verdaccio/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", "dev": true, - "engines": { - "node": ">=6" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/verdaccio/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", "dev": true, - "engines": { - "node": ">=12" + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" } }, - "node_modules/verdaccio/node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/verdaccio/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "@babel/plugin-transform-block-scoping": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", + "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/verdaccio/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "@babel/plugin-transform-classes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", + "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "globals": "^11.1.0" }, - "engines": { - "node": ">=10" + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/verdaccio/node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" }, - "engines": { - "node": ">=10" + "dependencies": { + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/verdaccio/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "@babel/plugin-transform-destructuring": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", + "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true + "@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } }, - "node_modules/version-guard": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", - "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", + "@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", "dev": true, - "engines": { - "node": ">=0.10.48" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", "dev": true, - "dependencies": { - "esbuild": "^0.17.5", - "postcss": "^8.4.23", - "rollup": "^3.21.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", "dev": true, - "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", "dev": true, - "dependencies": { - "makeerror": "1.0.12" + "requires": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", "dev": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", "dev": true, - "dependencies": { - "minimalistic-assert": "^1.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", "dev": true, - "dependencies": { - "defaults": "^1.0.3" + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", "dev": true, - "engines": { - "node": ">=12" + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" } }, - "node_modules/webpack": { - "version": "5.80.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", - "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", + "@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "requires": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" } }, - "node_modules/webpack-dev-middleware": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz", - "integrity": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==", + "@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", "dev": true, - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.12", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server": { - "version": "4.13.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz", - "integrity": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==", - "dev": true, - "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "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-dev-middleware": "^5.3.1", - "ws": "^8.13.0" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", "dev": true, - "engines": { - "node": ">= 10" + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", "dev": true, - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" } }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", - "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", + "@babel/plugin-transform-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", + "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", "dev": true, - "engines": { - "node": ">=6" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", "dev": true, - "engines": { - "node": ">=10.13.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack-subresource-integrity": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", - "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", + "@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", "dev": true, - "dependencies": { - "typed-assert": "^1.0.8" - }, - "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", - "webpack": "^5.12.0" - }, - "peerDependenciesMeta": { - "html-webpack-plugin": { - "optional": true - } + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "@babel/plugin-transform-regenerator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", + "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.1" } }, - "node_modules/webpack/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "@babel/plugin-transform-runtime": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", + "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "requires": { + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-plugin-utils": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "semver": "^6.3.0" }, - "engines": { - "node": ">=8.0.0" + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", "dev": true, - "engines": { - "node": ">=4.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/webpack/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", "dev": true, - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, - "engines": { - "node": ">=0.8.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", "dev": true, - "engines": { - "node": ">=0.8.0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", "dev": true, - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "@babel/plugin-transform-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", + "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" }, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "@babel/plugin-transform-unicode-escapes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", + "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", "dev": true, - "engines": { - "node": ">=12" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "@babel/preset-env": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", + "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "requires": { + "@babel/compat-data": "^7.21.4", + "@babel/helper-compilation-targets": "^7.21.4", + "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", + "@babel/plugin-proposal-async-generator-functions": "^7.20.7", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.21.0", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.21.0", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.21.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.20.7", + "@babel/plugin-transform-async-to-generator": "^7.20.7", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.21.0", + "@babel/plugin-transform-classes": "^7.21.0", + "@babel/plugin-transform-computed-properties": "^7.20.7", + "@babel/plugin-transform-destructuring": "^7.21.3", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.21.0", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.20.11", + "@babel/plugin-transform-modules-commonjs": "^7.21.2", + "@babel/plugin-transform-modules-systemjs": "^7.20.11", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.21.3", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.20.5", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.21.4", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" }, - "engines": { - "node": ">= 8" + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" } }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "@babel/preset-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", + "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-typescript": "^7.22.5" } }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", + "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "regenerator-runtime": "^0.13.11" } }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + } } }, - "node_modules/wildcard": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", - "dev": true + "@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + } }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } + "optional": true }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" + "requires": { + "@jridgewell/trace-mapping": "0.3.9" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + } } }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "@cypress/request": { + "version": "2.88.11", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", + "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "http-signature": "~1.3.6", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "performance-now": "^2.1.0", + "qs": "~6.10.3", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^8.3.2" } }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@cypress/xvfb": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", + "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" + "requires": { + "debug": "^3.1.0", + "lodash.once": "^4.1.1" }, - "engines": { - "node": ">=7.0.0" + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "dev": true }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "@esbuild/android-arm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", + "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "optional": true }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@esbuild/android-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", + "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "optional": true }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "@esbuild/android-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", + "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", + "dev": true, + "optional": true }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "@esbuild/darwin-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", + "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } + "optional": true }, - "node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "@esbuild/darwin-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", + "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } + "optional": true }, - "node_modules/xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "@esbuild/freebsd-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", + "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", "dev": true, - "engines": { - "node": ">=8" - } + "optional": true }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "@esbuild/freebsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", + "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", "dev": true, - "engines": { - "node": ">=12" - } + "optional": true }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true + "@esbuild/linux-arm": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", + "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", + "dev": true, + "optional": true }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "@esbuild/linux-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", + "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", "dev": true, - "engines": { - "node": ">=0.4" - } + "optional": true }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "@esbuild/linux-ia32": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", + "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", "dev": true, - "engines": { - "node": ">=10" - } + "optional": true }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true + "@esbuild/linux-loong64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", + "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", + "dev": true, + "optional": true }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "@esbuild/linux-mips64el": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", + "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", "dev": true, - "engines": { - "node": ">= 6" - } + "optional": true }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "@esbuild/linux-ppc64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", + "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } + "optional": true }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "@esbuild/linux-riscv64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", + "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", "dev": true, - "engines": { - "node": ">=12" - } + "optional": true }, - "node_modules/yargs/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "@esbuild/linux-s390x": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", + "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } + "optional": true }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "@esbuild/linux-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", + "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", "dev": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } + "optional": true }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "@esbuild/netbsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", + "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", "dev": true, - "engines": { - "node": ">=6" - } + "optional": true }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "@esbuild/openbsd-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", + "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "optional": true }, - "node_modules/yup": { - "version": "0.32.11", - "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", - "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", + "@esbuild/sunos-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", + "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", "dev": true, - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/lodash": "^4.14.175", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "nanoclone": "^0.2.1", - "property-expr": "^2.0.4", - "toposort": "^2.0.2" - }, - "engines": { - "node": ">=10" - } + "optional": true }, - "node_modules/zone.js": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.13.1.tgz", - "integrity": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==", - "dependencies": { - "tslib": "^2.3.0" - } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true + "@esbuild/win32-arm64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", + "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", + "dev": true, + "optional": true }, - "@adobe/css-tools": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", - "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", - "dev": true + "@esbuild/win32-ia32": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", + "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", + "dev": true, + "optional": true }, - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "@esbuild/win32-x64": { + "version": "0.17.18", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", + "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } + "optional": true }, - "@angular-devkit/architect": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.6.tgz", - "integrity": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==", + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, "requires": { - "@angular-devkit/core": "16.0.6", - "rxjs": "7.8.1" + "eslint-visitor-keys": "^3.3.0" } }, - "@angular-devkit/build-angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.0.6.tgz", - "integrity": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==", + "@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", "dev": true, "requires": { - "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/build-webpack": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@babel/core": "7.21.4", - "@babel/generator": "7.21.4", - "@babel/helper-annotate-as-pure": "7.18.6", - "@babel/helper-split-export-declaration": "7.18.6", - "@babel/plugin-proposal-async-generator-functions": "7.20.7", - "@babel/plugin-transform-async-to-generator": "7.20.7", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.4", - "@babel/runtime": "7.21.0", - "@babel/template": "7.20.7", - "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "16.0.6", - "@vitejs/plugin-basic-ssl": "1.0.1", - "ansi-colors": "4.1.3", - "autoprefixer": "10.4.14", - "babel-loader": "9.1.2", - "babel-plugin-istanbul": "6.1.1", - "browserslist": "4.21.5", - "cacache": "17.0.6", - "chokidar": "3.5.3", - "copy-webpack-plugin": "11.0.0", - "critters": "0.0.16", - "css-loader": "6.7.3", - "esbuild": "0.17.18", - "esbuild-wasm": "0.17.18", - "glob": "8.1.0", - "https-proxy-agent": "5.0.1", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "karma-source-map-support": "1.4.0", - "less": "4.1.3", - "less-loader": "11.1.0", - "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.1", - "magic-string": "0.30.0", - "mini-css-extract-plugin": "2.7.5", - "mrmime": "1.0.1", - "open": "8.4.2", - "ora": "5.4.1", - "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "2.3.1", - "piscina": "3.2.0", - "postcss": "8.4.23", - "postcss-loader": "7.2.4", - "resolve-url-loader": "5.0.0", - "rxjs": "7.8.1", - "sass": "1.62.1", - "sass-loader": "13.2.2", - "semver": "7.4.0", - "source-map-loader": "4.0.1", - "source-map-support": "0.5.21", - "terser": "5.17.1", - "text-table": "0.2.0", - "tree-kill": "1.2.2", - "tslib": "2.5.0", - "vite": "4.3.9", - "webpack": "5.80.0", - "webpack-dev-middleware": "6.0.2", - "webpack-dev-server": "4.13.2", - "webpack-merge": "5.8.0", - "webpack-subresource-integrity": "5.1.0" + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "type-fest": "^0.20.2" } }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "requires": { - "color-name": "~1.1.4" + "argparse": "^2.0.1" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "brace-expansion": "^1.1.7" } }, - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true } } }, - "@angular-devkit/build-webpack": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1600.6.tgz", - "integrity": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==", + "@eslint/js": { + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", + "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", + "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", "dev": true, "requires": { - "@angular-devkit/architect": "0.1600.6", - "rxjs": "7.8.1" + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" } }, - "@angular-devkit/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", - "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, "requires": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } } }, - "@angular-devkit/schematics": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", - "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "requires": { - "@angular-devkit/core": "16.0.6", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" } }, - "@angular-eslint/bundled-angular-compiler": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz", - "integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==", + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true }, - "@angular-eslint/eslint-plugin": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz", - "integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==", + "@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", "dev": true, "requires": { - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/utils": "5.59.7" + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" } }, - "@angular-eslint/eslint-plugin-template": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz", - "integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==", + "@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", "dev": true, "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/type-utils": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "aria-query": "5.1.3", - "axobject-query": "3.1.1" + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" } }, - "@angular-eslint/template-parser": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz", - "integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==", + "@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", "dev": true, "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "eslint-scope": "^7.0.0" + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" } }, - "@angular-eslint/utils": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-16.0.3.tgz", - "integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==", + "@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", "dev": true, "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@typescript-eslint/utils": "5.59.7" + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" } }, - "@angular/animations": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.6.tgz", - "integrity": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==", + "@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "jest-get-type": "^29.4.3" } }, - "@angular/cdk": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.1.3.tgz", - "integrity": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==", + "@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, "requires": { - "parse5": "^7.1.2", - "tslib": "^2.3.0" + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" } }, - "@angular/cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.0.6.tgz", - "integrity": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==", + "@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", "dev": true, "requires": { - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "@schematics/angular": "16.0.6", - "@yarnpkg/lockfile": "1.1.0", - "ansi-colors": "4.1.3", - "ini": "4.0.0", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "npm-package-arg": "10.1.0", - "npm-pick-manifest": "8.0.1", - "open": "8.4.2", - "ora": "5.4.1", - "pacote": "15.1.3", - "resolve": "1.22.2", - "semver": "7.4.0", - "symbol-observable": "4.0.0", - "yargs": "17.7.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + } + }, + "@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "brace-expansion": "^1.1.7" } } } }, - "@angular/common": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", - "integrity": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==", + "@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "@sinclair/typebox": "^0.25.16" } }, - "@angular/compiler": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.0.6.tgz", - "integrity": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==", + "@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" } }, - "@angular/compiler-cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.0.6.tgz", - "integrity": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==", + "@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", "dev": true, "requires": { - "@babel/core": "7.21.8", - "@jridgewell/sourcemap-codec": "^1.4.14", - "chokidar": "^3.0.0", - "convert-source-map": "^1.5.1", - "reflect-metadata": "^0.1.2", - "semver": "^7.0.0", - "tslib": "^2.3.0", - "yargs": "^17.2.1" - }, - "dependencies": { - "@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - } + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" } }, - "@angular/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.6.tgz", - "integrity": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==", + "@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" } }, - "@angular/forms": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.6.tgz", - "integrity": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==", + "@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "dependencies": { + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + } } }, - "@angular/language-service": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-16.0.6.tgz", - "integrity": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==", - "dev": true - }, - "@angular/platform-browser": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.6.tgz", - "integrity": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==", + "@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" } }, - "@angular/platform-browser-dynamic": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.6.tgz", - "integrity": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==", + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, "requires": { - "tslib": "^2.3.0" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "@angular/router": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-16.0.6.tgz", - "integrity": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==", - "requires": { - "tslib": "^2.3.0" - } + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true }, - "@assemblyscript/loader": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", - "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true }, - "@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "@jridgewell/source-map": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.4.tgz", + "integrity": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dev": true, "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" }, "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } } } }, - "@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", "dev": true }, - "@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "@mole-inc/bin-wrapper": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@mole-inc/bin-wrapper/-/bin-wrapper-8.0.1.tgz", + "integrity": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==", "dev": true, "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "bin-check": "^4.1.0", + "bin-version-check": "^5.0.0", + "content-disposition": "^0.5.4", + "ext-name": "^5.0.0", + "file-type": "^17.1.6", + "filenamify": "^5.0.2", + "got": "^11.8.5", + "os-filter-obj": "^2.0.0" } }, - "@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", - "dev": true, + "@ngrx/store": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-16.0.1.tgz", + "integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==", "requires": { - "@babel/types": "^7.21.4", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "tslib": "^2.0.0" } }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "@ngtools/webpack": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.0.6.tgz", + "integrity": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==", "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } + "requires": {} }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { - "@babel/types": "^7.22.5" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" } }, - "@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" } }, - "@babel/helper-create-class-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", - "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "@npmcli/fs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "semver": "^6.3.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "semver": "^7.3.5" } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", - "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", - "dev": true - }, - "@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", - "dev": true - }, - "@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", - "dev": true - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" - } - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", - "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", - "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/plugin-syntax-decorators": "^7.22.5" - }, - "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "dev": true, - "requires": { - "@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/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", - "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", - "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", - "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", - "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" - } - }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", - "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", - "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", - "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/preset-env": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", - "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", - "@babel/plugin-proposal-async-generator-functions": "^7.20.7", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.21.0", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.21.0", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.21.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.20.7", - "@babel/plugin-transform-async-to-generator": "^7.20.7", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.21.0", - "@babel/plugin-transform-classes": "^7.21.0", - "@babel/plugin-transform-computed-properties": "^7.20.7", - "@babel/plugin-transform-destructuring": "^7.21.3", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.21.0", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.20.11", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", - "@babel/plugin-transform-modules-systemjs": "^7.20.11", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.21.3", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.20.5", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.20.7", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.21.4", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", - "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-typescript": "^7.22.5" - } - }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, - "@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - } - }, - "@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "optional": true - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@cypress/request": { - "version": "2.88.11", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", - "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "http-signature": "~1.3.6", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "performance-now": "^2.1.0", - "qs": "~6.10.3", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^8.3.2" - } - }, - "@cypress/xvfb": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", - "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", - "dev": true, - "requires": { - "debug": "^3.1.0", - "lodash.once": "^4.1.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true - }, - "@esbuild/android-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", - "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", - "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", - "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", - "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", - "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", - "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", - "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", - "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", - "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", - "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", - "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", - "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", - "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", - "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", - "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", - "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", - "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", - "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", - "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", - "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", - "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", - "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", - "dev": true, - "optional": true - }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "@eslint/js": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", - "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true - }, - "@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", - "dev": true, - "requires": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0" - } - }, - "@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", - "dev": true, - "requires": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" - } - }, - "@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", - "dev": true, - "requires": { - "jest-get-type": "^29.4.3" - } - }, - "@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" - } - }, - "@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.25.16" - } - }, - "@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - } - }, - "@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", - "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "slash": "^3.0.0" - } - }, - "@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true - }, - "@jridgewell/source-map": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.4.tgz", - "integrity": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, - "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - } - } - }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", - "dev": true - }, - "@mole-inc/bin-wrapper": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@mole-inc/bin-wrapper/-/bin-wrapper-8.0.1.tgz", - "integrity": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==", - "dev": true, - "requires": { - "bin-check": "^4.1.0", - "bin-version-check": "^5.0.0", - "content-disposition": "^0.5.4", - "ext-name": "^5.0.0", - "file-type": "^17.1.6", - "filenamify": "^5.0.2", - "got": "^11.8.5", - "os-filter-obj": "^2.0.0" - } - }, - "@ngrx/store": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-16.0.1.tgz", - "integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==", - "requires": { - "tslib": "^2.0.0" - } - }, - "@ngtools/webpack": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.0.6.tgz", - "integrity": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==", - "dev": true, - "requires": {} - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", - "dev": true, - "requires": { - "semver": "^7.3.5" - } - }, - "@npmcli/git": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", - "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", - "dev": true, - "requires": { - "@npmcli/promise-spawn": "^6.0.0", - "lru-cache": "^7.4.4", - "npm-pick-manifest": "^8.0.0", - "proc-log": "^3.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^3.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", - "dev": true, - "requires": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - } - }, - "@npmcli/node-gyp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", - "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", - "dev": true - }, - "@npmcli/promise-spawn": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", - "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", - "dev": true, - "requires": { - "which": "^3.0.0" - }, - "dependencies": { - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@npmcli/run-script": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", - "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", - "dev": true, - "requires": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^6.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^3.0.0" - }, - "dependencies": { - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@nrwl/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==", - "dev": true, - "requires": { - "@nx/angular": "16.4.2", - "tslib": "^2.3.0" - } - }, - "@nrwl/cypress": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.3.2.tgz", - "integrity": "sha512-f1RWC4jFe0KNDKRs8FY8gn2ik0+DOGsw/HG2oz5Ck/sT1yPwexLZ/+I854UuKs2Gtw5/B/l/7hcis+/MsgXe2Q==", - "dev": true, - "requires": { - "@nx/cypress": "16.3.2" - } - }, - "@nrwl/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==", - "dev": true, - "requires": { - "@nx/devkit": "16.4.2" - } - }, - "@nrwl/eslint-plugin-nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.1.1.tgz", - "integrity": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==", - "dev": true, - "requires": { - "@nx/eslint-plugin": "16.1.1" - } - }, - "@nrwl/jest": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.3.2.tgz", - "integrity": "sha512-vhwrgjIn1XG3zDSlc6CSfCKBtgDEYQUWG69MdfaqrNInmmsiPkspv7eM99Xh8MGN5HMC2Epzy2todD3J2zZZuQ==", - "dev": true, - "requires": { - "@nx/jest": "16.3.2" - } - }, - "@nrwl/js": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.3.2.tgz", - "integrity": "sha512-UMmdA4vXy2/VWNMlpBDruT9XwGmLw/MpUaKoN2KLkai/fYN6MvB3mabc9WQ8qsNvDWshmOJ6TqAHReR25BjugQ==", - "dev": true, - "requires": { - "@nx/js": "16.3.2" - } - }, - "@nrwl/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==", - "dev": true, - "requires": { - "@nx/linter": "16.1.1" - } - }, - "@nrwl/nx-plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-16.4.2.tgz", - "integrity": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==", - "dev": true, - "requires": { - "@nx/plugin": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.1.1.tgz", - "integrity": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==", - "dev": true, - "requires": { - "nx": "16.1.1" - } - }, - "@nrwl/web": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.3.2.tgz", - "integrity": "sha512-UJotencL5g+jyozfVPLevbzWoR10Mx/AURzGNzzGmddLbmXJlsHwnnKHtzGzc+QFG10jYMzk1WZSyBo/ZPrN+Q==", - "dev": true, - "requires": { - "@nx/web": "16.3.2" - } - }, - "@nrwl/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==", - "dev": true, - "requires": { - "@nx/webpack": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==", - "dev": true, - "requires": { - "@nx/workspace": "16.1.1" - } - }, - "@nx/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==", - "dev": true, - "requires": { - "@nrwl/angular": "16.4.2", - "@nx/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@nx/webpack": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "@typescript-eslint/type-utils": "^5.36.1", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "enquirer": "^2.3.6", - "http-server": "^14.1.0", - "ignore": "^5.0.4", - "magic-string": "~0.26.2", - "minimatch": "3.0.5", - "semver": "7.5.3", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", - "tslib": "^2.3.0", - "webpack": "^5.80.0", - "webpack-merge": "5.7.3" - }, - "dependencies": { - "@nrwl/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", - "dev": true, - "requires": { - "@nx/cypress": "16.4.2" - } - }, - "@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "requires": { - "@nx/jest": "16.4.2" - } - }, - "@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "requires": { - "@nx/js": "16.4.2" - } - }, - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "requires": { - "@nx/linter": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "requires": { - "nx": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "requires": { - "@nx/workspace": "16.4.2" - } - }, - "@nx/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", - "dev": true, - "requires": { - "@nrwl/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.5.3" - } - }, - "@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", - "dev": true, - "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - } - }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "dev": true, - "optional": true - }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "magic-string": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", - "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", - "dev": true, - "requires": { - "sourcemap-codec": "^1.4.8" - } - }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "webpack-merge": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", - "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/cypress": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.3.2.tgz", - "integrity": "sha512-XB4CvhTv154GHp/2+lSoCigPKZK1YoRyIZWIHJdBmpQUocLJkSqp+H8KQaU/0gH3Xbz5NxGXbQMFDWzkKxIGPg==", - "dev": true, - "requires": { - "@nrwl/cypress": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@nx/linter": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.3.4" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "requires": { - "@nx/devkit": "16.3.2" - } - }, - "@nrwl/linter": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.3.2.tgz", - "integrity": "sha512-sUDQNlmRIGQnhdDmpQkJgpF9LZWKBoqXr2g9Y4yq0QlpTamxTbx8/GxMICotA52kayEx1cKbU1xvjJWPchSrlw==", - "dev": true, - "requires": { - "@nx/linter": "16.3.2" - } - }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/linter": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.3.2.tgz", - "integrity": "sha512-hVCU6ZIMd+yTMLrC3PbjaHuD3yU+sB/lABTaWuUx2klT0cqKhiTp0KnDLcFWtzQmnNtGEaUjfPKxvA92xon0CA==", - "dev": true, - "requires": { - "@nrwl/linter": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.4.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/eslint-plugin": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-16.1.1.tgz", - "integrity": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==", - "dev": true, - "requires": { - "@nrwl/eslint-plugin-nx": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@typescript-eslint/type-utils": "^5.58.0", - "@typescript-eslint/utils": "^5.58.0", - "chalk": "^4.1.0", - "confusing-browser-globals": "^1.0.9", - "semver": "7.3.4" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "requires": { - "@nx/js": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/jest": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.3.2.tgz", - "integrity": "sha512-aO8Rc+wwSXLh1jJYd2cxOT5R9BQfqjAXWZOPcvAQQonFNNfwMHrw0+YsqjWgiFtFrxzSX5RrhzVG44cOWpAdqQ==", - "dev": true, - "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", - "dev": true, - "requires": { - "@nx/devkit": "16.3.2" - } - }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + }, + "@npmcli/git": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", + "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", + "dev": true, + "requires": { + "@npmcli/promise-spawn": "^6.0.0", + "lru-cache": "^7.4.4", + "npm-pick-manifest": "^8.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^3.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, "requires": { - "yallist": "^4.0.0" + "isexe": "^2.0.0" } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + } + } + }, + "@npmcli/installed-package-contents": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", + "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "dev": true, + "requires": { + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + } + }, + "@npmcli/node-gyp": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", + "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", + "dev": true + }, + "@npmcli/promise-spawn": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", + "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", + "dev": true, + "requires": { + "which": "^3.0.0" + }, + "dependencies": { + "which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "isexe": "^2.0.0" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + } + } + }, + "@npmcli/run-script": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", + "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", + "dev": true, + "requires": { + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^6.0.0", + "node-gyp": "^9.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^3.0.0" + }, + "dependencies": { + "which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "isexe": "^2.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "@nx/js": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.3.2.tgz", - "integrity": "sha512-bumLGMduNm221Sh3/wkEMEkJOC1kTlqmpx6wamDSsPlAFq0ePgoaNJjoYqC9XH7n7wXtgy9bgKhHJPnek8NKow==", + "@nrwl/angular": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-16.4.2.tgz", + "integrity": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==", "dev": true, "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/workspace": "16.3.2", + "@nx/angular": "16.4.2", + "tslib": "^2.3.0" + } + }, + "@nrwl/cypress": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", + "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", + "dev": true, + "requires": { + "@nx/cypress": "16.4.2" + } + }, + "@nrwl/devkit": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.4.2.tgz", + "integrity": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==", + "dev": true, + "requires": { + "@nx/devkit": "16.4.2" + } + }, + "@nrwl/eslint-plugin-nx": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.1.1.tgz", + "integrity": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==", + "dev": true, + "requires": { + "@nx/eslint-plugin": "16.1.1" + } + }, + "@nrwl/jest": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", + "dev": true, + "requires": { + "@nx/jest": "16.4.2" + } + }, + "@nrwl/js": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", + "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", + "dev": true, + "requires": { + "@nx/js": "16.4.2" + } + }, + "@nrwl/linter": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.1.1.tgz", + "integrity": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==", + "dev": true, + "requires": { + "@nx/linter": "16.1.1" + } + }, + "@nrwl/nx-plugin": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-16.4.2.tgz", + "integrity": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==", + "dev": true, + "requires": { + "@nx/plugin": "16.4.2" + } + }, + "@nrwl/tao": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.1.1.tgz", + "integrity": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==", + "dev": true, + "requires": { + "nx": "16.1.1" + } + }, + "@nrwl/web": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.4.2.tgz", + "integrity": "sha512-WgD6G+Cl54/RywzYTnphQCQuNdDrGGdivcyd3AZey9yA1Avvi/CI5+mU75pQAMrqsb2oxylZVk6lnN5iLJcAwA==", + "dev": true, + "requires": { + "@nx/web": "16.4.2" + } + }, + "@nrwl/webpack": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-16.4.2.tgz", + "integrity": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==", + "dev": true, + "requires": { + "@nx/webpack": "16.4.2" + } + }, + "@nrwl/workspace": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.1.1.tgz", + "integrity": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==", + "dev": true, + "requires": { + "@nx/workspace": "16.1.1" + } + }, + "@nx/angular": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-16.4.2.tgz", + "integrity": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==", + "dev": true, + "requires": { + "@nrwl/angular": "16.4.2", + "@nx/cypress": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/jest": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", + "@nx/webpack": "16.4.2", + "@nx/workspace": "16.4.2", "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", + "@typescript-eslint/type-utils": "^5.36.1", "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", + "chokidar": "^3.5.1", + "enquirer": "^2.3.6", + "http-server": "^14.1.0", "ignore": "^5.0.4", - "js-tokens": "^4.0.0", + "magic-string": "~0.26.2", "minimatch": "3.0.5", - "semver": "7.3.4", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" + "semver": "7.5.3", + "ts-node": "10.9.1", + "tsconfig-paths": "^4.1.2", + "tslib": "^2.3.0", + "webpack": "^5.80.0", + "webpack-merge": "5.7.3" }, "dependencies": { - "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "@nrwl/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", "dev": true, "requires": { - "@nx/devkit": "16.3.2" + "@nx/linter": "16.4.2" } }, "@nrwl/tao": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.3.2.tgz", - "integrity": "sha512-2Kg7dtv6JcQagCZPSq+okceI81NqmXGGgbKWqS7sOfdmp1otxS9uiUFNXw+Pdtnw38mdRviMtSOXScntu4sUKg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", + "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", "dev": true, "requires": { - "nx": "16.3.2" + "nx": "16.4.2" } }, "@nrwl/workspace": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.3.2.tgz", - "integrity": "sha512-ORVzEEJIMOFYEOtOQHLU7N4vT4mYZ/JzKiwHZrHkCaVhgkiGBLoX3tOwVZjafKaa/24cGISv0J7WRtnfRKl2cA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", "dev": true, "requires": { - "@nx/workspace": "16.3.2" + "@nx/workspace": "16.4.2" } }, - "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "@nx/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", "dev": true, "requires": { - "@nrwl/devkit": "16.3.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", + "@nrwl/linter": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", "tmp": "~0.2.1", "tslib": "^2.3.0" } }, "@nx/nx-darwin-arm64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.3.2.tgz", - "integrity": "sha512-YfYVNfsJBzBcBnJUU4AcA6A4QMkgnVlETfp4KGL36Otq542mRY1ISGHdox63ocI5AKh5gay5AaGcR4wR9PU9Vg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", + "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", "dev": true, "optional": true }, "@nx/nx-darwin-x64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.3.2.tgz", - "integrity": "sha512-bJtpozz0zSRVRrcQ76GrlT3TWEGTymLYWrVG51bH5KZ46t6/a4EQBI3uL3vubMmOZ0jR4ywybOcPBBhxmBJ68w==", - "dev": true, - "optional": true - }, - "@nx/nx-freebsd-x64": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.3.2.tgz", - "integrity": "sha512-ZvufI0bWqT67nLbBo6ejrIGxypdoedRQTP/tudWbs/4isvxLe1uVku1BfKCTQUsJG367SqNOU1H5kzI/MRr3ow==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", + "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", "dev": true, "optional": true }, "@nx/nx-linux-arm-gnueabihf": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.3.2.tgz", - "integrity": "sha512-IQL4kxdiZLvifar7+SIum3glRuVsxtE0dL8RvteSDXrxDQnaTUrjILC+VGhalRmk7ngBbGKNrhWOeeL7390CzQ==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", + "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", "dev": true, "optional": true }, "@nx/nx-linux-arm64-gnu": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.3.2.tgz", - "integrity": "sha512-f6AWgPVu3mfUEoOBa0rY2/7QY0Or9eR0KtLFpcPh7RUpxPw2EXzIbjD/0RGipdpspSrgiMKbZpsUjo6mXBFsQA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", + "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", "dev": true, "optional": true }, "@nx/nx-linux-arm64-musl": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.3.2.tgz", - "integrity": "sha512-AvrWcYz7021E3b5P9/0i26p60XMZfw86Epks51L6AhlflarlOH4AcEChc7APMtb1ELAIbDWx2S6oIDRbQ7rtVA==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", + "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", "dev": true, "optional": true }, "@nx/nx-linux-x64-gnu": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.3.2.tgz", - "integrity": "sha512-K2pWGAcbCNm6b7UZI9cc8z4Rb540QcuepBXD7akjPjWerzXriT6VCn4i9mVKsCg2mwSfknTJJVJ1PZwJSmTl/Q==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", + "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", "dev": true, "optional": true }, "@nx/nx-linux-x64-musl": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.3.2.tgz", - "integrity": "sha512-sY1QDuQlqyYiRPJZanrtV07tU0DOXiCrWb0pDsGiO0qHuUSmW5Vw17GWEY4z3rt0/5U8fJ+/9WQrneviOmsOKg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", + "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", "dev": true, "optional": true }, "@nx/nx-win32-arm64-msvc": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.3.2.tgz", - "integrity": "sha512-wBfohT2hjrLKn9WFHvG0MFVk7uYhgYNiptnTLdTouziHgFyZ08vyl7XYBq55BwHPMQ5iswVoEfjn/5ZBfCPscg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", + "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", "dev": true, "optional": true }, "@nx/nx-win32-x64-msvc": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.3.2.tgz", - "integrity": "sha512-QC0sWrfQm0/WdvvM//7UAgm+otbak6bznZ0zawTeqmLBh1hLjNeweyzSVKQEtZtlzDMKpzCVuuwkJq+VKBLvmw==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", + "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", "dev": true, "optional": true }, "@nx/workspace": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.3.2.tgz", - "integrity": "sha512-gFrJEv3+Jn2leu3RKFTakPHY8okI8hjOg8RO4OWA2ZemFXRyh9oIm/xsCsOyqYlGt06eqV2mD3GUun/05z1nhg==", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", + "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", "dev": true, "requires": { - "@nrwl/workspace": "16.3.2", - "@nx/devkit": "16.3.2", + "@nrwl/workspace": "16.4.2", + "@nx/devkit": "16.4.2", "@parcel/watcher": "2.0.4", "chalk": "^4.1.0", "chokidar": "^3.5.1", @@ -40133,7 +34898,7 @@ "ignore": "^5.0.4", "minimatch": "3.0.5", "npm-run-path": "^4.0.1", - "nx": "16.3.2", + "nx": "16.4.2", "open": "^8.4.0", "rxjs": "^7.8.0", "tmp": "~0.2.1", @@ -40142,13 +34907,14 @@ "yargs-parser": "21.1.1" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "@yarnpkg/parsers": { + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" } }, "argparse": { @@ -40157,31 +34923,6 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -40196,15 +34937,6 @@ "path-is-absolute": "^1.0.0" } }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -40214,26 +34946,35 @@ "yallist": "^4.0.0" } }, + "magic-string": { + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", + "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, "nx": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.3.2.tgz", - "integrity": "sha512-fOzCVL7qoCJAcYTJwvJ9j+PSaL791ro4AICWuLxaphZsp2jcLoav4Ev7ONPks2Wlkt8FS9bee3nqQ3w1ya36Og==", - "dev": true, - "requires": { - "@nrwl/tao": "16.3.2", - "@nx/nx-darwin-arm64": "16.3.2", - "@nx/nx-darwin-x64": "16.3.2", - "@nx/nx-freebsd-x64": "16.3.2", - "@nx/nx-linux-arm-gnueabihf": "16.3.2", - "@nx/nx-linux-arm64-gnu": "16.3.2", - "@nx/nx-linux-arm64-musl": "16.3.2", - "@nx/nx-linux-x64-gnu": "16.3.2", - "@nx/nx-linux-x64-musl": "16.3.2", - "@nx/nx-win32-arm64-msvc": "16.3.2", - "@nx/nx-win32-x64-msvc": "16.3.2", + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", + "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", + "dev": true, + "requires": { + "@nrwl/tao": "16.4.2", + "@nx/nx-darwin-arm64": "16.4.2", + "@nx/nx-darwin-x64": "16.4.2", + "@nx/nx-freebsd-x64": "16.4.2", + "@nx/nx-linux-arm-gnueabihf": "16.4.2", + "@nx/nx-linux-arm64-gnu": "16.4.2", + "@nx/nx-linux-arm64-musl": "16.4.2", + "@nx/nx-linux-x64-gnu": "16.4.2", + "@nx/nx-linux-x64-musl": "16.4.2", + "@nx/nx-win32-arm64-msvc": "16.4.2", + "@nx/nx-win32-x64-msvc": "16.4.2", "@parcel/watcher": "2.0.4", "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", + "@yarnpkg/parsers": "3.0.0-rc.46", "@zkochan/js-yaml": "0.0.6", "axios": "^1.0.0", "chalk": "^4.1.0", @@ -40254,7 +34995,7 @@ "minimatch": "3.0.5", "npm-run-path": "^4.0.1", "open": "^8.4.0", - "semver": "7.3.4", + "semver": "7.5.3", "string-width": "^4.2.3", "strong-log-transformer": "^2.1.0", "tar-stream": "~2.2.0", @@ -40264,40 +35005,141 @@ "v8-compile-cache": "2.3.0", "yargs": "^17.6.2", "yargs-parser": "21.1.1" + }, + "dependencies": { + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } } }, "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "requires": { "lru-cache": "^6.0.0" } }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "webpack-merge": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", + "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + } + } + }, + "@nx/cypress": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", + "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", + "dev": true, + "requires": { + "@nrwl/cypress": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "detect-port": "^1.5.1", + "dotenv": "~10.0.0", + "semver": "7.5.3" + }, + "dependencies": { + "@nrwl/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", + "dev": true, + "requires": { + "@nx/linter": "16.4.2" + } }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "@nx/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", "dev": true, "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "@nrwl/linter": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", + "tslib": "^2.3.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@nx/devkit": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.4.2.tgz", + "integrity": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==", + "dev": true, + "requires": { + "@nrwl/devkit": "16.4.2", + "ejs": "^3.1.7", + "ignore": "^5.0.4", + "semver": "7.5.3", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "lru-cache": "^6.0.0" } }, "yallist": { @@ -40308,18 +35150,20 @@ } } }, - "@nx/linter": { + "@nx/eslint-plugin": { "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==", + "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-16.1.1.tgz", + "integrity": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==", "dev": true, "requires": { - "@nrwl/linter": "16.1.1", + "@nrwl/eslint-plugin-nx": "16.1.1", "@nx/devkit": "16.1.1", "@nx/js": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" + "@typescript-eslint/type-utils": "^5.58.0", + "@typescript-eslint/utils": "^5.58.0", + "chalk": "^4.1.0", + "confusing-browser-globals": "^1.0.9", + "semver": "7.3.4" }, "dependencies": { "@nrwl/devkit": { @@ -40385,40 +35229,6 @@ "tslib": "^2.3.0" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -40453,15 +35263,6 @@ "source-map": "^0.6.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -40470,120 +35271,60 @@ } } }, - "@nx/nx-darwin-arm64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.1.1.tgz", - "integrity": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.1.1.tgz", - "integrity": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==", - "dev": true, - "optional": true - }, - "@nx/nx-freebsd-x64": { + "@nx/jest": { "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.4.2.tgz", - "integrity": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.1.1.tgz", - "integrity": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.1.1.tgz", - "integrity": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.1.1.tgz", - "integrity": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.1.1.tgz", - "integrity": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.1.1.tgz", - "integrity": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.1.1.tgz", - "integrity": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.1.1.tgz", - "integrity": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", + "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", "dev": true, - "optional": true + "requires": { + "@jest/reporters": "^29.4.1", + "@jest/test-result": "^29.4.1", + "@nrwl/jest": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "chalk": "^4.1.0", + "dotenv": "~10.0.0", + "identity-obj-proxy": "3.0.0", + "jest-config": "^29.4.1", + "jest-resolve": "^29.4.1", + "jest-util": "^29.4.1", + "resolve.exports": "1.1.0", + "tslib": "^2.3.0" + } }, - "@nx/plugin": { + "@nx/js": { "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-16.4.2.tgz", - "integrity": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", + "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", "dev": true, "requires": { - "@nrwl/nx-plugin": "16.4.2", + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.4.2", "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", + "@nx/workspace": "16.4.2", "@phenomnomnominal/tsquery": "~5.0.1", - "dotenv": "~10.0.0", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "detect-port": "^1.5.1", + "fast-glob": "3.2.7", "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "semver": "7.5.3", + "source-map-support": "0.5.19", "tslib": "^2.3.0" }, "dependencies": { - "@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "requires": { - "@nx/jest": "16.4.2" - } - }, - "@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "requires": { - "@nx/js": "16.4.2" - } - }, - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "requires": { - "@nx/linter": "16.4.2" - } - }, "@nrwl/tao": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", @@ -40602,74 +35343,6 @@ "@nx/workspace": "16.4.2" } }, - "@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", - "dev": true, - "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - } - }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, "@nx/nx-darwin-arm64": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", @@ -40771,46 +35444,12 @@ "tslib": "^2.4.0" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -40922,15 +35561,6 @@ "source-map": "^0.6.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -40939,39 +35569,45 @@ } } }, - "@nx/web": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.3.2.tgz", - "integrity": "sha512-PzTkawQ+OgjX0mR5KwMGcdveoMNLKo/jYaW3UrPMIVUy0NpalW0ULJnDOUt+NRlrp7jOsUP7hUYZkYPNDI3Ivg==", + "@nx/linter": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.1.1.tgz", + "integrity": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==", "dev": true, "requires": { - "@nrwl/web": "16.3.2", - "@nx/devkit": "16.3.2", - "@nx/js": "16.3.2", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "detect-port": "^1.5.1", - "http-server": "^14.1.0", - "ignore": "^5.0.4", + "@nrwl/linter": "16.1.1", + "@nx/devkit": "16.1.1", + "@nx/js": "16.1.1", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", "tslib": "^2.3.0" }, "dependencies": { "@nrwl/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-EiDwVIvh6AcClXv22Q7auQh7Iy/ONISEFWzTswy/J6ZmVGCQesbiwg4cGV0MKiScr+awdVzqyNey+wD6IR5Lkw==", + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", + "dev": true, + "requires": { + "@nx/devkit": "16.1.1" + } + }, + "@nrwl/js": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", + "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", "dev": true, "requires": { - "@nx/devkit": "16.3.2" + "@nx/js": "16.1.1" } }, "@nx/devkit": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.3.2.tgz", - "integrity": "sha512-1ev3EDm2Sx/ibziZroL1SheqxDR7UgC49tkBgJz1GrQLQnfdhBYroCPSyBSWGPMLHjIuHb3+hyGSV1Bz+BIYOA==", + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", + "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", "dev": true, "requires": { - "@nrwl/devkit": "16.3.2", + "@nrwl/devkit": "16.1.1", "ejs": "^3.1.7", "ignore": "^5.0.4", "semver": "7.3.4", @@ -40979,40 +35615,37 @@ "tslib": "^2.3.0" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "@nx/js": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", + "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", "dev": true, "requires": { - "color-name": "~1.1.4" + "@babel/core": "^7.15.0", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-decorators": "^7.14.5", + "@babel/plugin-transform-runtime": "^7.15.0", + "@babel/preset-env": "^7.15.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.14.8", + "@nrwl/js": "16.1.1", + "@nx/devkit": "16.1.1", + "@nx/workspace": "16.1.1", + "@phenomnomnominal/tsquery": "~5.0.1", + "babel-plugin-const-enum": "^1.0.1", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-transform-typescript-metadata": "^0.3.1", + "chalk": "^4.1.0", + "fast-glob": "3.2.7", + "fs-extra": "^11.1.0", + "ignore": "^5.0.4", + "js-tokens": "^4.0.0", + "minimatch": "3.0.5", + "source-map-support": "0.5.19", + "tree-kill": "1.2.2", + "tslib": "^2.3.0" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -41031,13 +35664,20 @@ "lru-cache": "^6.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, "yallist": { @@ -41048,6 +35688,135 @@ } } }, + "@nx/nx-darwin-arm64": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.1.1.tgz", + "integrity": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==", + "dev": true, + "optional": true + }, + "@nx/nx-darwin-x64": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.1.1.tgz", + "integrity": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==", + "dev": true, + "optional": true + }, + "@nx/nx-freebsd-x64": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.4.2.tgz", + "integrity": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm-gnueabihf": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.1.1.tgz", + "integrity": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-gnu": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.1.1.tgz", + "integrity": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-arm64-musl": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.1.1.tgz", + "integrity": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-gnu": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.1.1.tgz", + "integrity": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==", + "dev": true, + "optional": true + }, + "@nx/nx-linux-x64-musl": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.1.1.tgz", + "integrity": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-arm64-msvc": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.1.1.tgz", + "integrity": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==", + "dev": true, + "optional": true + }, + "@nx/nx-win32-x64-msvc": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.1.1.tgz", + "integrity": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==", + "dev": true, + "optional": true + }, + "@nx/plugin": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-16.4.2.tgz", + "integrity": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==", + "dev": true, + "requires": { + "@nrwl/nx-plugin": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/jest": "16.4.2", + "@nx/js": "16.4.2", + "@nx/linter": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "dotenv": "~10.0.0", + "fs-extra": "^11.1.0", + "tslib": "^2.3.0" + }, + "dependencies": { + "@nrwl/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", + "dev": true, + "requires": { + "@nx/linter": "16.4.2" + } + }, + "@nx/linter": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", + "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", + "dev": true, + "requires": { + "@nrwl/linter": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "@phenomnomnominal/tsquery": "~5.0.1", + "tmp": "~0.2.1", + "tslib": "^2.3.0" + } + } + } + }, + "@nx/web": { + "version": "16.4.2", + "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.4.2.tgz", + "integrity": "sha512-rjARmJESboplfa3kI0ncUMBKJGJO1cV9Rsp1HzIeAAq7Zo614lPnUA/lE6Q+lD+GbfJu0y5t7ENmQv2E/61Rxw==", + "dev": true, + "requires": { + "@nrwl/web": "16.4.2", + "@nx/devkit": "16.4.2", + "@nx/js": "16.4.2", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "detect-port": "^1.5.1", + "http-server": "^14.1.0", + "ignore": "^5.0.4", + "tslib": "^2.3.0" + } + }, "@nx/webpack": { "version": "16.4.2", "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", @@ -41097,212 +35866,12 @@ "webpack-subresource-integrity": "^5.1.0" }, "dependencies": { - "@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "requires": { - "@nx/js": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "requires": { - "nx": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "requires": { - "@nx/workspace": "16.4.2" - } - }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "dev": true, - "optional": true - }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "array-union": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "copy-webpack-plugin": { "version": "10.2.4", "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", @@ -41330,20 +35899,6 @@ "yaml": "^1.10.0" } }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, "glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -41405,69 +35960,6 @@ "schema-utils": "^4.0.0" } }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, "parse5": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", @@ -41510,12 +36002,6 @@ "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, "source-map-loader": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", @@ -41527,25 +36013,6 @@ "source-map-js": "^1.0.1" } }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -41605,40 +36072,6 @@ "tslib": "^2.3.0" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -41657,15 +36090,6 @@ "lru-cache": "^6.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -42477,49 +36901,6 @@ "typescript": "^4.5.3" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "typescript": { "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", @@ -44401,51 +38782,6 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "babel-loader": { @@ -45108,9 +39444,44 @@ "dev": true }, "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } }, "char-regex": { "version": "1.0.2", @@ -45791,54 +40162,11 @@ "pretty-bytes": "^5.3.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -46117,51 +40445,6 @@ "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", "dev": true }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "commander": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", @@ -47112,46 +41395,12 @@ "uri-js": "^4.2.2" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -47194,15 +41443,6 @@ "brace-expansion": "^1.1.7" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -48321,40 +42561,6 @@ "dev": true, "requires": {} }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "cosmiconfig": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", @@ -48395,15 +42601,6 @@ "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -48909,8 +43106,7 @@ "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "has-property-descriptors": { "version": "1.0.0", @@ -49121,51 +43317,6 @@ "secure-compare": "3.0.1", "union": "~0.5.0", "url-join": "^4.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "http-signature": { @@ -49410,51 +43561,6 @@ "strip-ansi": "^6.0.0", "through": "^2.3.6", "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "inquirer-autocomplete-prompt": { @@ -49988,40 +44094,6 @@ "minimatch": "^3.1.2" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -50030,15 +44102,6 @@ "requires": { "brace-expansion": "^1.1.7" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -50128,51 +44191,6 @@ "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-cli": { @@ -50193,51 +44211,6 @@ "jest-validate": "^29.5.0", "prompts": "^2.0.1", "yargs": "^17.3.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-config": { @@ -50270,40 +44243,6 @@ "strip-json-comments": "^3.1.1" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -50326,15 +44265,6 @@ "requires": { "brace-expansion": "^1.1.7" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -50348,51 +44278,6 @@ "diff-sequences": "^29.4.3", "jest-get-type": "^29.4.3", "pretty-format": "^29.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-docblock": { @@ -50415,51 +44300,6 @@ "jest-get-type": "^29.4.3", "jest-util": "^29.5.0", "pretty-format": "^29.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-environment-jsdom": { @@ -50538,51 +44378,6 @@ "jest-diff": "^29.5.0", "jest-get-type": "^29.4.3", "pretty-format": "^29.5.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-message-util": { @@ -50600,51 +44395,6 @@ "pretty-format": "^29.5.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-mock": { @@ -50703,54 +44453,11 @@ "slash": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "resolve.exports": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -50793,40 +44500,6 @@ "source-map-support": "0.5.13" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -50842,15 +44515,6 @@ "buffer-from": "^1.0.0", "source-map": "^0.6.0" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -50884,40 +44548,6 @@ "strip-bom": "^4.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -50940,15 +44570,6 @@ "requires": { "brace-expansion": "^1.1.7" } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -50981,51 +44602,6 @@ "natural-compare": "^1.4.0", "pretty-format": "^29.5.0", "semver": "^7.3.5" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-util": { @@ -51040,51 +44616,6 @@ "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-validate": { @@ -51101,54 +44632,11 @@ "pretty-format": "^29.5.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, "camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -51166,51 +44654,6 @@ "emittery": "^0.13.1", "jest-util": "^29.5.0", "string-length": "^4.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "jest-worker": { @@ -51389,51 +44832,6 @@ "server-destroy": "^1.0.1", "standard": "^17.0.0", "yargs": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "json-stable-stringify-without-jsonify": { @@ -52170,51 +45568,6 @@ "requires": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "log-update": { @@ -52458,6 +45811,13 @@ "type-fest": "^3.0.0" } }, + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "peer": true + }, "type-fest": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", @@ -55674,46 +49034,12 @@ "yargs-parser": "21.1.1" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -55755,15 +49081,6 @@ "lru-cache": "^6.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -55808,40 +49125,6 @@ "tslib": "^2.3.0" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -55860,15 +49143,6 @@ "lru-cache": "^6.0.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -56066,51 +49340,6 @@ "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "os-filter-obj": { @@ -57847,40 +51076,6 @@ "jsonfile": "^5.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -57897,15 +51092,6 @@ "universalify": "^0.1.2" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -59068,40 +52254,6 @@ "yargs": "^16.2.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -59135,15 +52287,6 @@ "is-wsl": "^2.1.1" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", @@ -59410,46 +52553,12 @@ "uri-js": "^4.2.2" } }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "eslint": { "version": "8.44.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", @@ -59567,15 +52676,6 @@ "p-limit": "^3.0.2" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -60542,51 +53642,6 @@ "enhanced-resolve": "^5.0.0", "micromatch": "^4.0.0", "semver": "^7.3.4" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "ts-node": { @@ -60638,51 +53693,6 @@ "chalk": "^4.1.0", "enhanced-resolve": "^5.7.0", "tsconfig-paths": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "tslib": { diff --git a/package.json b/package.json index 141f84c..ac15a15 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "g": "nx generate @ax/tooling/nx-plugin:lib", "g:dry": "nx generate @ax/tooling/nx-plugin/generators:lib --dry-run", "g:app": "nx generate @ax/tooling/nx-plugin/generators:app", + "g:lib": "nx generate @ax/tooling/nx-plugin/generators:lib", "g:scope": "nx generate @ax/tooling/nx-plugin/generators:scope", "g:scope:dry": "nx generate @ax/tooling/nx-plugin/generators:scope --dry-run", "g:remove": "nx generate @ax/tooling/nx-plugin/generators:remove", @@ -44,7 +45,7 @@ "@angular/router": "~16.0.0", "@ngrx/store": "^16.0.1", "@types/inquirer": "^9.0.3", - "chalk": "^5.3.0", + "chalk": "^4.1.2", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.13.0" @@ -60,14 +61,14 @@ "@angular/compiler-cli": "~16.0.0", "@angular/language-service": "~16.0.0", "@nx/angular": "^16.1.4", - "@nx/cypress": "16.3.2", + "@nx/cypress": "16.4.2", "@nx/devkit": "^16.1.3", "@nx/eslint-plugin": "16.1.1", - "@nx/jest": "16.3.2", - "@nx/js": "16.3.2", + "@nx/jest": "16.4.2", + "@nx/js": "16.4.2", "@nx/linter": "16.1.1", "@nx/plugin": "^16.1.2", - "@nx/web": "16.3.2", + "@nx/web": "16.4.2", "@nx/workspace": "16.1.1", "@schematics/angular": "~16.0.0", "@semantic-release/changelog": "^6.0.3", From 4369ecfed82bd9953ec1967442f3b6066f3541e8 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:04:23 +0100 Subject: [PATCH 05/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20migrate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- migrations.json | 158 ++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 45 +++++++------- 2 files changed, 181 insertions(+), 22 deletions(-) create mode 100644 migrations.json diff --git a/migrations.json b/migrations.json new file mode 100644 index 0000000..abd3369 --- /dev/null +++ b/migrations.json @@ -0,0 +1,158 @@ +{ + "migrations": [ + { + "cli": "nx", + "version": "16.2.0-beta.0", + "description": "Remove outputPath from run commands", + "implementation": "./src/migrations/update-16-2-0/remove-run-commands-output-path", + "package": "nx", + "name": "16.2.0-remove-output-path-from-run-commands" + }, + { + "cli": "nx", + "version": "16.6.0-beta.6", + "description": "Prefix outputs with {workspaceRoot}/{projectRoot} if needed", + "implementation": "./src/migrations/update-15-0-0/prefix-outputs", + "package": "nx", + "name": "16.6.0-prefix-outputs" + }, + { + "cli": "nx", + "version": "16.8.0-beta.3", + "description": "Escape $ in env variables", + "implementation": "./src/migrations/update-16-8-0/escape-dollar-sign-env-variables", + "package": "nx", + "name": "16.8.0-escape-dollar-sign-env" + }, + { + "cli": "nx", + "version": "17.0.0-beta.1", + "description": "Updates the default cache directory to .nx/cache", + "implementation": "./src/migrations/update-17-0-0/move-cache-directory", + "package": "nx", + "name": "17.0.0-move-cache-directory" + }, + { + "cli": "nx", + "version": "17.0.0-beta.3", + "description": "Use minimal config for tasksRunnerOptions", + "implementation": "./src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options", + "package": "nx", + "name": "17.0.0-use-minimal-config-for-tasks-runner-options" + }, + { + "version": "17.0.0-rc.1", + "description": "Migration for v17.0.0-rc.1", + "implementation": "./src/migrations/update-17-0-0/rm-default-collection-npm-scope", + "package": "nx", + "name": "rm-default-collection-npm-scope" + }, + { + "cli": "nx", + "version": "16.6.0-beta.0", + "description": "Explicitly set 'updateBuildableProjectDepsInPackageJson' to 'true' in targets that rely on that value as the default.", + "factory": "./src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps", + "package": "@nx/angular", + "name": "explicitly-set-projects-to-update-buildable-deps" + }, + { + "cli": "nx", + "version": "17.2.0-beta.2", + "description": "Rename '@nx/angular:webpack-dev-server' executor to '@nx/angular:dev-server'", + "factory": "./src/migrations/update-17-2-0/rename-webpack-dev-server", + "package": "@nx/angular", + "name": "rename-webpack-dev-server-executor" + }, + { + "cli": "nx", + "version": "17-2-6-beta.1", + "description": "Rename workspace rules from @nx/workspace/name to @nx/workspace-name", + "implementation": "./src/migrations/update-17-2-6-rename-workspace-rules/rename-workspace-rules", + "package": "@nx/eslint-plugin", + "name": "update-17-2-6-rename-workspace-rules" + }, + { + "cli": "nx", + "version": "16.6.0-beta.0", + "description": "Explicitly set 'updateBuildableProjectDepsInPackageJson' to 'true' in targets that rely on that value as the default.", + "factory": "./src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps", + "package": "@nx/js", + "name": "explicitly-set-projects-to-update-buildable-deps" + }, + { + "cli": "nx", + "version": "16.8.2-beta.0", + "description": "Remove invalid options (strict, noInterop) for ES6 type modules.", + "factory": "./src/migrations/update-16-8-2/update-swcrc", + "package": "@nx/js", + "name": "16-8-2-update-swcrc" + }, + { + "cli": "nx", + "version": "17.0.2", + "description": "Remove deprecated build options", + "implementation": "./src/migrations/update-17-0-0/remove-deprecated-build-options", + "package": "@nx/js", + "name": "update-17-0-0-remove-deprecated-build-options" + }, + { + "cli": "nx", + "version": "16.5.0-beta.2", + "description": "Add test-setup.ts to ignored files in production input", + "implementation": "./src/migrations/update-16-5-0/add-test-setup-to-inputs-ignore", + "package": "@nx/jest", + "name": "add-test-setup-to-inputs-ignore" + }, + { + "version": "17.1.0-beta.2", + "description": "Move jest executor options to nx.json targetDefaults", + "implementation": "./src/migrations/update-17-1-0/move-options-to-target-defaults", + "package": "@nx/jest", + "name": "move-options-to-target-defaults" + }, + { + "cli": "nx", + "version": "16.9.0-beta.1", + "description": "Replace imports of Module Federation utils frm @nx/devkit to @nx/webpack", + "implementation": "./src/migrations/update-16-9-0/migrate-mf-util-usage", + "package": "@nx/devkit", + "name": "update-16-9-0-migrate-mf-usage-to-webpack" + }, + { + "cli": "nx", + "version": "16.8.0-beta.4", + "description": "Update to Cypress v13. Most noteable change is video recording is off by default. This migration will only update if the workspace is already on Cypress v12. https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-130", + "implementation": "./src/migrations/update-16-8-0/cypress-13", + "package": "@nx/cypress", + "name": "update-16-8-0-cypress-13" + }, + { + "version": "16.8.0", + "description": "update-16-8-0-add-ignored-files", + "implementation": "./src/migrations/update-16-8-0-add-ignored-files/update-16-8-0-add-ignored-files", + "package": "@nx/linter", + "name": "update-16-8-0-add-ignored-files" + }, + { + "version": "17.0.0-beta.7", + "description": "update-17-0-0-rename-to-eslint", + "implementation": "./src/migrations/update-17-0-0-rename-to-eslint/update-17-0-0-rename-to-eslint", + "package": "@nx/linter", + "name": "update-17-0-0-rename-to-eslint" + }, + { + "version": "17.1.0-beta.1", + "description": "Updates for @typescript-utils/utils v6.9.1+", + "implementation": "./src/migrations/update-17-1-0/update-typescript-eslint", + "package": "@nx/linter", + "name": "update-typescript-eslint" + }, + { + "version": "17.2.0-beta.0", + "description": "Simplify eslintFilePatterns", + "implementation": "./src/migrations/update-17-2-0/simplify-eslint-patterns", + "package": "@nx/linter", + "name": "simplify-eslint-patterns" + } + ] +} diff --git a/package.json b/package.json index ac15a15..0c56591 100644 --- a/package.json +++ b/package.json @@ -60,35 +60,35 @@ "@angular/cli": "~16.0.0", "@angular/compiler-cli": "~16.0.0", "@angular/language-service": "~16.0.0", - "@nx/angular": "^16.1.4", - "@nx/cypress": "16.4.2", - "@nx/devkit": "^16.1.3", - "@nx/eslint-plugin": "16.1.1", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.1.1", - "@nx/plugin": "^16.1.2", - "@nx/web": "16.4.2", - "@nx/workspace": "16.1.1", + "@nx/angular": "17.2.6", + "@nx/cypress": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/eslint-plugin": "17.2.6", + "@nx/jest": "17.2.6", + "@nx/js": "17.2.6", + "@nx/linter": "17.2.6", + "@nx/plugin": "17.2.6", + "@nx/web": "17.2.6", + "@nx/workspace": "17.2.6", "@schematics/angular": "~16.0.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^11.1.0", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/release-notes-generator": "^12.1.0", - "@swc-node/register": "~1.4.2", + "@swc-node/register": "1.6.8", "@swc/cli": "~0.1.62", - "@swc/core": "~1.3.51", - "@swc/helpers": "^0.5.1", + "@swc/core": "1.3.101", + "@swc/helpers": "0.5.3", "@types/jest": "^29.4.0", - "@types/node": "18.7.1", - "@typescript-eslint/eslint-plugin": "^5.58.0", - "@typescript-eslint/parser": "^5.58.0", + "@types/node": "18.16.9", + "@typescript-eslint/eslint-plugin": "6.15.0", + "@typescript-eslint/parser": "6.15.0", "conventional-changelog-conventionalcommits": "^7.0.2", "cypress": "^12.11.0", - "eslint": "~8.15.0", - "eslint-config-prettier": "8.1.0", - "eslint-plugin-cypress": "^2.10.3", + "eslint": "8.48.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-cypress": "2.15.1", "handlebars": "^4.7.7", "http-server": "^14.1.1", "husky": "^8.0.3", @@ -96,20 +96,21 @@ "inquirer-autocomplete-prompt": "^2.0.0", "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", - "jest-preset-angular": "^13.1.1", + "jest-preset-angular": "13.1.4", "json-server": "^0.17.3", "jsonc-eslint-parser": "^2.2.0", "lint-staged": "^13.2.2", "markdown-toc": "^1.2.0", "npm-run-all": "^4.1.5", - "nx": "16.1.1", + "nx": "17.2.6", "nx-release": "^3.1.6", "prettier": "^2.6.2", "replace-json-property": "^1.9.0", "source-map-explorer": "^2.5.3", "ts-jest": "^29.1.0", "ts-node": "10.9.1", - "typescript": "~5.0.2", + "typescript": "5.2.2", "verdaccio": "^5.0.4" } } + From ebd59ccdda4fb3f197b7c38fd6adb3b9ab6ab293 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:15:37 +0100 Subject: [PATCH 06/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20migrate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nx/cache/file-map.json | 830 + .nx/cache/lockfile.hash | 1 + .nx/cache/nx_files.nxt | Bin 0 -> 13492 bytes .nx/cache/parsed-lock-file.json | 43413 ++++++++++++++++++++++++++++++ .nx/cache/project-graph.json | 586 + migrations.json | 62 +- package-lock.json | 37911 +++++--------------------- package.json | 41 +- 8 files changed, 51595 insertions(+), 31249 deletions(-) create mode 100644 .nx/cache/file-map.json create mode 100644 .nx/cache/lockfile.hash create mode 100644 .nx/cache/nx_files.nxt create mode 100644 .nx/cache/parsed-lock-file.json create mode 100644 .nx/cache/project-graph.json diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json new file mode 100644 index 0000000..5976ca5 --- /dev/null +++ b/.nx/cache/file-map.json @@ -0,0 +1,830 @@ +{ + "version": "6.0", + "nxVersion": "17.2.6", + "deps": { + "@angular/core": "^17.0.7", + "@angular/animations": "^17.0.7", + "@angular/cdk": "^17.0.4", + "@angular/common": "^17.0.7", + "@angular/compiler": "^17.0.7", + "@angular/forms": "^17.0.7", + "@angular/platform-browser": "^17.0.7", + "@angular/platform-browser-dynamic": "^17.0.7", + "@angular/router": "^17.0.7", + "@ngrx/store": "^17.0.1", + "@types/inquirer": "^9.0.3", + "chalk": "^4.1.2", + "rxjs": "~7.8.0", + "tslib": "^2.3.0", + "zone.js": "~0.14.0", + "@angular-devkit/build-angular": "^17.0.7", + "@angular-devkit/core": "^17.0.7", + "@angular-devkit/schematics": "^17.0.7", + "@angular-eslint/eslint-plugin": "^17.0.7", + "@angular-eslint/eslint-plugin-template": "^17.0.7", + "@angular-eslint/template-parser": "^17.0.7", + "@angular/cli": "^17.0.7", + "@angular/compiler-cli": "^17.0.7", + "@angular/language-service": "^17.0.7", + "@nx/angular": "17.2.6", + "@nx/cypress": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/eslint-plugin": "17.2.6", + "@nx/jest": "17.2.6", + "@nx/js": "17.2.6", + "@nx/linter": "17.2.6", + "@nx/plugin": "17.2.6", + "@nx/web": "17.2.6", + "@nx/workspace": "17.2.6", + "@schematics/angular": "~16.0.0", + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/commit-analyzer": "^11.1.0", + "@semantic-release/exec": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@semantic-release/release-notes-generator": "^12.1.0", + "@swc-node/register": "1.6.8", + "@swc/cli": "~0.1.62", + "@swc/core": "1.3.101", + "@swc/helpers": "0.5.3", + "@types/jest": "^29.4.0", + "@types/node": "18.16.9", + "@typescript-eslint/eslint-plugin": "6.15.0", + "@typescript-eslint/parser": "6.15.0", + "conventional-changelog-conventionalcommits": "^7.0.2", + "cypress": "^12.11.0", + "eslint": "8.48.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-cypress": "2.15.1", + "handlebars": "^4.7.7", + "http-server": "^14.1.1", + "husky": "^8.0.3", + "inquirer": "^8.2.5", + "inquirer-autocomplete-prompt": "^2.0.0", + "jest": "^29.4.1", + "jest-environment-jsdom": "^29.4.1", + "jest-preset-angular": "13.1.4", + "json-server": "^0.17.3", + "jsonc-eslint-parser": "^2.2.0", + "lint-staged": "^13.2.2", + "markdown-toc": "^1.2.0", + "npm-run-all": "^4.1.5", + "nx": "17.2.6", + "nx-release": "^3.1.6", + "prettier": "^2.6.2", + "replace-json-property": "^1.9.0", + "source-map-explorer": "^2.5.3", + "ts-jest": "^29.1.0", + "ts-node": "10.9.1", + "typescript": "5.2.2", + "verdaccio": "^5.0.4" + }, + "pathMappings": { + "@ax/tooling/nx-plugin": [ + "libs/tooling/nx-plugin/src/index.ts" + ], + "@ax/tooling/nx-plugin/config": [ + "libs/tooling/nx-plugin/config/src/index.ts" + ], + "@ax/tooling/nx-plugin/generators": [ + "libs/tooling/nx-plugin/generators/src/index.ts" + ], + "@ax/tooling/nx-plugin/validators": [ + "libs/tooling/nx-plugin/validators/src/index.ts" + ] + }, + "nxJsonPlugins": [], + "fileMap": { + "projectFileMap": { + "tooling-nx-plugin-config": [ + { + "file": "libs/tooling/nx-plugin/config/.eslintrc.json", + "hash": "15754961097349354736" + }, + { + "file": "libs/tooling/nx-plugin/config/README.md", + "hash": "5737414999656167607" + }, + { + "file": "libs/tooling/nx-plugin/config/jest.config.ts", + "hash": "2076786795323067777" + }, + { + "file": "libs/tooling/nx-plugin/config/package-lock.json", + "hash": "18213964522934649663" + }, + { + "file": "libs/tooling/nx-plugin/config/package.json", + "hash": "4195037350856133493", + "deps": [ + "npm:inquirer", + "npm:@types/inquirer" + ] + }, + { + "file": "libs/tooling/nx-plugin/config/project.json", + "hash": "17388542100888902116" + }, + { + "file": "libs/tooling/nx-plugin/config/src/index.ts", + "hash": "4261738526690432499" + }, + { + "file": "libs/tooling/nx-plugin/config/src/lib/config.helper.ts", + "hash": "10560189062792512190", + "deps": [ + "npm:inquirer", + "npm:@nx/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.json", + "hash": "9584156853704587869" + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.lib.json", + "hash": "5419457303262888731" + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.spec.json", + "hash": "12676338339107966475" + } + ], + "tooling-nx-plugin-generators": [ + { + "file": "libs/tooling/nx-plugin/generators/.eslintrc.json", + "hash": "7544721654381546514" + }, + { + "file": "libs/tooling/nx-plugin/generators/README.md", + "hash": "9632993224050665957" + }, + { + "file": "libs/tooling/nx-plugin/generators/generators.json", + "hash": "8576047884694026660" + }, + { + "file": "libs/tooling/nx-plugin/generators/jest.config.ts", + "hash": "3592600096884946976" + }, + { + "file": "libs/tooling/nx-plugin/generators/package.json", + "hash": "5183184625504733051" + }, + { + "file": "libs/tooling/nx-plugin/generators/project.json", + "hash": "6201856378875424465" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/files/app/app.component.html", + "hash": "4850219475400307807" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/files/app/app.config.ts", + "hash": "16490032927005301375", + "deps": [ + "npm:@angular/core", + "npm:@angular/router" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/files/styles.scss", + "hash": "252149282571933028" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/generator.spec.ts", + "hash": "804817193264652368", + "deps": [ + "npm:@nrwl/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/generator.ts", + "hash": "17692613095474854709", + "deps": [ + "npm:path", + "npm:fs", + "npm:@nx/devkit", + "npm:@nx/angular", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/schema.d.ts", + "hash": "5259776031764189177" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/app/schema.json", + "hash": "10700926604180052287" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/init/generator.ts", + "hash": "17270506234309899322", + "deps": [ + "npm:@nrwl/devkit", + "npm:chalk", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/init/schema.json", + "hash": "4898643426491537623" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/init/schema.ts", + "hash": "8343741269946359141" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/event/index.ts", + "hash": "10361972360241502149" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/event/lib/__projectName__.ts", + "hash": "6309524771378313269", + "deps": [ + "npm:@ngrx/store" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/feature/lib/__projectName__.routes.ts", + "hash": "5613255563176122374", + "deps": [ + "npm:@angular/router" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/model/index.ts", + "hash": "10361972360241502149" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/model/lib/__projectName__.ts", + "hash": "13891149215864065454" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/pattern/index.ts", + "hash": "2068217560274676576" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/index.ts", + "hash": "9597952145067090847" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.effects.spec.ts", + "hash": "5617246286119475512", + "deps": [ + "npm:rxjs" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.effects.ts", + "hash": "14632604133070358775", + "deps": [ + "npm:@angular/core", + "npm:rxjs", + "npm:@ngrx/effects" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.events.ts", + "hash": "15918271722187542522", + "deps": [ + "npm:@ngrx/store" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.feature.ts", + "hash": "11343014683869355541", + "deps": [ + "npm:@ngrx/store" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.selectors.spec.ts", + "hash": "6146768962610957414" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.selectors.ts", + "hash": "6738631387361299290", + "deps": [ + "npm:@ngrx/store" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.service.ts", + "hash": "937011369169402688", + "deps": [ + "npm:@angular/core", + "npm:@angular/common" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/util/index.ts", + "hash": "4831066279576619293" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/util/lib/__projectName__.service.spec.ts", + "hash": "1075166821751228279", + "deps": [ + "npm:@angular/core" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/util/lib/__projectName__.service.ts", + "hash": "9400718405328714329", + "deps": [ + "npm:@angular/core" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/generator.interface.ts", + "hash": "12643617170295389714", + "deps": [ + "npm:@nx/devkit", + "npm:nx" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/generator.spec.ts", + "hash": "1656734658203775118", + "deps": [ + "npm:@nrwl/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/generator.ts", + "hash": "6211773580084743265", + "deps": [ + "npm:fs", + "npm:path", + "npm:@nx/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/schema.d.ts", + "hash": "4900236922720703825" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/schema.json", + "hash": "3859377357570009447" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/data-access.ts", + "hash": "3768170324005269354", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/angular" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/event.ts", + "hash": "10548445708976029858", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/js" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/feature.ts", + "hash": "14973849840988098423", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/angular" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/helpers/eslint.ts", + "hash": "7501953927354828618", + "deps": [ + "npm:path", + "npm:@nx/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/model.ts", + "hash": "15225966231715376968", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/js" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/pattern.ts", + "hash": "430952026868719092", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/angular" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/ui.ts", + "hash": "18442880654150130356", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/angular" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/util-fn.ts", + "hash": "13656484959715746349", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/js" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/lib/types/util.ts", + "hash": "4762653359683278465", + "deps": [ + "npm:path", + "npm:@nx/devkit", + "npm:@nx/angular" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/move/generator.ts", + "hash": "3861962895159191269", + "deps": [ + "npm:@nrwl/workspace", + "npm:@nrwl/devkit", + "tooling-nx-plugin-validators", + "npm:inquirer", + "npm:chalk", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/move/schema.d.ts", + "hash": "13122421759290372874" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/move/schema.json", + "hash": "13941572491243918479" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/move/schema.ts", + "hash": "17200688352461332421" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/remove/generator.ts", + "hash": "13994488209127226739", + "deps": [ + "npm:chalk", + "npm:inquirer", + "npm:@nrwl/devkit", + "npm:@nrwl/workspace", + "npm:@nx/devkit", + "tooling-nx-plugin-validators" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/remove/schema.json", + "hash": "9864713213516005162" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/remove/schema.ts", + "hash": "10465692699409776399" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/scope/generator.ts", + "hash": "17483667429502920305", + "deps": [ + "npm:@nrwl/devkit", + "npm:inquirer", + "npm:chalk", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/scope/schema.json", + "hash": "5461609153150389496" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/scope/schema.ts", + "hash": "11369157136699542567" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/model/library-type.ts", + "hash": "12322479035598940500" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/model/project-types.ts", + "hash": "2054227914050899186" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/model/scope-type.ts", + "hash": "18092086971115229276" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/prompts/application.prompt.ts", + "hash": "5576141211154537157", + "deps": [ + "npm:inquirer", + "npm:inquirer-autocomplete-prompt", + "npm:@nrwl/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/prompts/project.prompt.ts", + "hash": "12739460537729143844", + "deps": [ + "npm:inquirer", + "npm:inquirer-autocomplete-prompt", + "npm:@nrwl/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/prompts/scope.prompt.ts", + "hash": "12536659530864812629", + "deps": [ + "npm:inquirer", + "npm:@nrwl/devkit", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/prompts/type.prompt.ts", + "hash": "349560369908073846", + "deps": [ + "npm:inquirer", + "npm:@nrwl/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/generators-angular.ts", + "hash": "2448398896972449059", + "deps": [ + "npm:@nrwl/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/list.spec.ts", + "hash": "15432189482994639399" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/list.ts", + "hash": "9665711985737511268" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/project.spec.ts", + "hash": "11932282324029719722" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/project.ts", + "hash": "12940472883453229868", + "deps": [ + "npm:@nrwl/devkit", + "npm:@nx/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/string.spec.ts", + "hash": "16075729494904481759" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/string.ts", + "hash": "1624094586349975663" + }, + { + "file": "libs/tooling/nx-plugin/generators/src/index.ts", + "hash": "14385996690460005212" + }, + { + "file": "libs/tooling/nx-plugin/generators/tsconfig.json", + "hash": "9584156853704587869" + }, + { + "file": "libs/tooling/nx-plugin/generators/tsconfig.lib.json", + "hash": "5419457303262888731" + }, + { + "file": "libs/tooling/nx-plugin/generators/tsconfig.spec.json", + "hash": "12676338339107966475" + } + ], + "ax-nx-plugin-workspace": [ + { + "file": ".ax.config.json", + "hash": "1340829166436045723" + }, + { + "file": ".editorconfig", + "hash": "5443105041930014821" + }, + { + "file": ".eslintignore", + "hash": "7663861978715868291" + }, + { + "file": ".eslintrc-angular.json", + "hash": "14242169620473342076" + }, + { + "file": ".eslintrc-ngrx.json", + "hash": "4128046395051612814" + }, + { + "file": ".eslintrc.json", + "hash": "11574629289848961625" + }, + { + "file": ".github/workflows/ci.yml", + "hash": "12945670883121043129" + }, + { + "file": ".github/workflows/release.yml", + "hash": "10092510407796624812" + }, + { + "file": ".gitignore", + "hash": "3583689735365856263" + }, + { + "file": ".npmrc", + "hash": "806553954559008599" + }, + { + "file": ".prettierignore", + "hash": "16479312547820070036" + }, + { + "file": ".prettierrc", + "hash": "8130880107294852815" + }, + { + "file": ".verdaccio/config.yml", + "hash": "18364357067868980959" + }, + { + "file": ".verdaccio/htpasswd", + "hash": "18438619983611958715" + }, + { + "file": "README.md", + "hash": "2428966330377374428" + }, + { + "file": "apps/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "docs/README.md", + "hash": "2310841811663877147" + }, + { + "file": "docs/architecture.excalidraw", + "hash": "12540513505371868476" + }, + { + "file": "docs/architecture.png", + "hash": "13139230679049872771" + }, + { + "file": "docs/selectors.excalidraw", + "hash": "15954424021334929527" + }, + { + "file": "docs/selectors.png", + "hash": "16523618057021746464" + }, + { + "file": "docs/types.excalidraw", + "hash": "9900857568212363017" + }, + { + "file": "docs/types.png", + "hash": "9979667564085555112" + }, + { + "file": "jest.config.ts", + "hash": "12333515226966617182", + "deps": [ + "npm:@nx/jest" + ] + }, + { + "file": "jest.preset.js", + "hash": "9430166341120122740", + "deps": [ + "npm:@nx/jest" + ] + }, + { + "file": "migrations.json", + "hash": "11754731025197703420" + }, + { + "file": "nx.json", + "hash": "10355845662403895098" + }, + { + "file": "package.json", + "hash": "9761205731330717165" + }, + { + "file": "project.json", + "hash": "14270586715379642869" + }, + { + "file": "release.config.js", + "hash": "5891170741678413892" + }, + { + "file": "tools/scripts/publish.mjs", + "hash": "9485274327411133040", + "deps": [ + "npm:child_process", + "npm:fs", + "npm:chalk", + "npm:@nx/devkit" + ] + }, + { + "file": "tsconfig.base.json", + "hash": "15772588564003373708" + } + ], + "tooling-nx-plugin-validators": [ + { + "file": "libs/tooling/nx-plugin/validators/.eslintrc.json", + "hash": "4060609842899411029" + }, + { + "file": "libs/tooling/nx-plugin/validators/README.md", + "hash": "10808454116467325009" + }, + { + "file": "libs/tooling/nx-plugin/validators/generators.json", + "hash": "1521044451708123978" + }, + { + "file": "libs/tooling/nx-plugin/validators/jest.config.ts", + "hash": "10551295982115216078" + }, + { + "file": "libs/tooling/nx-plugin/validators/package-lock.json", + "hash": "9526950535647397701" + }, + { + "file": "libs/tooling/nx-plugin/validators/package.json", + "hash": "2381165151099912703", + "deps": [ + "npm:chalk" + ] + }, + { + "file": "libs/tooling/nx-plugin/validators/project.json", + "hash": "5333715124941086772" + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts", + "hash": "3775989106480202960", + "deps": [ + "npm:@nx/devkit", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts", + "hash": "7671751012756824637", + "deps": [ + "npm:chalk", + "npm:path", + "npm:@nx/devkit", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/schema.d.ts", + "hash": "5819220933278268906" + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/schema.json", + "hash": "66282947766089941" + }, + { + "file": "libs/tooling/nx-plugin/validators/src/index.ts", + "hash": "1396666921406885142" + }, + { + "file": "libs/tooling/nx-plugin/validators/tsconfig.json", + "hash": "18017263261948858813" + }, + { + "file": "libs/tooling/nx-plugin/validators/tsconfig.lib.json", + "hash": "5419457303262888731" + }, + { + "file": "libs/tooling/nx-plugin/validators/tsconfig.spec.json", + "hash": "12676338339107966475" + } + ] + }, + "nonProjectFiles": [] + } +} diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash new file mode 100644 index 0000000..4335fdc --- /dev/null +++ b/.nx/cache/lockfile.hash @@ -0,0 +1 @@ +16081168226959330472 \ No newline at end of file diff --git a/.nx/cache/nx_files.nxt b/.nx/cache/nx_files.nxt new file mode 100644 index 0000000000000000000000000000000000000000..587609c8db425d8e96f2a4f255a1c7f22fe01e53 GIT binary patch literal 13492 zcmb`OZIC6^S;u!Fl0wO%5R+iVvP_jk#l6#gPQOBFc7;t4WQ`FpQR8yC(>rr_XYLHQ z@9Zvd3s)m(O3Km{(b5!EVo4%=QOoirE`7enedqK1Hn4AZ_;+~U^RfDUvxe6Ld>7Y%Yk^BVxSg~7b18Sx z5uanOgiF6`eyi{F*NoFz^quJI8G8fQ_j0{~>k!vrE{(sDJAdbNi9W)IH*xV-(YNwJ zxcL2``}{-t7W&QnqwkPsHCA&87k0b*?(N*~a-YS6kJb0f4%66)`+N`gDObrgPXT^f(W5?E~YbT1)?C5Z{ICgAM96t_G z4$AdnG?*T%FM6lX@mmGR^$!tgmSzXR#VT)Ftm{k!YIjXmgF{$<0#zIl(T!+Ifvz9Wxe2_ijqT| zA@4K}!aTOQNo^cu5_>kNzZ@@3)}}?8BupIUX_kgDJ2v_J({q07#X>n+E>?%t`NdHZ zCP5y?HjD$C zE6(FE&ci%3Nj|r9#*^`E3sXEp8XyuQlgP6?x2EshoZiUvn0LYLw$^@WKoBQEi1H*R z%?Brr^ZibuJ# z%IWCfaI&V`Y(SzSNx za(Or{7UgYL*JlJR`K>`sNoh=MlO)Dl1_%I~Pt5#B?xtu3JsnQ(J*fRu6QIx$wv3xc zy$LnJF0}F@I#tW3(y3b6qYOudpUP7-D$nBiUDY(-N=9Cbki$M9d)l$hvfVd+pmj+zHYbM>2DqibVByL9qTFgY zRfNOKrJ*(CyJQ9Ay-8oR_13&T9Gx64)oHr18Mzr5Kp5mXIRJ;e*AuS&rSm$Kzm(56 z0eK)1Jd~>>A0Q>47Au9y1Q+p7l(C{#8l+K(d7|Z6-nR=+0p4=t@J+WJ8LTem7)O<7 zXokx9@4~A4&dtk!6XKttz9GHV!uOEVSJ_eP<}y+uwph8j#FBDF;b3VzTi&>P;q=<{ zskY!s-BpxPq8AuO3bt?<;UPo(Xcp$+(7d`cLgXyj!Sk+$!w+FxBzv36V1CoWdL zy1q6cI~y#|R#&1-*_aAbRi32ELEjwP7T>0J7I9N~AfzB6$c2%~$fc;j$fx3*nuf}x zO7=@Md8De^FF?sYB2qrqK(dE#jZI3j7?X>}Iz<&zF{yFSQM$m@rjoTIj@e9}V52E4 zNt;rev?C5qmZoQ_VJKHdEM=YY1Q20ge0Q@rPjGN$ZFI7phzf(sxh3W_>vxVA-%bjb8D*g+#{kma3Z+}w_Nvf%;&wn4Pw^4tM24c-z%wD)>N(@~ zXXV1y1O=}^oX74_yNFbcTu{9nrMc6w(%toqyI02L@?iBuSqV6etih+yfw1_Aou}Jo zqx`^mhuV3!7I2Z`W>3tW^HaV-To0(0a)JSQ7*=3*p&PyHb={YX)HiOC&81W@9`pDx!3+@>^}}G$eOKT;%}tkZ4V~E=IMk0qqMmhYw(b z1Oy}*hkJ-YPK33JRRvpHO_9PIDmBbdjSWMKYyLe;iEBAlGf0%MiWM?BcR4C*?>=|y z$*%u+NL>#epNO%gP@zy$^M?i}t~T0*jc;S@pHWp)QIx^VMEH$}E+?I&KBmrXx5r1F zj`gE~IqM>MqA^sRZ+(1SQE z$^q@pVtRZystax99-Lo_myU^<=;r*!TXi+N31kw~8YpxGQy3c(g!xzP=XE;4h+34@ zMuvb{>DzA7rM9mAnyv0VZn;f5i3|yAqDCO0Au%y=GXK$U@qxsjS@R?yjEO(==;%rl z{75{g+J;#ftgzdM@;z)()HYwUCs3vN^Hy==! z=_+5_-XAJN9jCq|xe6sCxl+%r+eKZlWG7RSld6wJ8oM$cRke55&5B`9l|a)MLF30b z$GPX>2WIV`n943qg$@kc^S5s`oSZ zlDF`0a%&tbY)RY6U@WRiD5pa=C>F<5M|ISqD8g!Dx>&glcv?oKfzp=?s)0`y#X8vu z2@sVhUr}^Q1$)-!qG0Plt47F6+UoCr6zb_M4;5)N8LmEhmXH(o4PI3OD7w4V2mYpwgN{0s{F`>Cf&zL1BU+Fnl zPf*)ZCKdW#DG`(1(Uw6+(uCwS57RpB>E_mhx60>-S%4|g<)oNRb}@0I(9$U$*n~X4 zMqU}^H|m+h7dC80K(=W@ zsM-_v_Rx`0LZp-TW4R>3M1mx4-7U2XI>eg*a@AzLkUjHx&U%{~xo_I%+$u}sjQCB> zPIZ)KhBFBI_Tk))-#x{8c{t9B$*xsk(VOX6RJ+X!5`j*{I|j?fjpM}$h?V$>hZ%W@ zzbKjp1WHN+H3i6@F@!xWs;;TrxhvnVJO~{bJUeL>x-~aj*>Nig83m;oZb6JWZ{8T- zNqP@cCw-l0)1@Ha4#`${lBl-?h#$SlXFDey6tDRm^FWErBcVr7J({I!)-$`uV4F^D z35Qi~JS)*tGVYLvcxb9h=HAqEdnnsWE#T?<1^ql+exhz5y##uOdWJLq4iSl~uf11Z zB77BfFliePZmR6vwtc|brI8k;Iew5sCBKq0vVE52@1TD1s1A;JOmbeTV(J3A1U$9e z`FOS#7x-;*5-fmcJLJ$j=-5RJ*mlBF+B)j#6IatIM}H~!*q8bicv#X@j(g`NZsRZc z?i5w4$gY-_Ue&FiK-gv!p_^Z(3 zv;R}wydm_H4nN}IKLGwk$L9|4W<7crGJw{+KjV!LpbtZf|A)B$&dY1LX`QQX{8zYN zcc8-`clh8RyY=Y3$IpX{&)Ym)?@N9QwB~)-!?n(v9R9o9n{~bl{9O*eNAf2e{<44W_}>Qpeuv-a;d&4Ad58b9hyO76 z0(8aS!?m8X4nObVdav{S4!`_gx_NajPlIb;p@)AD^nW}2n1@^N*FtOF4|urr^A?By zkB4jCM;*TZ)0>-5eq()(SAu^AT=Tveys@JnfqoWTcJu2VeiZr!XwCaR57+PC39b9H z+;6$G=CAit-|g`0KGX4+JU{O6+rh_9ucYU%f)<~Lz44m&4Gw>d`}1F^?d6-mf5G7& z^~PTZ{t&djzw%$ZdG-G66K?#QJY4VHo(I>yj)6D)zZKd*OAe2CG@ zd<0tf2@jvtPtjg3{N3Qq`AV2tt{LjI~|EPz{?p|>CFM0S);MYTo{}UcAfAtQBf5gKjhex5s|EhoM z=9M4#fE$0*!w-Rf)!~nM_+8*RwB~)r!}adD$K;Y0A7pf&G-FLr!>68bkC{%Y_>o;vq0JN&KQc&+CWXvyI|50@Xi5nBA8 z@bE*>C*1h`&vx@F4|&w#M?75nde-qd3f`S$&J7Cxo*4#f70Q1c(~&Da}NI_4?hlm2wLlT!NU(hKLRcJe3g5%ey!tE zZv1!tN0&#*e}2J@zXAN`FR9~^{y&hbp~dG2_lA$o<@L~-_f`-8dg#!Ne}H=M@3^KZQIBj~p~ z{O`H%ySm=5{PPE)C8t-vu(|m%7x%^gPr)UJw}3bM(mMA;i~ku9*Sz27@JG0R^op9l z`U{$7g~H?_g@_@d-)58pY?Fr?*Zs)UhcnrS-oHB$uji)+;9Kz=H@v* F|39z&Z;k)} literal 0 HcmV?d00001 diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json new file mode 100644 index 0000000..f64d049 --- /dev/null +++ b/.nx/cache/parsed-lock-file.json @@ -0,0 +1,43413 @@ +{ + "externalNodes": { + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.2.0", + "packageName": "@adobe/css-tools", + "hash": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@angular-devkit/architect": { + "type": "npm", + "name": "npm:@angular-devkit/architect", + "data": { + "version": "0.1600.6", + "packageName": "@angular-devkit/architect", + "hash": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==" + } + }, + "npm:@angular-devkit/build-angular": { + "type": "npm", + "name": "npm:@angular-devkit/build-angular", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/build-angular", + "hash": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==" + } + }, + "npm:inquirer@8.2.4": { + "type": "npm", + "name": "npm:inquirer@8.2.4", + "data": { + "version": "8.2.4", + "packageName": "inquirer", + "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.5", + "packageName": "inquirer", + "hash": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==" + } + }, + "npm:tslib@2.5.0": { + "type": "npm", + "name": "npm:tslib@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "tslib", + "hash": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.0", + "packageName": "tslib", + "hash": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:@angular-devkit/build-webpack": { + "type": "npm", + "name": "npm:@angular-devkit/build-webpack", + "data": { + "version": "0.1600.6", + "packageName": "@angular-devkit/build-webpack", + "hash": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==" + } + }, + "npm:@angular-devkit/core": { + "type": "npm", + "name": "npm:@angular-devkit/core", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/core", + "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" + } + }, + "npm:@angular-devkit/schematics": { + "type": "npm", + "name": "npm:@angular-devkit/schematics", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/schematics", + "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" + } + }, + "npm:@angular-eslint/bundled-angular-compiler": { + "type": "npm", + "name": "npm:@angular-eslint/bundled-angular-compiler", + "data": { + "version": "16.0.3", + "packageName": "@angular-eslint/bundled-angular-compiler", + "hash": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==" + } + }, + "npm:@angular-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@angular-eslint/eslint-plugin", + "data": { + "version": "16.0.3", + "packageName": "@angular-eslint/eslint-plugin", + "hash": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==" + } + }, + "npm:@angular-eslint/eslint-plugin-template": { + "type": "npm", + "name": "npm:@angular-eslint/eslint-plugin-template", + "data": { + "version": "16.0.3", + "packageName": "@angular-eslint/eslint-plugin-template", + "hash": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==" + } + }, + "npm:@angular-eslint/template-parser": { + "type": "npm", + "name": "npm:@angular-eslint/template-parser", + "data": { + "version": "16.0.3", + "packageName": "@angular-eslint/template-parser", + "hash": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==" + } + }, + "npm:@angular-eslint/utils": { + "type": "npm", + "name": "npm:@angular-eslint/utils", + "data": { + "version": "16.0.3", + "packageName": "@angular-eslint/utils", + "hash": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==" + } + }, + "npm:@angular/animations": { + "type": "npm", + "name": "npm:@angular/animations", + "data": { + "version": "16.0.6", + "packageName": "@angular/animations", + "hash": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==" + } + }, + "npm:@angular/cdk": { + "type": "npm", + "name": "npm:@angular/cdk", + "data": { + "version": "16.1.3", + "packageName": "@angular/cdk", + "hash": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==" + } + }, + "npm:@angular/cli": { + "type": "npm", + "name": "npm:@angular/cli", + "data": { + "version": "16.0.6", + "packageName": "@angular/cli", + "hash": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==" + } + }, + "npm:@angular/common": { + "type": "npm", + "name": "npm:@angular/common", + "data": { + "version": "16.0.6", + "packageName": "@angular/common", + "hash": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==" + } + }, + "npm:@angular/compiler": { + "type": "npm", + "name": "npm:@angular/compiler", + "data": { + "version": "16.0.6", + "packageName": "@angular/compiler", + "hash": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==" + } + }, + "npm:@angular/compiler-cli": { + "type": "npm", + "name": "npm:@angular/compiler-cli", + "data": { + "version": "16.0.6", + "packageName": "@angular/compiler-cli", + "hash": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==" + } + }, + "npm:@babel/core@7.21.8": { + "type": "npm", + "name": "npm:@babel/core@7.21.8", + "data": { + "version": "7.21.8", + "packageName": "@babel/core", + "hash": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.21.4", + "packageName": "@babel/core", + "hash": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==" + } + }, + "npm:semver@6.3.0": { + "type": "npm", + "name": "npm:semver@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "semver", + "hash": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@7.3.4": { + "type": "npm", + "name": "npm:semver@7.3.4", + "data": { + "version": "7.3.4", + "packageName": "semver", + "hash": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==" + } + }, + "npm:semver@7.5.0": { + "type": "npm", + "name": "npm:semver@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "semver", + "hash": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==" + } + }, + "npm:semver@7.5.4": { + "type": "npm", + "name": "npm:semver@7.5.4", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:semver@5.7.1": { + "type": "npm", + "name": "npm:semver@5.7.1", + "data": { + "version": "5.7.1", + "packageName": "semver", + "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.4.0", + "packageName": "semver", + "hash": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==" + } + }, + "npm:semver@7.5.1": { + "type": "npm", + "name": "npm:semver@7.5.1", + "data": { + "version": "7.5.1", + "packageName": "semver", + "hash": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==" + } + }, + "npm:@babel/generator@7.22.5": { + "type": "npm", + "name": "npm:@babel/generator@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/generator", + "hash": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.21.4", + "packageName": "@babel/generator", + "hash": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==" + } + }, + "npm:@angular/core": { + "type": "npm", + "name": "npm:@angular/core", + "data": { + "version": "16.0.6", + "packageName": "@angular/core", + "hash": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==" + } + }, + "npm:@angular/forms": { + "type": "npm", + "name": "npm:@angular/forms", + "data": { + "version": "16.0.6", + "packageName": "@angular/forms", + "hash": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==" + } + }, + "npm:@angular/language-service": { + "type": "npm", + "name": "npm:@angular/language-service", + "data": { + "version": "16.0.6", + "packageName": "@angular/language-service", + "hash": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==" + } + }, + "npm:@angular/platform-browser": { + "type": "npm", + "name": "npm:@angular/platform-browser", + "data": { + "version": "16.0.6", + "packageName": "@angular/platform-browser", + "hash": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==" + } + }, + "npm:@angular/platform-browser-dynamic": { + "type": "npm", + "name": "npm:@angular/platform-browser-dynamic", + "data": { + "version": "16.0.6", + "packageName": "@angular/platform-browser-dynamic", + "hash": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==" + } + }, + "npm:@angular/router": { + "type": "npm", + "name": "npm:@angular/router", + "data": { + "version": "16.0.6", + "packageName": "@angular/router", + "hash": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==" + } + }, + "npm:@assemblyscript/loader": { + "type": "npm", + "name": "npm:@assemblyscript/loader", + "data": { + "version": "0.10.1", + "packageName": "@assemblyscript/loader", + "hash": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.23.5", + "packageName": "@babel/code-frame", + "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:chalk@5.2.0": { + "type": "npm", + "name": "npm:chalk@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "chalk", + "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" + } + }, + "npm:chalk@5.3.0": { + "type": "npm", + "name": "npm:chalk@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp@5.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color@7.2.0": { + "type": "npm", + "name": "npm:supports-color@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-color@9.4.0": { + "type": "npm", + "name": "npm:supports-color@9.4.0", + "data": { + "version": "9.4.0", + "packageName": "supports-color", + "hash": "4124946643497815937" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.22.5", + "packageName": "@babel/compat-data", + "hash": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==" + } + }, + "npm:@babel/helper-annotate-as-pure@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==" + } + }, + "npm:@babel/helper-split-export-declaration@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.3.3", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-function-name", + "hash": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==" + } + }, + "npm:@babel/template@7.22.5": { + "type": "npm", + "name": "npm:@babel/template@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/template", + "hash": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.20.7", + "packageName": "@babel/template", + "hash": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helpers", + "hash": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.23.4", + "packageName": "@babel/highlight", + "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.22.5", + "packageName": "@babel/parser", + "hash": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==" + } + }, + "npm:@babel/plugin-proposal-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-async-generator-functions", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-async-generator-functions", + "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" + } + }, + "npm:@babel/plugin-proposal-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:@babel/plugin-proposal-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-static-block", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-class-static-block", + "hash": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==" + } + }, + "npm:@babel/plugin-proposal-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-dynamic-import", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-dynamic-import", + "hash": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==" + } + }, + "npm:@babel/plugin-proposal-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-namespace-from", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-proposal-export-namespace-from", + "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" + } + }, + "npm:@babel/plugin-proposal-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-json-strings", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-json-strings", + "hash": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==" + } + }, + "npm:@babel/plugin-proposal-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-logical-assignment-operators", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-logical-assignment-operators", + "hash": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:@babel/plugin-proposal-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-numeric-separator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-numeric-separator", + "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" + } + }, + "npm:@babel/plugin-proposal-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-catch-binding", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-optional-catch-binding", + "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@babel/plugin-proposal-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-methods", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-private-methods", + "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.11", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==" + } + }, + "npm:@babel/plugin-proposal-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-unicode-property-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-unicode-property-regex", + "hash": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.21.4", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.21.4", + "packageName": "@babel/preset-env", + "hash": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.5", + "packageName": "@babel/preset-modules", + "hash": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/preset-typescript", + "hash": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.21.0", + "packageName": "@babel/runtime", + "hash": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.22.5", + "packageName": "@babel/traverse", + "hash": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.22.5", + "packageName": "@babel/types", + "hash": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.18", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==" + } + }, + "npm:@cypress/request": { + "type": "npm", + "name": "npm:@cypress/request", + "data": { + "version": "2.88.11", + "packageName": "@cypress/request", + "hash": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==" + } + }, + "npm:@cypress/xvfb": { + "type": "npm", + "name": "npm:@cypress/xvfb", + "data": { + "version": "1.2.4", + "packageName": "@cypress/xvfb", + "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@3.1.0": { + "type": "npm", + "name": "npm:debug@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "debug", + "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.7", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" + } + }, + "npm:@esbuild/android-arm": { + "type": "npm", + "name": "npm:@esbuild/android-arm", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/android-arm", + "hash": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==" + } + }, + "npm:@esbuild/android-arm64": { + "type": "npm", + "name": "npm:@esbuild/android-arm64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==" + } + }, + "npm:@esbuild/android-x64": { + "type": "npm", + "name": "npm:@esbuild/android-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/android-x64", + "hash": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==" + } + }, + "npm:@esbuild/darwin-arm64": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==" + } + }, + "npm:@esbuild/darwin-x64": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==" + } + }, + "npm:@esbuild/freebsd-arm64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==" + } + }, + "npm:@esbuild/freebsd-x64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==" + } + }, + "npm:@esbuild/linux-arm": { + "type": "npm", + "name": "npm:@esbuild/linux-arm", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==" + } + }, + "npm:@esbuild/linux-arm64": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==" + } + }, + "npm:@esbuild/linux-ia32": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==" + } + }, + "npm:@esbuild/linux-loong64": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==" + } + }, + "npm:@esbuild/linux-mips64el": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==" + } + }, + "npm:@esbuild/linux-ppc64": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==" + } + }, + "npm:@esbuild/linux-riscv64": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==" + } + }, + "npm:@esbuild/linux-s390x": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==" + } + }, + "npm:@esbuild/netbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==" + } + }, + "npm:@esbuild/openbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==" + } + }, + "npm:@esbuild/sunos-x64": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==" + } + }, + "npm:@esbuild/win32-arm64": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==" + } + }, + "npm:@esbuild/win32-ia32": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.17.18", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.5.1", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "1.4.1", + "packageName": "@eslint/eslintrc", + "hash": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==" + } + }, + "npm:@eslint/eslintrc@2.1.0": { + "type": "npm", + "name": "npm:@eslint/eslintrc@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@eslint/eslintrc", + "hash": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==" + } + }, + "npm:ajv@6.12.6": { + "type": "npm", + "name": "npm:ajv@6.12.6", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:argparse@2.0.1": { + "type": "npm", + "name": "npm:argparse@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:globals@13.20.0": { + "type": "npm", + "name": "npm:globals@13.20.0", + "data": { + "version": "13.20.0", + "packageName": "globals", + "hash": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:js-yaml@4.1.0": { + "type": "npm", + "name": "npm:js-yaml@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:minimatch@3.1.2": { + "type": "npm", + "name": "npm:minimatch@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:minimatch@9.0.2": { + "type": "npm", + "name": "npm:minimatch@9.0.2", + "data": { + "version": "9.0.2", + "packageName": "minimatch", + "hash": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "17406413972526757349" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@4.8.3": { + "type": "npm", + "name": "npm:type-fest@4.8.3", + "data": { + "version": "4.8.3", + "packageName": "type-fest", + "hash": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==" + } + }, + "npm:type-fest@1.4.0": { + "type": "npm", + "name": "npm:type-fest@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:type-fest@3.13.1": { + "type": "npm", + "name": "npm:type-fest@3.13.1", + "data": { + "version": "3.13.1", + "packageName": "type-fest", + "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" + } + }, + "npm:type-fest@0.3.1": { + "type": "npm", + "name": "npm:type-fest@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "type-fest", + "hash": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + } + }, + "npm:type-fest@2.19.0": { + "type": "npm", + "name": "npm:type-fest@2.19.0", + "data": { + "version": "2.19.0", + "packageName": "type-fest", + "hash": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "8.44.0", + "packageName": "@eslint/js", + "hash": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.9.5", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==" + } + }, + "npm:@humanwhocodes/config-array@0.11.10": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array@0.11.10", + "data": { + "version": "0.11.10", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "1.2.1", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles@4.3.0": { + "type": "npm", + "name": "npm:ansi-styles@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "13543247940053143024" + } + }, + "npm:strip-ansi@7.1.0": { + "type": "npm", + "name": "npm:strip-ansi@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "strip-ansi", + "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "11479311392825997119" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.5.0", + "packageName": "@jest/console", + "hash": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.5.0", + "packageName": "@jest/core", + "hash": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.5.0", + "packageName": "@jest/environment", + "hash": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.5.0", + "packageName": "@jest/expect", + "hash": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.5.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.5.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.5.0", + "packageName": "@jest/globals", + "hash": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.5.0", + "packageName": "@jest/reporters", + "hash": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==" + } + }, + "npm:glob@7.2.3": { + "type": "npm", + "name": "npm:glob@7.2.3", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:glob@10.3.1": { + "type": "npm", + "name": "npm:glob@10.3.1", + "data": { + "version": "10.3.1", + "packageName": "glob", + "hash": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:glob@6.0.4": { + "type": "npm", + "name": "npm:glob@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "glob", + "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" + } + }, + "npm:glob@10.3.10": { + "type": "npm", + "name": "npm:glob@10.3.10", + "data": { + "version": "10.3.10", + "packageName": "glob", + "hash": "12567742820797338981" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.4.3", + "packageName": "@jest/schemas", + "hash": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.4.3", + "packageName": "@jest/source-map", + "hash": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.5.0", + "packageName": "@jest/test-result", + "hash": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.5.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.5.0", + "packageName": "@jest/transform", + "hash": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.9.0", + "packageName": "convert-source-map", + "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.5.0", + "packageName": "@jest/types", + "hash": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.0", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.4", + "packageName": "@jridgewell/source-map", + "hash": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:@jridgewell/sourcemap-codec@1.4.14": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec@1.4.14", + "data": { + "version": "1.4.14", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:@mole-inc/bin-wrapper": { + "type": "npm", + "name": "npm:@mole-inc/bin-wrapper", + "data": { + "version": "8.0.1", + "packageName": "@mole-inc/bin-wrapper", + "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" + } + }, + "npm:@ngrx/store": { + "type": "npm", + "name": "npm:@ngrx/store", + "data": { + "version": "16.0.1", + "packageName": "@ngrx/store", + "hash": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==" + } + }, + "npm:@ngtools/webpack": { + "type": "npm", + "name": "npm:@ngtools/webpack", + "data": { + "version": "16.0.6", + "packageName": "@ngtools/webpack", + "hash": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "4.1.0", + "packageName": "@npmcli/git", + "hash": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==" + } + }, + "npm:@npmcli/git@5.0.3": { + "type": "npm", + "name": "npm:@npmcli/git@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "@npmcli/git", + "hash": "14457203281191881700" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:lru-cache@6.0.0": { + "type": "npm", + "name": "npm:lru-cache@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@10.1.0": { + "type": "npm", + "name": "npm:lru-cache@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "lru-cache", + "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" + } + }, + "npm:lru-cache@4.1.5": { + "type": "npm", + "name": "npm:lru-cache@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "lru-cache", + "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache@10.0.0": { + "type": "npm", + "name": "npm:lru-cache@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "lru-cache", + "hash": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==" + } + }, + "npm:which@3.0.1": { + "type": "npm", + "name": "npm:which@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "which", + "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "228540766434988782" + } + }, + "npm:which@4.0.0": { + "type": "npm", + "name": "npm:which@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "which", + "hash": "18425288085915951735" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" + } + }, + "npm:@npmcli/promise-spawn@7.0.0": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "@npmcli/promise-spawn", + "hash": "10334938519278605561" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:@npmcli/run-script@7.0.2": { + "type": "npm", + "name": "npm:@npmcli/run-script@7.0.2", + "data": { + "version": "7.0.2", + "packageName": "@npmcli/run-script", + "hash": "10417945681139959217" + } + }, + "npm:@nrwl/angular": { + "type": "npm", + "name": "npm:@nrwl/angular", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/angular", + "hash": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==" + } + }, + "npm:@nrwl/cypress": { + "type": "npm", + "name": "npm:@nrwl/cypress", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/cypress", + "hash": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/devkit", + "hash": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==" + } + }, + "npm:@nrwl/devkit@16.1.1": { + "type": "npm", + "name": "npm:@nrwl/devkit@16.1.1", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/devkit", + "hash": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==" + } + }, + "npm:@nrwl/devkit@16.5.0": { + "type": "npm", + "name": "npm:@nrwl/devkit@16.5.0", + "data": { + "version": "16.5.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==" + } + }, + "npm:@nrwl/eslint-plugin-nx": { + "type": "npm", + "name": "npm:@nrwl/eslint-plugin-nx", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/eslint-plugin-nx", + "hash": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==" + } + }, + "npm:@nrwl/jest": { + "type": "npm", + "name": "npm:@nrwl/jest", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/jest", + "hash": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==" + } + }, + "npm:@nrwl/js": { + "type": "npm", + "name": "npm:@nrwl/js", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/js", + "hash": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==" + } + }, + "npm:@nrwl/js@16.1.1": { + "type": "npm", + "name": "npm:@nrwl/js@16.1.1", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/js", + "hash": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==" + } + }, + "npm:@nrwl/linter": { + "type": "npm", + "name": "npm:@nrwl/linter", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/linter", + "hash": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==" + } + }, + "npm:@nrwl/linter@16.4.2": { + "type": "npm", + "name": "npm:@nrwl/linter@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/linter", + "hash": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==" + } + }, + "npm:@nrwl/nx-plugin": { + "type": "npm", + "name": "npm:@nrwl/nx-plugin", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/nx-plugin", + "hash": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/tao", + "hash": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==" + } + }, + "npm:@nrwl/tao@16.4.2": { + "type": "npm", + "name": "npm:@nrwl/tao@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/tao", + "hash": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==" + } + }, + "npm:@nrwl/web": { + "type": "npm", + "name": "npm:@nrwl/web", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/web", + "hash": "sha512-WgD6G+Cl54/RywzYTnphQCQuNdDrGGdivcyd3AZey9yA1Avvi/CI5+mU75pQAMrqsb2oxylZVk6lnN5iLJcAwA==" + } + }, + "npm:@nrwl/webpack": { + "type": "npm", + "name": "npm:@nrwl/webpack", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/webpack", + "hash": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==" + } + }, + "npm:@nrwl/workspace": { + "type": "npm", + "name": "npm:@nrwl/workspace", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/workspace", + "hash": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==" + } + }, + "npm:@nrwl/workspace@16.4.2": { + "type": "npm", + "name": "npm:@nrwl/workspace@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nrwl/workspace", + "hash": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==" + } + }, + "npm:@nx/angular": { + "type": "npm", + "name": "npm:@nx/angular", + "data": { + "version": "16.4.2", + "packageName": "@nx/angular", + "hash": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==" + } + }, + "npm:@nx/linter@16.4.2": { + "type": "npm", + "name": "npm:@nx/linter@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/linter", + "hash": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==" + } + }, + "npm:@nx/linter": { + "type": "npm", + "name": "npm:@nx/linter", + "data": { + "version": "16.1.1", + "packageName": "@nx/linter", + "hash": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==" + } + }, + "npm:@nx/nx-darwin-arm64@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==" + } + }, + "npm:@nx/nx-darwin-x64@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==" + } + }, + "npm:@nx/nx-win32-x64-msvc@16.4.2": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "16.1.1", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==" + } + }, + "npm:@nx/workspace@16.4.2": { + "type": "npm", + "name": "npm:@nx/workspace@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "@nx/workspace", + "hash": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==" + } + }, + "npm:@nx/workspace": { + "type": "npm", + "name": "npm:@nx/workspace", + "data": { + "version": "16.1.1", + "packageName": "@nx/workspace", + "hash": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==" + } + }, + "npm:@yarnpkg/parsers@3.0.0-rc.46": { + "type": "npm", + "name": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.48", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==" + } + }, + "npm:magic-string@0.26.7": { + "type": "npm", + "name": "npm:magic-string@0.26.7", + "data": { + "version": "0.26.7", + "packageName": "magic-string", + "hash": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.0", + "packageName": "magic-string", + "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" + } + }, + "npm:nx@16.4.2": { + "type": "npm", + "name": "npm:nx@16.4.2", + "data": { + "version": "16.4.2", + "packageName": "nx", + "hash": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "16.1.1", + "packageName": "nx", + "hash": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==" + } + }, + "npm:webpack-merge@5.7.3": { + "type": "npm", + "name": "npm:webpack-merge@5.7.3", + "data": { + "version": "5.7.3", + "packageName": "webpack-merge", + "hash": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.8.0", + "packageName": "webpack-merge", + "hash": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==" + } + }, + "npm:yallist@4.0.0": { + "type": "npm", + "name": "npm:yallist@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yallist@2.1.2": { + "type": "npm", + "name": "npm:yallist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "yallist", + "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:@nx/cypress": { + "type": "npm", + "name": "npm:@nx/cypress", + "data": { + "version": "16.4.2", + "packageName": "@nx/cypress", + "hash": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "16.4.2", + "packageName": "@nx/devkit", + "hash": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==" + } + }, + "npm:@nx/devkit@16.1.1": { + "type": "npm", + "name": "npm:@nx/devkit@16.1.1", + "data": { + "version": "16.1.1", + "packageName": "@nx/devkit", + "hash": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==" + } + }, + "npm:@nx/devkit@16.5.0": { + "type": "npm", + "name": "npm:@nx/devkit@16.5.0", + "data": { + "version": "16.5.0", + "packageName": "@nx/devkit", + "hash": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==" + } + }, + "npm:@nx/eslint-plugin": { + "type": "npm", + "name": "npm:@nx/eslint-plugin", + "data": { + "version": "16.1.1", + "packageName": "@nx/eslint-plugin", + "hash": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==" + } + }, + "npm:@nx/js@16.1.1": { + "type": "npm", + "name": "npm:@nx/js@16.1.1", + "data": { + "version": "16.1.1", + "packageName": "@nx/js", + "hash": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==" + } + }, + "npm:@nx/js": { + "type": "npm", + "name": "npm:@nx/js", + "data": { + "version": "16.4.2", + "packageName": "@nx/js", + "hash": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==" + } + }, + "npm:source-map@0.6.1": { + "type": "npm", + "name": "npm:source-map@0.6.1", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:@nx/jest": { + "type": "npm", + "name": "npm:@nx/jest", + "data": { + "version": "16.4.2", + "packageName": "@nx/jest", + "hash": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "16.4.2", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==" + } + }, + "npm:@nx/plugin": { + "type": "npm", + "name": "npm:@nx/plugin", + "data": { + "version": "16.4.2", + "packageName": "@nx/plugin", + "hash": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==" + } + }, + "npm:@nx/web": { + "type": "npm", + "name": "npm:@nx/web", + "data": { + "version": "16.4.2", + "packageName": "@nx/web", + "hash": "sha512-rjARmJESboplfa3kI0ncUMBKJGJO1cV9Rsp1HzIeAAq7Zo614lPnUA/lE6Q+lD+GbfJu0y5t7ENmQv2E/61Rxw==" + } + }, + "npm:@nx/webpack": { + "type": "npm", + "name": "npm:@nx/webpack", + "data": { + "version": "16.4.2", + "packageName": "@nx/webpack", + "hash": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==" + } + }, + "npm:array-union@3.0.1": { + "type": "npm", + "name": "npm:array-union@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:copy-webpack-plugin@10.2.4": { + "type": "npm", + "name": "npm:copy-webpack-plugin@10.2.4", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "11.0.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" + } + }, + "npm:cosmiconfig@7.1.0": { + "type": "npm", + "name": "npm:cosmiconfig@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "cosmiconfig", + "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:cosmiconfig@8.2.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.2.0", + "data": { + "version": "8.2.0", + "packageName": "cosmiconfig", + "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" + } + }, + "npm:cosmiconfig@8.3.6": { + "type": "npm", + "name": "npm:cosmiconfig@8.3.6", + "data": { + "version": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:globby@12.2.0": { + "type": "npm", + "name": "npm:globby@12.2.0", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:globby@14.0.0": { + "type": "npm", + "name": "npm:globby@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "globby", + "hash": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==" + } + }, + "npm:globby@13.2.1": { + "type": "npm", + "name": "npm:globby@13.2.1", + "data": { + "version": "13.2.1", + "packageName": "globby", + "hash": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:iconv-lite@0.6.3": { + "type": "npm", + "name": "npm:iconv-lite@0.6.3", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:loader-utils@2.0.4": { + "type": "npm", + "name": "npm:loader-utils@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "3.2.1", + "packageName": "loader-utils", + "hash": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" + } + }, + "npm:mini-css-extract-plugin@2.4.7": { + "type": "npm", + "name": "npm:mini-css-extract-plugin@2.4.7", + "data": { + "version": "2.4.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.7.5", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==" + } + }, + "npm:parse5@4.0.0": { + "type": "npm", + "name": "npm:parse5@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse5", + "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + } + }, + "npm:parse5@6.0.1": { + "type": "npm", + "name": "npm:parse5@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "parse5", + "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:postcss-loader@6.2.1": { + "type": "npm", + "name": "npm:postcss-loader@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "postcss-loader", + "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "7.2.4", + "packageName": "postcss-loader", + "hash": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==" + } + }, + "npm:sass-loader@12.6.0": { + "type": "npm", + "name": "npm:sass-loader@12.6.0", + "data": { + "version": "12.6.0", + "packageName": "sass-loader", + "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "13.2.2", + "packageName": "sass-loader", + "hash": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:source-map-loader@3.0.2": { + "type": "npm", + "name": "npm:source-map-loader@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "source-map-loader", + "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "4.0.1", + "packageName": "source-map-loader", + "hash": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "4.0.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "5.0.2", + "packageName": "@octokit/core", + "hash": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "9.0.4", + "packageName": "@octokit/endpoint", + "hash": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "7.0.2", + "packageName": "@octokit/graphql", + "hash": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "19.1.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "9.1.5", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==" + } + }, + "npm:@octokit/plugin-retry": { + "type": "npm", + "name": "npm:@octokit/plugin-retry", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-retry", + "hash": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==" + } + }, + "npm:@octokit/plugin-throttling": { + "type": "npm", + "name": "npm:@octokit/plugin-throttling", + "data": { + "version": "8.1.3", + "packageName": "@octokit/plugin-throttling", + "hash": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "8.1.6", + "packageName": "@octokit/request", + "hash": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "5.0.1", + "packageName": "@octokit/request-error", + "hash": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "12.4.0", + "packageName": "@octokit/types", + "hash": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==" + } + }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.0.4", + "packageName": "@parcel/watcher", + "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@pnpm/config.env-replace": { + "type": "npm", + "name": "npm:@pnpm/config.env-replace", + "data": { + "version": "1.1.0", + "packageName": "@pnpm/config.env-replace", + "hash": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==" + } + }, + "npm:@pnpm/network.ca-file": { + "type": "npm", + "name": "npm:@pnpm/network.ca-file", + "data": { + "version": "1.0.2", + "packageName": "@pnpm/network.ca-file", + "hash": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==" + } + }, + "npm:graceful-fs@4.2.10": { + "type": "npm", + "name": "npm:graceful-fs@4.2.10", + "data": { + "version": "4.2.10", + "packageName": "graceful-fs", + "hash": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:@pnpm/npm-conf": { + "type": "npm", + "name": "npm:@pnpm/npm-conf", + "data": { + "version": "2.2.2", + "packageName": "@pnpm/npm-conf", + "hash": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==" + } + }, + "npm:@schematics/angular": { + "type": "npm", + "name": "npm:@schematics/angular", + "data": { + "version": "16.0.6", + "packageName": "@schematics/angular", + "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" + } + }, + "npm:@semantic-release/changelog": { + "type": "npm", + "name": "npm:@semantic-release/changelog", + "data": { + "version": "6.0.3", + "packageName": "@semantic-release/changelog", + "hash": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==" + } + }, + "npm:@semantic-release/commit-analyzer": { + "type": "npm", + "name": "npm:@semantic-release/commit-analyzer", + "data": { + "version": "11.1.0", + "packageName": "@semantic-release/commit-analyzer", + "hash": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==" + } + }, + "npm:@semantic-release/error": { + "type": "npm", + "name": "npm:@semantic-release/error", + "data": { + "version": "3.0.0", + "packageName": "@semantic-release/error", + "hash": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==" + } + }, + "npm:@semantic-release/error@4.0.0": { + "type": "npm", + "name": "npm:@semantic-release/error@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "@semantic-release/error", + "hash": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==" + } + }, + "npm:@semantic-release/exec": { + "type": "npm", + "name": "npm:@semantic-release/exec", + "data": { + "version": "6.0.3", + "packageName": "@semantic-release/exec", + "hash": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==" + } + }, + "npm:execa@5.1.1": { + "type": "npm", + "name": "npm:execa@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:execa@8.0.1": { + "type": "npm", + "name": "npm:execa@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "execa", + "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" + } + }, + "npm:execa@4.1.0": { + "type": "npm", + "name": "npm:execa@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "execa", + "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "0.7.0", + "packageName": "execa", + "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" + } + }, + "npm:execa@7.1.1": { + "type": "npm", + "name": "npm:execa@7.1.1", + "data": { + "version": "7.1.1", + "packageName": "execa", + "hash": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==" + } + }, + "npm:get-stream@6.0.1": { + "type": "npm", + "name": "npm:get-stream@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-stream@8.0.1": { + "type": "npm", + "name": "npm:get-stream@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "get-stream", + "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" + } + }, + "npm:get-stream@7.0.1": { + "type": "npm", + "name": "npm:get-stream@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "get-stream", + "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "3.0.0", + "packageName": "get-stream", + "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + } + }, + "npm:is-stream@2.0.1": { + "type": "npm", + "name": "npm:is-stream@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + } + }, + "npm:@semantic-release/git": { + "type": "npm", + "name": "npm:@semantic-release/git", + "data": { + "version": "10.0.1", + "packageName": "@semantic-release/git", + "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" + } + }, + "npm:@semantic-release/github": { + "type": "npm", + "name": "npm:@semantic-release/github", + "data": { + "version": "9.2.5", + "packageName": "@semantic-release/github", + "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" + } + }, + "npm:agent-base@7.1.0": { + "type": "npm", + "name": "npm:agent-base@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "agent-base", + "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:aggregate-error@5.0.0": { + "type": "npm", + "name": "npm:aggregate-error@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "aggregate-error", + "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:aggregate-error@4.0.1": { + "type": "npm", + "name": "npm:aggregate-error@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "aggregate-error", + "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" + } + }, + "npm:clean-stack@5.2.0": { + "type": "npm", + "name": "npm:clean-stack@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "clean-stack", + "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clean-stack@4.2.0": { + "type": "npm", + "name": "npm:clean-stack@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "clean-stack", + "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" + } + }, + "npm:fast-glob@3.3.2": { + "type": "npm", + "name": "npm:fast-glob@3.3.2", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "npm:fast-glob@3.3.0": { + "type": "npm", + "name": "npm:fast-glob@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "fast-glob", + "hash": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:http-proxy-agent@7.0.0": { + "type": "npm", + "name": "npm:http-proxy-agent@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:https-proxy-agent@7.0.2": { + "type": "npm", + "name": "npm:https-proxy-agent@7.0.2", + "data": { + "version": "7.0.2", + "packageName": "https-proxy-agent", + "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:mime@4.0.1": { + "type": "npm", + "name": "npm:mime@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "mime", + "hash": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==" + } + }, + "npm:mime@2.6.0": { + "type": "npm", + "name": "npm:mime@2.6.0", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@3.0.0": { + "type": "npm", + "name": "npm:mime@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "mime", + "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + }, + "npm:path-type@5.0.0": { + "type": "npm", + "name": "npm:path-type@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-type", + "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:url-join@5.0.0": { + "type": "npm", + "name": "npm:url-join@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "url-join", + "hash": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:@semantic-release/npm": { + "type": "npm", + "name": "npm:@semantic-release/npm", + "data": { + "version": "11.0.2", + "packageName": "@semantic-release/npm", + "hash": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==" + } + }, + "npm:hosted-git-info@7.0.1": { + "type": "npm", + "name": "npm:hosted-git-info@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "hosted-git-info", + "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:human-signals@5.0.0": { + "type": "npm", + "name": "npm:human-signals@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "human-signals", + "hash": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" + } + }, + "npm:human-signals@1.1.1": { + "type": "npm", + "name": "npm:human-signals@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:normalize-package-data@6.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:normalize-package-data@2.5.0": { + "type": "npm", + "name": "npm:normalize-package-data@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:normalize-url@8.0.0": { + "type": "npm", + "name": "npm:normalize-url@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "normalize-url", + "hash": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-run-path@5.1.0": { + "type": "npm", + "name": "npm:npm-run-path@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "npm-run-path", + "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:parse-json@8.1.0": { + "type": "npm", + "name": "npm:parse-json@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "parse-json", + "hash": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-key@2.0.1": { + "type": "npm", + "name": "npm:path-key@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "15700571927724585982" + } + }, + "npm:read-pkg@9.0.1": { + "type": "npm", + "name": "npm:read-pkg@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "read-pkg", + "hash": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" + } + }, + "npm:signal-exit@4.1.0": { + "type": "npm", + "name": "npm:signal-exit@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:signal-exit@4.0.2": { + "type": "npm", + "name": "npm:signal-exit@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "signal-exit", + "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:strip-final-newline@3.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:@semantic-release/release-notes-generator": { + "type": "npm", + "name": "npm:@semantic-release/release-notes-generator", + "data": { + "version": "12.1.0", + "packageName": "@semantic-release/release-notes-generator", + "hash": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.1.0", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==" + } + }, + "npm:@sigstore/protobuf-specs@0.2.1": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs@0.2.1", + "data": { + "version": "0.2.1", + "packageName": "@sigstore/protobuf-specs", + "hash": "7667554126342576695" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.2", + "packageName": "@sigstore/tuf", + "hash": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==" + } + }, + "npm:@sigstore/tuf@2.2.0": { + "type": "npm", + "name": "npm:@sigstore/tuf@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "@sigstore/tuf", + "hash": "1725181910239076121" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.25.24", + "packageName": "@sinclair/typebox", + "hash": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.6.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" + } + }, + "npm:@sindresorhus/merge-streams": { + "type": "npm", + "name": "npm:@sindresorhus/merge-streams", + "data": { + "version": "1.0.0", + "packageName": "@sindresorhus/merge-streams", + "hash": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@swc-node/core": { + "type": "npm", + "name": "npm:@swc-node/core", + "data": { + "version": "1.10.4", + "packageName": "@swc-node/core", + "hash": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==" + } + }, + "npm:@swc-node/register": { + "type": "npm", + "name": "npm:@swc-node/register", + "data": { + "version": "1.4.2", + "packageName": "@swc-node/register", + "hash": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==" + } + }, + "npm:typescript@4.9.5": { + "type": "npm", + "name": "npm:typescript@4.9.5", + "data": { + "version": "4.9.5", + "packageName": "typescript", + "hash": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "5.0.4", + "packageName": "typescript", + "hash": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==" + } + }, + "npm:@swc-node/sourcemap-support": { + "type": "npm", + "name": "npm:@swc-node/sourcemap-support", + "data": { + "version": "0.1.11", + "packageName": "@swc-node/sourcemap-support", + "hash": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==" + } + }, + "npm:@swc/cli": { + "type": "npm", + "name": "npm:@swc/cli", + "data": { + "version": "0.1.62", + "packageName": "@swc/cli", + "hash": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==" + } + }, + "npm:@swc/core": { + "type": "npm", + "name": "npm:@swc/core", + "data": { + "version": "1.3.67", + "packageName": "@swc/core", + "hash": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==" + } + }, + "npm:@swc/core-darwin-arm64": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==" + } + }, + "npm:@swc/core-darwin-x64": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==" + } + }, + "npm:@swc/core-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==" + } + }, + "npm:@swc/core-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==" + } + }, + "npm:@swc/core-linux-arm64-musl": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==" + } + }, + "npm:@swc/core-linux-x64-gnu": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==" + } + }, + "npm:@swc/core-linux-x64-musl": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==" + } + }, + "npm:@swc/core-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==" + } + }, + "npm:@swc/core-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==" + } + }, + "npm:@swc/core-win32-x64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc", + "data": { + "version": "1.3.67", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==" + } + }, + "npm:@swc/helpers": { + "type": "npm", + "name": "npm:@swc/helpers", + "data": { + "version": "0.5.1", + "packageName": "@swc/helpers", + "hash": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.6", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" + } + }, + "npm:@tokenizer/token": { + "type": "npm", + "name": "npm:@tokenizer/token", + "data": { + "version": "0.3.0", + "packageName": "@tokenizer/token", + "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node10", + "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.11", + "packageName": "@tsconfig/node12", + "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node14", + "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.4", + "packageName": "@tsconfig/node16", + "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "1.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" + } + }, + "npm:@tufjs/canonical-json@2.0.0": { + "type": "npm", + "name": "npm:@tufjs/canonical-json@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "11097475440325400855" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:@tufjs/models@2.0.0": { + "type": "npm", + "name": "npm:@tufjs/models@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@tufjs/models", + "hash": "9206070781902678523" + } + }, + "npm:brace-expansion@2.0.1": { + "type": "npm", + "name": "npm:brace-expansion@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.1", + "packageName": "@types/babel__core", + "hash": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.4", + "packageName": "@types/babel__generator", + "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.1", + "packageName": "@types/babel__template", + "hash": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.1", + "packageName": "@types/babel__traverse", + "hash": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.2", + "packageName": "@types/body-parser", + "hash": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.10", + "packageName": "@types/bonjour", + "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.3", + "packageName": "@types/cacheable-request", + "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.35", + "packageName": "@types/connect", + "hash": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.0", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "8.40.2", + "packageName": "@types/eslint", + "hash": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.4", + "packageName": "@types/eslint-scope", + "hash": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.1", + "packageName": "@types/estree", + "hash": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.17", + "packageName": "@types/express", + "hash": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.35", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.6", + "packageName": "@types/graceful-fs", + "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.1", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.1", + "packageName": "@types/http-errors", + "hash": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.11", + "packageName": "@types/http-proxy", + "hash": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==" + } + }, + "npm:@types/inquirer": { + "type": "npm", + "name": "npm:@types/inquirer", + "data": { + "version": "9.0.3", + "packageName": "@types/inquirer", + "hash": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.4", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.0", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.1", + "packageName": "@types/istanbul-reports", + "hash": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.2", + "packageName": "@types/jest", + "hash": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.12", + "packageName": "@types/json-schema", + "hash": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.4", + "packageName": "@types/keyv", + "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.195", + "packageName": "@types/lodash", + "hash": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.2", + "packageName": "@types/mime", + "hash": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.7.1", + "packageName": "@types/node", + "hash": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" + } + }, + "npm:@types/node@14.18.53": { + "type": "npm", + "name": "npm:@types/node@14.18.53", + "data": { + "version": "14.18.53", + "packageName": "@types/node", + "hash": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.4", + "packageName": "@types/normalize-package-data", + "hash": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.0", + "packageName": "@types/parse-json", + "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + } + }, + "npm:@types/prettier": { + "type": "npm", + "name": "npm:@types/prettier", + "data": { + "version": "2.7.3", + "packageName": "@types/prettier", + "hash": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.7", + "packageName": "@types/qs", + "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.4", + "packageName": "@types/range-parser", + "hash": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.0", + "packageName": "@types/responselike", + "hash": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.5.0", + "packageName": "@types/semver", + "hash": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.1", + "packageName": "@types/send", + "hash": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.1", + "packageName": "@types/serve-index", + "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.2", + "packageName": "@types/serve-static", + "hash": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.1", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" + } + }, + "npm:@types/sizzle": { + "type": "npm", + "name": "npm:@types/sizzle", + "data": { + "version": "2.3.3", + "packageName": "@types/sizzle", + "hash": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.33", + "packageName": "@types/sockjs", + "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + } + }, + "npm:@types/through": { + "type": "npm", + "name": "npm:@types/through", + "data": { + "version": "0.0.30", + "packageName": "@types/through", + "hash": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.2", + "packageName": "@types/tough-cookie", + "hash": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.5", + "packageName": "@types/ws", + "hash": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.24", + "packageName": "@types/yargs", + "hash": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.0", + "packageName": "@types/yargs-parser", + "hash": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.10.0", + "packageName": "@types/yauzl", + "hash": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==" + } + }, + "npm:@typescript-eslint/type-utils@5.60.1": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils@5.60.1", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "5.59.7", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==" + } + }, + "npm:@typescript-eslint/utils@5.60.1": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@5.60.1", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "5.59.7", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==" + } + }, + "npm:eslint-scope@5.1.1": { + "type": "npm", + "name": "npm:eslint-scope@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "7.2.0", + "packageName": "eslint-scope", + "hash": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==" + } + }, + "npm:@typescript-eslint/scope-manager@5.59.7": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@5.59.7", + "data": { + "version": "5.59.7", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==" + } + }, + "npm:@typescript-eslint/types@5.59.7": { + "type": "npm", + "name": "npm:@typescript-eslint/types@5.59.7", + "data": { + "version": "5.59.7", + "packageName": "@typescript-eslint/types", + "hash": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==" + } + }, + "npm:@typescript-eslint/typescript-estree@5.59.7": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@5.59.7", + "data": { + "version": "5.59.7", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.59.7": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.59.7", + "data": { + "version": "5.59.7", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "5.60.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==" + } + }, + "npm:@verdaccio/commons-api": { + "type": "npm", + "name": "npm:@verdaccio/commons-api", + "data": { + "version": "10.2.0", + "packageName": "@verdaccio/commons-api", + "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" + } + }, + "npm:@verdaccio/config": { + "type": "npm", + "name": "npm:@verdaccio/config", + "data": { + "version": "6.0.0-6-next.71", + "packageName": "@verdaccio/config", + "hash": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==" + } + }, + "npm:@verdaccio/core": { + "type": "npm", + "name": "npm:@verdaccio/core", + "data": { + "version": "6.0.0-6-next.71", + "packageName": "@verdaccio/core", + "hash": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==" + } + }, + "npm:@verdaccio/file-locking": { + "type": "npm", + "name": "npm:@verdaccio/file-locking", + "data": { + "version": "10.3.1", + "packageName": "@verdaccio/file-locking", + "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" + } + }, + "npm:@verdaccio/file-locking@11.0.0-6-next.7": { + "type": "npm", + "name": "npm:@verdaccio/file-locking@11.0.0-6-next.7", + "data": { + "version": "11.0.0-6-next.7", + "packageName": "@verdaccio/file-locking", + "hash": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==" + } + }, + "npm:@verdaccio/local-storage": { + "type": "npm", + "name": "npm:@verdaccio/local-storage", + "data": { + "version": "10.3.3", + "packageName": "@verdaccio/local-storage", + "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:@verdaccio/logger-7": { + "type": "npm", + "name": "npm:@verdaccio/logger-7", + "data": { + "version": "6.0.0-6-next.16", + "packageName": "@verdaccio/logger-7", + "hash": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==" + } + }, + "npm:@verdaccio/logger-commons": { + "type": "npm", + "name": "npm:@verdaccio/logger-commons", + "data": { + "version": "6.0.0-6-next.39", + "packageName": "@verdaccio/logger-commons", + "hash": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==" + } + }, + "npm:@verdaccio/logger-prettify": { + "type": "npm", + "name": "npm:@verdaccio/logger-prettify", + "data": { + "version": "6.0.0-6-next.10", + "packageName": "@verdaccio/logger-prettify", + "hash": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==" + } + }, + "npm:dayjs@1.11.7": { + "type": "npm", + "name": "npm:dayjs@1.11.7", + "data": { + "version": "1.11.7", + "packageName": "dayjs", + "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.9", + "packageName": "dayjs", + "hash": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==" + } + }, + "npm:@verdaccio/middleware": { + "type": "npm", + "name": "npm:@verdaccio/middleware", + "data": { + "version": "6.0.0-6-next.50", + "packageName": "@verdaccio/middleware", + "hash": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==" + } + }, + "npm:@verdaccio/search": { + "type": "npm", + "name": "npm:@verdaccio/search", + "data": { + "version": "6.0.0-6-next.2", + "packageName": "@verdaccio/search", + "hash": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==" + } + }, + "npm:@verdaccio/signature": { + "type": "npm", + "name": "npm:@verdaccio/signature", + "data": { + "version": "6.0.0-6-next.2", + "packageName": "@verdaccio/signature", + "hash": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==" + } + }, + "npm:@verdaccio/streams": { + "type": "npm", + "name": "npm:@verdaccio/streams", + "data": { + "version": "10.2.1", + "packageName": "@verdaccio/streams", + "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" + } + }, + "npm:@verdaccio/tarball": { + "type": "npm", + "name": "npm:@verdaccio/tarball", + "data": { + "version": "11.0.0-6-next.40", + "packageName": "@verdaccio/tarball", + "hash": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==" + } + }, + "npm:@verdaccio/ui-theme": { + "type": "npm", + "name": "npm:@verdaccio/ui-theme", + "data": { + "version": "6.0.0-6-next.71", + "packageName": "@verdaccio/ui-theme", + "hash": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==" + } + }, + "npm:@verdaccio/url": { + "type": "npm", + "name": "npm:@verdaccio/url", + "data": { + "version": "11.0.0-6-next.37", + "packageName": "@verdaccio/url", + "hash": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==" + } + }, + "npm:@verdaccio/utils": { + "type": "npm", + "name": "npm:@verdaccio/utils", + "data": { + "version": "6.0.0-6-next.39", + "packageName": "@verdaccio/utils", + "hash": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==" + } + }, + "npm:@vitejs/plugin-basic-ssl": { + "type": "npm", + "name": "npm:@vitejs/plugin-basic-ssl", + "data": { + "version": "1.0.1", + "packageName": "@vitejs/plugin-basic-ssl", + "hash": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "1.1.1", + "packageName": "abbrev", + "hash": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + } + }, + "npm:abbrev@2.0.0": { + "type": "npm", + "name": "npm:abbrev@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "abbrev", + "hash": "8855624444442833710" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.9.0", + "packageName": "acorn", + "hash": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.2.0", + "packageName": "acorn-walk", + "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.2.2", + "packageName": "address", + "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" + } + }, + "npm:adjust-sourcemap-loader": { + "type": "npm", + "name": "npm:adjust-sourcemap-loader", + "data": { + "version": "4.0.0", + "packageName": "adjust-sourcemap-loader", + "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.3.0", + "packageName": "agentkeepalive", + "hash": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==" + } + }, + "npm:ajv-formats": { + "type": "npm", + "name": "npm:ajv-formats", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv-keywords@3.5.2": { + "type": "npm", + "name": "npm:ajv-keywords@3.5.2", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.3", + "packageName": "ansi-colors", + "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-red": { + "type": "npm", + "name": "npm:ansi-red", + "data": { + "version": "0.1.1", + "packageName": "ansi-red", + "hash": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==" + } + }, + "npm:ansi-wrap": { + "type": "npm", + "name": "npm:ansi-wrap", + "data": { + "version": "0.1.0", + "packageName": "ansi-wrap", + "hash": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==" + } + }, + "npm:ansicolors": { + "type": "npm", + "name": "npm:ansicolors", + "data": { + "version": "0.3.2", + "packageName": "ansicolors", + "hash": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:apache-md5": { + "type": "npm", + "name": "npm:apache-md5", + "data": { + "version": "1.1.8", + "packageName": "apache-md5", + "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" + } + }, + "npm:aproba": { + "type": "npm", + "name": "npm:aproba", + "data": { + "version": "2.0.0", + "packageName": "aproba", + "hash": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + } + }, + "npm:arch": { + "type": "npm", + "name": "npm:arch", + "data": { + "version": "2.2.0", + "packageName": "arch", + "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" + } + }, + "npm:are-we-there-yet": { + "type": "npm", + "name": "npm:are-we-there-yet", + "data": { + "version": "3.0.1", + "packageName": "are-we-there-yet", + "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" + } + }, + "npm:are-we-there-yet@4.0.1": { + "type": "npm", + "name": "npm:are-we-there-yet@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "are-we-there-yet", + "hash": "2067525616894023226" + } + }, + "npm:readable-stream@3.6.2": { + "type": "npm", + "name": "npm:readable-stream@3.6.2", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readable-stream@4.4.2": { + "type": "npm", + "name": "npm:readable-stream@4.4.2", + "data": { + "version": "4.4.2", + "packageName": "readable-stream", + "hash": "41880603492280987" + } + }, + "npm:readable-stream@4.4.1": { + "type": "npm", + "name": "npm:readable-stream@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "readable-stream", + "hash": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:argv-formatter": { + "type": "npm", + "name": "npm:argv-formatter", + "data": { + "version": "1.0.0", + "packageName": "argv-formatter", + "hash": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "5.1.3", + "packageName": "aria-query", + "hash": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + } + }, + "npm:array-flatten@2.1.2": { + "type": "npm", + "name": "npm:array-flatten@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.6", + "packageName": "array-includes", + "hash": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.1", + "packageName": "array.prototype.flat", + "hash": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.1", + "packageName": "array.prototype.flatmap", + "hash": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.1", + "packageName": "array.prototype.tosorted", + "hash": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==" + } + }, + "npm:asn1": { + "type": "npm", + "name": "npm:asn1", + "data": { + "version": "0.2.6", + "packageName": "asn1", + "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.4", + "packageName": "async", + "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + } + }, + "npm:async@2.6.4": { + "type": "npm", + "name": "npm:async@2.6.4", + "data": { + "version": "2.6.4", + "packageName": "async", + "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:atomic-sleep": { + "type": "npm", + "name": "npm:atomic-sleep", + "data": { + "version": "1.0.0", + "packageName": "atomic-sleep", + "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" + } + }, + "npm:autolinker": { + "type": "npm", + "name": "npm:autolinker", + "data": { + "version": "0.28.1", + "packageName": "autolinker", + "hash": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.14", + "packageName": "autoprefixer", + "hash": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:aws-sign2": { + "type": "npm", + "name": "npm:aws-sign2", + "data": { + "version": "0.7.0", + "packageName": "aws-sign2", + "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" + } + }, + "npm:aws4": { + "type": "npm", + "name": "npm:aws4", + "data": { + "version": "1.12.0", + "packageName": "aws4", + "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.4.0", + "packageName": "axios", + "hash": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==" + } + }, + "npm:form-data@4.0.0": { + "type": "npm", + "name": "npm:form-data@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:proxy-from-env@1.1.0": { + "type": "npm", + "name": "npm:proxy-from-env@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.0.0", + "packageName": "proxy-from-env", + "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "3.1.1", + "packageName": "axobject-query", + "hash": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.5.0", + "packageName": "babel-jest", + "hash": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.1.2", + "packageName": "babel-loader", + "hash": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.5.0", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.3.3", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.6.0", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.4.1", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.5.0", + "packageName": "babel-preset-jest", + "hash": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:basic-auth": { + "type": "npm", + "name": "npm:basic-auth", + "data": { + "version": "2.0.1", + "packageName": "basic-auth", + "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "12153499668482607410" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" + } + }, + "npm:bcryptjs": { + "type": "npm", + "name": "npm:bcryptjs", + "data": { + "version": "2.4.3", + "packageName": "bcryptjs", + "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.3", + "packageName": "before-after-hook", + "hash": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:bin-check": { + "type": "npm", + "name": "npm:bin-check", + "data": { + "version": "4.1.0", + "packageName": "bin-check", + "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" + } + }, + "npm:bin-version": { + "type": "npm", + "name": "npm:bin-version", + "data": { + "version": "6.0.0", + "packageName": "bin-version", + "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" + } + }, + "npm:bin-version-check": { + "type": "npm", + "name": "npm:bin-version-check", + "data": { + "version": "5.1.0", + "packageName": "bin-version-check", + "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:blob-util": { + "type": "npm", + "name": "npm:blob-util", + "data": { + "version": "2.0.2", + "packageName": "blob-util", + "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.7.2", + "packageName": "bluebird", + "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.2", + "packageName": "body-parser", + "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" + } + }, + "npm:body-parser@1.20.1": { + "type": "npm", + "name": "npm:body-parser@1.20.1", + "data": { + "version": "1.20.1", + "packageName": "body-parser", + "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:ms@2.1.3": { + "type": "npm", + "name": "npm:ms@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "7983584697866717947" + } + }, + "npm:qs@6.11.0": { + "type": "npm", + "name": "npm:qs@6.11.0", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.10.4", + "packageName": "qs", + "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" + } + }, + "npm:qs@6.5.3": { + "type": "npm", + "name": "npm:qs@6.5.3", + "data": { + "version": "6.5.3", + "packageName": "qs", + "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.1.1", + "packageName": "bonjour-service", + "hash": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:bottleneck": { + "type": "npm", + "name": "npm:bottleneck", + "data": { + "version": "2.19.5", + "packageName": "bottleneck", + "hash": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.21.5", + "packageName": "browserslist", + "hash": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==" + } + }, + "npm:bs-logger": { + "type": "npm", + "name": "npm:bs-logger", + "data": { + "version": "0.2.6", + "packageName": "bs-logger", + "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:btoa": { + "type": "npm", + "name": "npm:btoa", + "data": { + "version": "1.2.1", + "packageName": "btoa", + "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:buffer@6.0.3": { + "type": "npm", + "name": "npm:buffer@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "buffer", + "hash": "9693504204722543652" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + } + }, + "npm:buffer-equal-constant-time": { + "type": "npm", + "name": "npm:buffer-equal-constant-time", + "data": { + "version": "1.0.1", + "packageName": "buffer-equal-constant-time", + "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "17.0.6", + "packageName": "cacache", + "hash": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==" + } + }, + "npm:cacache@18.0.1": { + "type": "npm", + "name": "npm:cacache@18.0.1", + "data": { + "version": "18.0.1", + "packageName": "cacache", + "hash": "82531839294239853" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.4", + "packageName": "cacheable-request", + "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.3.0", + "packageName": "cachedir", + "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.2", + "packageName": "call-bind", + "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001511", + "packageName": "caniuse-lite", + "hash": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==" + } + }, + "npm:cardinal": { + "type": "npm", + "name": "npm:cardinal", + "data": { + "version": "2.1.1", + "packageName": "cardinal", + "hash": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + } + }, + "npm:color-convert@2.0.1": { + "type": "npm", + "name": "npm:color-convert@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-name@1.1.4": { + "type": "npm", + "name": "npm:color-name@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:check-more-types": { + "type": "npm", + "name": "npm:check-more-types", + "data": { + "version": "2.24.0", + "packageName": "check-more-types", + "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.8.0", + "packageName": "ci-info", + "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" + } + }, + "npm:ci-info@4.0.0": { + "type": "npm", + "name": "npm:ci-info@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "ci-info", + "hash": "8652404921969079036" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.3", + "packageName": "cli-table3", + "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:cli-truncate@2.1.0": { + "type": "npm", + "name": "npm:cli-truncate@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:clipanion": { + "type": "npm", + "name": "npm:clipanion", + "data": { + "version": "3.2.0", + "packageName": "clipanion", + "hash": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:cliui@8.0.1": { + "type": "npm", + "name": "npm:cliui@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:kind-of@6.0.3": { + "type": "npm", + "name": "npm:kind-of@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "3.2.2", + "packageName": "kind-of", + "hash": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.3", + "packageName": "clone-response", + "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:coffee-script": { + "type": "npm", + "name": "npm:coffee-script", + "data": { + "version": "1.12.7", + "packageName": "coffee-script", + "hash": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.1", + "packageName": "collect-v8-coverage", + "hash": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + } + }, + "npm:color-support": { + "type": "npm", + "name": "npm:color-support", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@6.2.1": { + "type": "npm", + "name": "npm:commander@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:commander@10.0.1": { + "type": "npm", + "name": "npm:commander@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "commander", + "hash": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.2", + "packageName": "common-tags", + "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "1.6.2", + "packageName": "concat-stream", + "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + } + }, + "npm:concat-with-sourcemaps": { + "type": "npm", + "name": "npm:concat-with-sourcemaps", + "data": { + "version": "1.1.0", + "packageName": "concat-with-sourcemaps", + "hash": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==" + } + }, + "npm:config-chain": { + "type": "npm", + "name": "npm:config-chain", + "data": { + "version": "1.1.13", + "packageName": "config-chain", + "hash": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==" + } + }, + "npm:ini@1.3.8": { + "type": "npm", + "name": "npm:ini@1.3.8", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "4.0.0", + "packageName": "ini", + "hash": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==" + } + }, + "npm:ini@4.1.1": { + "type": "npm", + "name": "npm:ini@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ini", + "hash": "5359929658052267619" + } + }, + "npm:confusing-browser-globals": { + "type": "npm", + "name": "npm:confusing-browser-globals", + "data": { + "version": "1.0.11", + "packageName": "confusing-browser-globals", + "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:connect-pause": { + "type": "npm", + "name": "npm:connect-pause", + "data": { + "version": "0.1.1", + "packageName": "connect-pause", + "hash": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==" + } + }, + "npm:console-control-strings": { + "type": "npm", + "name": "npm:console-control-strings", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "7.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==" + } + }, + "npm:conventional-changelog-conventionalcommits": { + "type": "npm", + "name": "npm:conventional-changelog-conventionalcommits", + "data": { + "version": "7.0.2", + "packageName": "conventional-changelog-conventionalcommits", + "hash": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "7.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "5.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + } + }, + "npm:cookies": { + "type": "npm", + "name": "npm:cookies", + "data": { + "version": "0.8.0", + "packageName": "cookies", + "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" + } + }, + "npm:copy-anything": { + "type": "npm", + "name": "npm:copy-anything", + "data": { + "version": "2.0.6", + "packageName": "copy-anything", + "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.30.2", + "packageName": "core-js", + "hash": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.31.0", + "packageName": "core-js-compat", + "hash": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:core-util-is@1.0.2": { + "type": "npm", + "name": "npm:core-util-is@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "core-util-is", + "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + } + }, + "npm:cors": { + "type": "npm", + "name": "npm:cors", + "data": { + "version": "2.8.5", + "packageName": "cors", + "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" + } + }, + "npm:corser": { + "type": "npm", + "name": "npm:corser", + "data": { + "version": "2.0.1", + "packageName": "corser", + "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:critters": { + "type": "npm", + "name": "npm:critters", + "data": { + "version": "0.0.16", + "packageName": "critters", + "hash": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:cross-spawn@5.1.0": { + "type": "npm", + "name": "npm:cross-spawn@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "cross-spawn", + "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "4.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.4.0", + "packageName": "css-declaration-sorter", + "hash": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.7.3", + "packageName": "css-loader", + "hash": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "5.0.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" + } + }, + "npm:postcss@8.4.24": { + "type": "npm", + "name": "npm:postcss@8.4.24", + "data": { + "version": "8.4.24", + "packageName": "postcss", + "hash": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.23", + "packageName": "postcss", + "hash": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.3.0", + "packageName": "css-select", + "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" + } + }, + "npm:css-select@5.1.0": { + "type": "npm", + "name": "npm:css-select@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:css-tree@2.2.1": { + "type": "npm", + "name": "npm:css-tree@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "css-tree", + "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "6.0.1", + "packageName": "cssnano", + "hash": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "6.0.1", + "packageName": "cssnano-preset-default", + "hash": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "4.0.0", + "packageName": "cssnano-utils", + "hash": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "5.0.5", + "packageName": "csso", + "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" + } + }, + "npm:mdn-data@2.0.28": { + "type": "npm", + "name": "npm:mdn-data@2.0.28", + "data": { + "version": "2.0.28", + "packageName": "mdn-data", + "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:cypress": { + "type": "npm", + "name": "npm:cypress", + "data": { + "version": "12.16.0", + "packageName": "cypress", + "hash": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-extra@10.1.0": { + "type": "npm", + "name": "npm:fs-extra@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "11.1.1", + "packageName": "fs-extra", + "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" + } + }, + "npm:dashdash": { + "type": "npm", + "name": "npm:dashdash", + "data": { + "version": "1.14.1", + "packageName": "dashdash", + "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:mimic-response@3.1.0": { + "type": "npm", + "name": "npm:mimic-response@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + } + }, + "npm:deep-equal": { + "type": "npm", + "name": "npm:deep-equal", + "data": { + "version": "2.2.1", + "packageName": "deep-equal", + "hash": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.0", + "packageName": "define-properties", + "hash": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:diacritics-map": { + "type": "npm", + "name": "npm:diacritics-map", + "data": { + "version": "0.1.0", + "packageName": "diacritics-map", + "hash": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:diff@5.1.0": { + "type": "npm", + "name": "npm:diff@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "diff", + "hash": "14595041656651737167" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.4.3", + "packageName": "diff-sequences", + "hash": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.0", + "packageName": "dns-packet", + "hash": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:doctrine@2.1.0": { + "type": "npm", + "name": "npm:doctrine@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "1.4.1", + "packageName": "dom-serializer", + "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" + } + }, + "npm:dom-serializer@2.0.0": { + "type": "npm", + "name": "npm:dom-serializer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.3.1", + "packageName": "domhandler", + "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + } + }, + "npm:domhandler@5.0.3": { + "type": "npm", + "name": "npm:domhandler@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:domutils@3.1.0": { + "type": "npm", + "name": "npm:domutils@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "domutils", + "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "10.0.0", + "packageName": "dotenv", + "hash": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:duplexify": { + "type": "npm", + "name": "npm:duplexify", + "data": { + "version": "4.1.2", + "packageName": "duplexify", + "hash": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:ecc-jsbn": { + "type": "npm", + "name": "npm:ecc-jsbn", + "data": { + "version": "0.1.2", + "packageName": "ecc-jsbn", + "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" + } + }, + "npm:ecdsa-sig-formatter": { + "type": "npm", + "name": "npm:ecdsa-sig-formatter", + "data": { + "version": "1.0.11", + "packageName": "ecdsa-sig-formatter", + "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.9", + "packageName": "ejs", + "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.447", + "packageName": "electron-to-chromium", + "hash": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emojilib": { + "type": "npm", + "name": "npm:emojilib", + "data": { + "version": "2.4.0", + "packageName": "emojilib", + "hash": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:entities@4.5.0": { + "type": "npm", + "name": "npm:entities@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:env-ci": { + "type": "npm", + "name": "npm:env-ci", + "data": { + "version": "10.0.0", + "packageName": "env-ci", + "hash": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.8.1", + "packageName": "envinfo", + "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:errorhandler": { + "type": "npm", + "name": "npm:errorhandler", + "data": { + "version": "1.5.1", + "packageName": "errorhandler", + "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.21.2", + "packageName": "es-abstract", + "hash": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==" + } + }, + "npm:es-get-iterator": { + "type": "npm", + "name": "npm:es-get-iterator", + "data": { + "version": "1.1.3", + "packageName": "es-get-iterator", + "hash": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.3.0", + "packageName": "es-module-lexer", + "hash": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.1", + "packageName": "es-set-tostringtag", + "hash": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.0", + "packageName": "es-shim-unscopables", + "hash": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.17.18", + "packageName": "esbuild", + "hash": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==" + } + }, + "npm:esbuild-wasm": { + "type": "npm", + "name": "npm:esbuild-wasm", + "data": { + "version": "0.17.18", + "packageName": "esbuild-wasm", + "hash": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "8.15.0", + "packageName": "eslint", + "hash": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==" + } + }, + "npm:eslint@8.44.0": { + "type": "npm", + "name": "npm:eslint@8.44.0", + "data": { + "version": "8.44.0", + "packageName": "eslint", + "hash": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "8.1.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==" + } + }, + "npm:eslint-config-standard": { + "type": "npm", + "name": "npm:eslint-config-standard", + "data": { + "version": "17.1.0", + "packageName": "eslint-config-standard", + "hash": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==" + } + }, + "npm:eslint-config-standard-jsx": { + "type": "npm", + "name": "npm:eslint-config-standard-jsx", + "data": { + "version": "11.0.0", + "packageName": "eslint-config-standard-jsx", + "hash": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.7", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.8.0", + "packageName": "eslint-module-utils", + "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + } + }, + "npm:eslint-plugin-cypress": { + "type": "npm", + "name": "npm:eslint-plugin-cypress", + "data": { + "version": "2.13.3", + "packageName": "eslint-plugin-cypress", + "hash": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==" + } + }, + "npm:eslint-plugin-es": { + "type": "npm", + "name": "npm:eslint-plugin-es", + "data": { + "version": "4.1.0", + "packageName": "eslint-plugin-es", + "hash": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==" + } + }, + "npm:eslint-utils@2.1.0": { + "type": "npm", + "name": "npm:eslint-utils@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "3.0.0", + "packageName": "eslint-utils", + "hash": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==" + } + }, + "npm:eslint-visitor-keys@1.3.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + }, + "npm:eslint-visitor-keys@2.1.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.27.5", + "packageName": "eslint-plugin-import", + "hash": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:strip-bom@3.0.0": { + "type": "npm", + "name": "npm:strip-bom@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:tsconfig-paths@3.14.2": { + "type": "npm", + "name": "npm:tsconfig-paths@3.14.2", + "data": { + "version": "3.14.2", + "packageName": "tsconfig-paths", + "hash": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:eslint-plugin-n": { + "type": "npm", + "name": "npm:eslint-plugin-n", + "data": { + "version": "15.7.0", + "packageName": "eslint-plugin-n", + "hash": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==" + } + }, + "npm:eslint-plugin-promise": { + "type": "npm", + "name": "npm:eslint-plugin-promise", + "data": { + "version": "6.1.1", + "packageName": "eslint-plugin-promise", + "hash": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.32.2", + "packageName": "eslint-plugin-react", + "hash": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==" + } + }, + "npm:resolve@2.0.0-next.4": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.4", + "data": { + "version": "2.0.0-next.4", + "packageName": "resolve", + "hash": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.2", + "packageName": "resolve", + "hash": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.0", + "packageName": "espree", + "hash": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:eventemitter-asyncresource": { + "type": "npm", + "name": "npm:eventemitter-asyncresource", + "data": { + "version": "1.0.0", + "packageName": "eventemitter-asyncresource", + "hash": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==" + } + }, + "npm:eventemitter2": { + "type": "npm", + "name": "npm:eventemitter2", + "data": { + "version": "6.4.7", + "packageName": "eventemitter2", + "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:shebang-command@1.2.0": { + "type": "npm", + "name": "npm:shebang-command@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "341129833107810678" + } + }, + "npm:shebang-regex@1.0.0": { + "type": "npm", + "name": "npm:shebang-regex@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "3348982168836855660" + } + }, + "npm:executable": { + "type": "npm", + "name": "npm:executable", + "data": { + "version": "4.1.1", + "packageName": "executable", + "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expand-range": { + "type": "npm", + "name": "npm:expand-range", + "data": { + "version": "1.8.2", + "packageName": "expand-range", + "hash": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==" + } + }, + "npm:fill-range@2.2.4": { + "type": "npm", + "name": "npm:fill-range@2.2.4", + "data": { + "version": "2.2.4", + "packageName": "fill-range", + "hash": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, + "npm:isarray@0.0.1": { + "type": "npm", + "name": "npm:isarray@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isobject@2.1.0": { + "type": "npm", + "name": "npm:isobject@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "isobject", + "hash": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.5.0", + "packageName": "expect", + "hash": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==" + } + }, + "npm:exponential-backoff": { + "type": "npm", + "name": "npm:exponential-backoff", + "data": { + "version": "3.1.1", + "packageName": "exponential-backoff", + "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.2", + "packageName": "express", + "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" + } + }, + "npm:express-rate-limit": { + "type": "npm", + "name": "npm:express-rate-limit", + "data": { + "version": "5.5.1", + "packageName": "express-rate-limit", + "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" + } + }, + "npm:express-urlrewrite": { + "type": "npm", + "name": "npm:express-urlrewrite", + "data": { + "version": "1.4.0", + "packageName": "express-urlrewrite", + "hash": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==" + } + }, + "npm:path-to-regexp@1.8.0": { + "type": "npm", + "name": "npm:path-to-regexp@1.8.0", + "data": { + "version": "1.8.0", + "packageName": "path-to-regexp", + "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + } + }, + "npm:raw-body@2.5.1": { + "type": "npm", + "name": "npm:raw-body@2.5.1", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.2", + "packageName": "raw-body", + "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" + } + }, + "npm:ext-list": { + "type": "npm", + "name": "npm:ext-list", + "data": { + "version": "2.2.2", + "packageName": "ext-list", + "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" + } + }, + "npm:ext-name": { + "type": "npm", + "name": "npm:ext-name", + "data": { + "version": "5.0.0", + "packageName": "ext-name", + "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:extsprintf": { + "type": "npm", + "name": "npm:extsprintf", + "data": { + "version": "1.3.0", + "packageName": "extsprintf", + "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-redact": { + "type": "npm", + "name": "npm:fast-redact", + "data": { + "version": "3.2.0", + "packageName": "fast-redact", + "hash": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==" + } + }, + "npm:fast-safe-stringify": { + "type": "npm", + "name": "npm:fast-safe-stringify", + "data": { + "version": "2.1.1", + "packageName": "fast-safe-stringify", + "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.15.0", + "packageName": "fastq", + "hash": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:figures@6.0.1": { + "type": "npm", + "name": "npm:figures@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "figures", + "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" + } + }, + "npm:figures@2.0.0": { + "type": "npm", + "name": "npm:figures@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "figures", + "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:file-type": { + "type": "npm", + "name": "npm:file-type", + "data": { + "version": "17.1.6", + "packageName": "file-type", + "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.4", + "packageName": "filelist", + "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" + } + }, + "npm:filename-reserved-regex": { + "type": "npm", + "name": "npm:filename-reserved-regex", + "data": { + "version": "3.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" + } + }, + "npm:filenamify": { + "type": "npm", + "name": "npm:filenamify", + "data": { + "version": "5.1.1", + "packageName": "filenamify", + "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" + } + }, + "npm:find-up@5.0.0": { + "type": "npm", + "name": "npm:find-up@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up-simple": { + "type": "npm", + "name": "npm:find-up-simple", + "data": { + "version": "1.0.0", + "packageName": "find-up-simple", + "hash": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==" + } + }, + "npm:find-versions": { + "type": "npm", + "name": "npm:find-versions", + "data": { + "version": "5.1.0", + "packageName": "find-versions", + "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.0.4", + "packageName": "flat-cache", + "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.7", + "packageName": "flatted", + "hash": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.2", + "packageName": "follow-redirects", + "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:for-in": { + "type": "npm", + "name": "npm:for-in", + "data": { + "version": "1.0.2", + "packageName": "for-in", + "hash": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "7.2.13", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.2.0", + "packageName": "schema-utils", + "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.2.0", + "packageName": "fraction.js", + "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + } + }, + "npm:from2": { + "type": "npm", + "name": "npm:from2", + "data": { + "version": "2.3.0", + "packageName": "from2", + "hash": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.2", + "packageName": "fs-minipass", + "hash": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==" + } + }, + "npm:fs-minipass@3.0.3": { + "type": "npm", + "name": "npm:fs-minipass@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "9283175188910202019" + } + }, + "npm:fs-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "11506148351665826113" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.4", + "packageName": "fs-monkey", + "hash": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.2", + "packageName": "fsevents", + "hash": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.1", + "packageName": "function-bind", + "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } + }, + "npm:function-bind@1.1.2": { + "type": "npm", + "name": "npm:function-bind@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "18249092172207658379" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.5", + "packageName": "function.prototype.name", + "hash": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==" + } + }, + "npm:functional-red-black-tree": { + "type": "npm", + "name": "npm:functional-red-black-tree", + "data": { + "version": "1.0.1", + "packageName": "functional-red-black-tree", + "hash": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:gauge": { + "type": "npm", + "name": "npm:gauge", + "data": { + "version": "4.0.4", + "packageName": "gauge", + "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" + } + }, + "npm:gauge@5.0.1": { + "type": "npm", + "name": "npm:gauge@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "gauge", + "hash": "11205983861061131040" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.1", + "packageName": "get-intrinsic", + "hash": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "8.0.0", + "packageName": "get-stdin", + "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:getos": { + "type": "npm", + "name": "npm:getos", + "data": { + "version": "3.2.1", + "packageName": "getos", + "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" + } + }, + "npm:git-log-parser": { + "type": "npm", + "name": "npm:git-log-parser", + "data": { + "version": "1.2.0", + "packageName": "git-log-parser", + "hash": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==" + } + }, + "npm:split2@1.0.0": { + "type": "npm", + "name": "npm:split2@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "split2", + "hash": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "4.2.0", + "packageName": "split2", + "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "3.0.1", + "packageName": "global-dirs", + "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.6", + "packageName": "got", + "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" + } + }, + "npm:grapheme-splitter": { + "type": "npm", + "name": "npm:grapheme-splitter", + "data": { + "version": "1.0.4", + "packageName": "grapheme-splitter", + "hash": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:gray-matter": { + "type": "npm", + "name": "npm:gray-matter", + "data": { + "version": "2.1.1", + "packageName": "gray-matter", + "hash": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==" + } + }, + "npm:gulp-header": { + "type": "npm", + "name": "npm:gulp-header", + "data": { + "version": "1.8.12", + "packageName": "gulp-header", + "hash": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.7", + "packageName": "handlebars", + "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" + } + }, + "npm:har-schema": { + "type": "npm", + "name": "npm:har-schema", + "data": { + "version": "2.0.0", + "packageName": "har-schema", + "hash": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" + } + }, + "npm:har-validator": { + "type": "npm", + "name": "npm:har-validator", + "data": { + "version": "5.1.5", + "packageName": "har-validator", + "hash": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:has": { + "type": "npm", + "name": "npm:has", + "data": { + "version": "1.0.3", + "packageName": "has", + "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.0", + "packageName": "has-property-descriptors", + "hash": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + } + }, + "npm:hdr-histogram-js": { + "type": "npm", + "name": "npm:hdr-histogram-js", + "data": { + "version": "2.0.3", + "packageName": "hdr-histogram-js", + "hash": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==" + } + }, + "npm:hdr-histogram-percentiles-obj": { + "type": "npm", + "name": "npm:hdr-histogram-percentiles-obj", + "data": { + "version": "3.0.0", + "packageName": "hdr-histogram-percentiles-obj", + "hash": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hook-std": { + "type": "npm", + "name": "npm:hook-std", + "data": { + "version": "3.0.0", + "packageName": "hook-std", + "hash": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.4.0", + "packageName": "html-entities", + "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.8", + "packageName": "http-parser-js", + "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, + "npm:http-server": { + "type": "npm", + "name": "npm:http-server", + "data": { + "version": "14.1.1", + "packageName": "http-server", + "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.3.6", + "packageName": "http-signature", + "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" + } + }, + "npm:http-signature@1.2.0": { + "type": "npm", + "name": "npm:http-signature@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "http-signature", + "hash": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==" + } + }, + "npm:http-status-codes": { + "type": "npm", + "name": "npm:http-status-codes", + "data": { + "version": "2.2.0", + "packageName": "http-status-codes", + "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.3", + "packageName": "http2-wrapper", + "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" + } + }, + "npm:humanize-ms": { + "type": "npm", + "name": "npm:humanize-ms", + "data": { + "version": "1.2.1", + "packageName": "humanize-ms", + "hash": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.2.4", + "packageName": "ignore", + "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "6.0.3", + "packageName": "ignore-walk", + "hash": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==" + } + }, + "npm:ignore-walk@6.0.4": { + "type": "npm", + "name": "npm:ignore-walk@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "ignore-walk", + "hash": "16689579619212849223" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "0.5.5", + "packageName": "image-size", + "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "4.3.0", + "packageName": "immutable", + "hash": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:import-from-esm": { + "type": "npm", + "name": "npm:import-from-esm", + "data": { + "version": "1.3.3", + "packageName": "import-from-esm", + "hash": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:import-meta-resolve": { + "type": "npm", + "name": "npm:import-meta-resolve", + "data": { + "version": "4.0.0", + "packageName": "import-meta-resolve", + "hash": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:index-to-position": { + "type": "npm", + "name": "npm:index-to-position", + "data": { + "version": "0.1.2", + "packageName": "index-to-position", + "hash": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, + "npm:inquirer-autocomplete-prompt": { + "type": "npm", + "name": "npm:inquirer-autocomplete-prompt", + "data": { + "version": "2.0.0", + "packageName": "inquirer-autocomplete-prompt", + "hash": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.5", + "packageName": "internal-slot", + "hash": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==" + } + }, + "npm:into-stream": { + "type": "npm", + "name": "npm:into-stream", + "data": { + "version": "7.0.0", + "packageName": "into-stream", + "hash": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "2.0.0", + "packageName": "ip", + "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js@2.1.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "ipaddr.js", + "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.1.1", + "packageName": "is-arguments", + "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.12.1", + "packageName": "is-core-module", + "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" + } + }, + "npm:is-core-module@2.13.1": { + "type": "npm", + "name": "npm:is-core-module@2.13.1", + "data": { + "version": "2.13.1", + "packageName": "is-core-module", + "hash": "1088848723806808446" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + } + }, + "npm:is-extendable@1.0.1": { + "type": "npm", + "name": "npm:is-extendable@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-extendable", + "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:is-fullwidth-code-point@3.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.2", + "packageName": "is-map", + "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "2.1.0", + "packageName": "is-number", + "hash": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==" + } + }, + "npm:is-number@4.0.0": { + "type": "npm", + "name": "npm:is-number@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-number", + "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + } + }, + "npm:is-number@7.0.0": { + "type": "npm", + "name": "npm:is-number@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "2.2.2", + "packageName": "is-promise", + "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.2", + "packageName": "is-set", + "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "2.0.0", + "packageName": "is-text-path", + "hash": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.10", + "packageName": "is-typed-array", + "hash": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-unicode-supported@2.0.0": { + "type": "npm", + "name": "npm:is-unicode-supported@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-unicode-supported", + "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.1", + "packageName": "is-weakmap", + "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.2", + "packageName": "is-weakset", + "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" + } + }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "3.14.1", + "packageName": "is-what", + "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isexe@3.1.1": { + "type": "npm", + "name": "npm:isexe@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "isexe", + "hash": "12947349301482897918" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + } + }, + "npm:issue-parser": { + "type": "npm", + "name": "npm:issue-parser", + "data": { + "version": "6.0.0", + "packageName": "issue-parser", + "hash": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.0", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.0", + "packageName": "istanbul-lib-report", + "hash": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.5", + "packageName": "istanbul-reports", + "hash": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.2.1", + "packageName": "jackspeak", + "hash": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==" + } + }, + "npm:jackspeak@2.3.6": { + "type": "npm", + "name": "npm:jackspeak@2.3.6", + "data": { + "version": "2.3.6", + "packageName": "jackspeak", + "hash": "10023275040098202367" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.7", + "packageName": "jake", + "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" + } + }, + "npm:java-properties": { + "type": "npm", + "name": "npm:java-properties", + "data": { + "version": "1.0.2", + "packageName": "java-properties", + "hash": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.5.0", + "packageName": "jest", + "hash": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.5.0", + "packageName": "jest-changed-files", + "hash": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.5.0", + "packageName": "jest-circus", + "hash": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.5.0", + "packageName": "jest-cli", + "hash": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.5.0", + "packageName": "jest-config", + "hash": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.5.0", + "packageName": "jest-diff", + "hash": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.4.3", + "packageName": "jest-docblock", + "hash": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.5.0", + "packageName": "jest-each", + "hash": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.5.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.5.0", + "packageName": "jest-environment-node", + "hash": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.4.3", + "packageName": "jest-get-type", + "hash": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.5.0", + "packageName": "jest-haste-map", + "hash": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.5.0", + "packageName": "jest-leak-detector", + "hash": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.5.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.5.0", + "packageName": "jest-message-util", + "hash": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.5.0", + "packageName": "jest-mock", + "hash": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:jest-preset-angular": { + "type": "npm", + "name": "npm:jest-preset-angular", + "data": { + "version": "13.1.1", + "packageName": "jest-preset-angular", + "hash": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.4.3", + "packageName": "jest-regex-util", + "hash": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.5.0", + "packageName": "jest-resolve", + "hash": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.5.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==" + } + }, + "npm:resolve.exports@2.0.2": { + "type": "npm", + "name": "npm:resolve.exports@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.5.0", + "packageName": "jest-runner", + "hash": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.5.0", + "packageName": "jest-runtime", + "hash": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.5.0", + "packageName": "jest-snapshot", + "hash": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.5.0", + "packageName": "jest-util", + "hash": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.5.0", + "packageName": "jest-validate", + "hash": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.5.0", + "packageName": "jest-watcher", + "hash": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.5.0", + "packageName": "jest-worker", + "hash": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:tough-cookie@4.1.3": { + "type": "npm", + "name": "npm:tough-cookie@4.1.3", + "data": { + "version": "4.1.3", + "packageName": "tough-cookie", + "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "2.5.0", + "packageName": "tough-cookie", + "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.0", + "packageName": "universalify", + "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors@3.0.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "json-parse-even-better-errors", + "hash": "12902821898341430299" + } + }, + "npm:json-parse-even-better-errors@3.0.0": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" + } + }, + "npm:json-parse-helpfulerror": { + "type": "npm", + "name": "npm:json-parse-helpfulerror", + "data": { + "version": "1.0.3", + "packageName": "json-parse-helpfulerror", + "hash": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:json-server": { + "type": "npm", + "name": "npm:json-server", + "data": { + "version": "0.17.3", + "packageName": "json-server", + "hash": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + } + }, + "npm:jsonc-eslint-parser": { + "type": "npm", + "name": "npm:jsonc-eslint-parser", + "data": { + "version": "2.3.0", + "packageName": "jsonc-eslint-parser", + "hash": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonfile@5.0.0": { + "type": "npm", + "name": "npm:jsonfile@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "jsonfile", + "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:jsonwebtoken": { + "type": "npm", + "name": "npm:jsonwebtoken", + "data": { + "version": "9.0.0", + "packageName": "jsonwebtoken", + "hash": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "2.0.2", + "packageName": "jsprim", + "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" + } + }, + "npm:jsprim@1.4.2": { + "type": "npm", + "name": "npm:jsprim@1.4.2", + "data": { + "version": "1.4.2", + "packageName": "jsprim", + "hash": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.4", + "packageName": "jsx-ast-utils", + "hash": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==" + } + }, + "npm:jwa": { + "type": "npm", + "name": "npm:jwa", + "data": { + "version": "1.4.1", + "packageName": "jwa", + "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" + } + }, + "npm:jws": { + "type": "npm", + "name": "npm:jws", + "data": { + "version": "3.2.2", + "packageName": "jws", + "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" + } + }, + "npm:karma-source-map-support": { + "type": "npm", + "name": "npm:karma-source-map-support", + "data": { + "version": "1.4.0", + "packageName": "karma-source-map-support", + "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" + } + }, + "npm:keygrip": { + "type": "npm", + "name": "npm:keygrip", + "data": { + "version": "1.1.0", + "packageName": "keygrip", + "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.2", + "packageName": "keyv", + "hash": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:kleur@4.1.5": { + "type": "npm", + "name": "npm:kleur@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.6.0", + "packageName": "launch-editor", + "hash": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==" + } + }, + "npm:lazy-ass": { + "type": "npm", + "name": "npm:lazy-ass", + "data": { + "version": "1.6.0", + "packageName": "lazy-ass", + "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" + } + }, + "npm:lazy-cache": { + "type": "npm", + "name": "npm:lazy-cache", + "data": { + "version": "2.0.2", + "packageName": "lazy-cache", + "hash": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==" + } + }, + "npm:less": { + "type": "npm", + "name": "npm:less", + "data": { + "version": "4.1.3", + "packageName": "less", + "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" + } + }, + "npm:less-loader": { + "type": "npm", + "name": "npm:less-loader", + "data": { + "version": "11.1.0", + "packageName": "less-loader", + "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pify@3.0.0": { + "type": "npm", + "name": "npm:pify@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "4.0.2", + "packageName": "license-webpack-plugin", + "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "13.2.3", + "packageName": "lint-staged", + "hash": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==" + } + }, + "npm:listr2@5.0.8": { + "type": "npm", + "name": "npm:listr2@5.0.8", + "data": { + "version": "5.0.8", + "packageName": "listr2", + "hash": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:slice-ansi@3.0.0": { + "type": "npm", + "name": "npm:slice-ansi@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:slice-ansi@4.0.0": { + "type": "npm", + "name": "npm:slice-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:list-item": { + "type": "npm", + "name": "npm:list-item", + "data": { + "version": "1.1.1", + "packageName": "list-item", + "hash": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" + } + }, + "npm:load-json-file@5.3.0": { + "type": "npm", + "name": "npm:load-json-file@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "load-json-file", + "hash": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" + } + }, + "npm:locate-path@6.0.0": { + "type": "npm", + "name": "npm:locate-path@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:lockfile": { + "type": "npm", + "name": "npm:lockfile", + "data": { + "version": "1.0.4", + "packageName": "lockfile", + "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:lodash-id": { + "type": "npm", + "name": "npm:lodash-id", + "data": { + "version": "0.14.1", + "packageName": "lodash-id", + "hash": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==" + } + }, + "npm:lodash._reinterpolate": { + "type": "npm", + "name": "npm:lodash._reinterpolate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reinterpolate", + "hash": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + } + }, + "npm:lodash.capitalize": { + "type": "npm", + "name": "npm:lodash.capitalize", + "data": { + "version": "4.2.1", + "packageName": "lodash.capitalize", + "hash": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + } + }, + "npm:lodash.escaperegexp": { + "type": "npm", + "name": "npm:lodash.escaperegexp", + "data": { + "version": "4.1.2", + "packageName": "lodash.escaperegexp", + "hash": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" + } + }, + "npm:lodash.isplainobject": { + "type": "npm", + "name": "npm:lodash.isplainobject", + "data": { + "version": "4.0.6", + "packageName": "lodash.isplainobject", + "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + } + }, + "npm:lodash.isstring": { + "type": "npm", + "name": "npm:lodash.isstring", + "data": { + "version": "4.0.1", + "packageName": "lodash.isstring", + "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.once": { + "type": "npm", + "name": "npm:lodash.once", + "data": { + "version": "4.1.1", + "packageName": "lodash.once", + "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" + } + }, + "npm:lodash.template": { + "type": "npm", + "name": "npm:lodash.template", + "data": { + "version": "4.5.0", + "packageName": "lodash.template", + "hash": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" + } + }, + "npm:lodash.templatesettings": { + "type": "npm", + "name": "npm:lodash.templatesettings", + "data": { + "version": "4.2.0", + "packageName": "lodash.templatesettings", + "hash": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash.uniqby": { + "type": "npm", + "name": "npm:lodash.uniqby", + "data": { + "version": "4.7.0", + "packageName": "lodash.uniqby", + "hash": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:lowdb": { + "type": "npm", + "name": "npm:lowdb", + "data": { + "version": "1.0.0", + "packageName": "lowdb", + "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:make-fetch-happen@13.0.0": { + "type": "npm", + "name": "npm:make-fetch-happen@13.0.0", + "data": { + "version": "13.0.0", + "packageName": "make-fetch-happen", + "hash": "7528465726135027139" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:markdown-link": { + "type": "npm", + "name": "npm:markdown-link", + "data": { + "version": "0.1.1", + "packageName": "markdown-link", + "hash": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==" + } + }, + "npm:markdown-toc": { + "type": "npm", + "name": "npm:markdown-toc", + "data": { + "version": "1.2.0", + "packageName": "markdown-toc", + "hash": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "9.1.6", + "packageName": "marked", + "hash": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==" + } + }, + "npm:marked-terminal": { + "type": "npm", + "name": "npm:marked-terminal", + "data": { + "version": "6.2.0", + "packageName": "marked-terminal", + "hash": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==" + } + }, + "npm:math-random": { + "type": "npm", + "name": "npm:math-random", + "data": { + "version": "1.0.4", + "packageName": "math-random", + "hash": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.5.3", + "packageName": "memfs", + "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" + } + }, + "npm:memorystream": { + "type": "npm", + "name": "npm:memorystream", + "data": { + "version": "0.3.1", + "packageName": "memorystream", + "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "12.1.1", + "packageName": "meow", + "hash": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:method-override": { + "type": "npm", + "name": "npm:method-override", + "data": { + "version": "3.0.0", + "packageName": "method-override", + "hash": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minipass@3.3.6": { + "type": "npm", + "name": "npm:minipass@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@7.0.4": { + "type": "npm", + "name": "npm:minipass@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "minipass", + "hash": "10137614760203815997" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:minipass-collect@2.0.1": { + "type": "npm", + "name": "npm:minipass-collect@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "minipass-collect", + "hash": "6286271237527683964" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.3", + "packageName": "minipass-fetch", + "hash": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==" + } + }, + "npm:minipass-fetch@3.0.4": { + "type": "npm", + "name": "npm:minipass-fetch@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "minipass-fetch", + "hash": "8956990235727874625" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mixin-deep": { + "type": "npm", + "name": "npm:mixin-deep", + "data": { + "version": "1.3.2", + "packageName": "mixin-deep", + "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + } + }, + "npm:morgan": { + "type": "npm", + "name": "npm:morgan", + "data": { + "version": "1.10.0", + "packageName": "morgan", + "hash": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==" + } + }, + "npm:on-finished@2.3.0": { + "type": "npm", + "name": "npm:on-finished@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "1.0.1", + "packageName": "mrmime", + "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:mute-stream@1.0.0": { + "type": "npm", + "name": "npm:mute-stream@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "16115303212711239780" + } + }, + "npm:mv": { + "type": "npm", + "name": "npm:mv", + "data": { + "version": "2.1.1", + "packageName": "mv", + "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" + } + }, + "npm:rimraf@2.4.5": { + "type": "npm", + "name": "npm:rimraf@2.4.5", + "data": { + "version": "2.4.5", + "packageName": "rimraf", + "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@2.6.3": { + "type": "npm", + "name": "npm:rimraf@2.6.3", + "data": { + "version": "2.6.3", + "packageName": "rimraf", + "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" + } + }, + "npm:nanoclone": { + "type": "npm", + "name": "npm:nanoclone", + "data": { + "version": "0.2.1", + "packageName": "nanoclone", + "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.6", + "packageName": "nanoid", + "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:natural-compare-lite": { + "type": "npm", + "name": "npm:natural-compare-lite", + "data": { + "version": "1.4.0", + "packageName": "natural-compare-lite", + "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" + } + }, + "npm:needle": { + "type": "npm", + "name": "npm:needle", + "data": { + "version": "3.2.0", + "packageName": "needle", + "hash": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:nerf-dart": { + "type": "npm", + "name": "npm:nerf-dart", + "data": { + "version": "1.0.0", + "packageName": "nerf-dart", + "hash": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==" + } + }, + "npm:nice-napi": { + "type": "npm", + "name": "npm:nice-napi", + "data": { + "version": "1.0.2", + "packageName": "nice-napi", + "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "2.1.3", + "packageName": "node-emoji", + "hash": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "9.4.0", + "packageName": "node-gyp", + "hash": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==" + } + }, + "npm:node-gyp@10.0.1": { + "type": "npm", + "name": "npm:node-gyp@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "node-gyp", + "hash": "16415563419608742726" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.6.0", + "packageName": "node-gyp-build", + "hash": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.12", + "packageName": "node-releases", + "hash": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "6.0.0", + "packageName": "nopt", + "hash": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" + } + }, + "npm:nopt@7.2.0": { + "type": "npm", + "name": "npm:nopt@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "nopt", + "hash": "5342237565931378178" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + } + }, + "npm:npm": { + "type": "npm", + "name": "npm:npm", + "data": { + "version": "10.2.5", + "packageName": "npm", + "hash": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "6.1.1", + "packageName": "npm-install-checks", + "hash": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==" + } + }, + "npm:npm-install-checks@6.3.0": { + "type": "npm", + "name": "npm:npm-install-checks@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "npm-install-checks", + "hash": "6033146002159595593" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:npm-package-arg@11.0.1": { + "type": "npm", + "name": "npm:npm-package-arg@11.0.1", + "data": { + "version": "11.0.1", + "packageName": "npm-package-arg", + "hash": "7582532888618332007" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:npm-packlist@8.0.1": { + "type": "npm", + "name": "npm:npm-packlist@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "npm-packlist", + "hash": "17171210598504663350" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "8.0.1", + "packageName": "npm-pick-manifest", + "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" + } + }, + "npm:npm-pick-manifest@9.0.0": { + "type": "npm", + "name": "npm:npm-pick-manifest@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "npm-pick-manifest", + "hash": "8809466789689825313" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "14.0.5", + "packageName": "npm-registry-fetch", + "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" + } + }, + "npm:npm-registry-fetch@16.1.0": { + "type": "npm", + "name": "npm:npm-registry-fetch@16.1.0", + "data": { + "version": "16.1.0", + "packageName": "npm-registry-fetch", + "hash": "11308245374241807600" + } + }, + "npm:npm-run-all": { + "type": "npm", + "name": "npm:npm-run-all", + "data": { + "version": "4.1.5", + "packageName": "npm-run-all", + "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" + } + }, + "npm:pidtree@0.3.1": { + "type": "npm", + "name": "npm:pidtree@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "pidtree", + "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:@isaacs/string-locale-compare@1.1.0": { + "type": "npm", + "name": "npm:@isaacs/string-locale-compare@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "@isaacs/string-locale-compare", + "hash": "13187644880041451271" + } + }, + "npm:@npmcli/agent@2.2.0": { + "type": "npm", + "name": "npm:@npmcli/agent@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "@npmcli/agent", + "hash": "14014059303892723744" + } + }, + "npm:@npmcli/arborist@7.2.2": { + "type": "npm", + "name": "npm:@npmcli/arborist@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "@npmcli/arborist", + "hash": "7182259164219824660" + } + }, + "npm:@npmcli/config@8.0.3": { + "type": "npm", + "name": "npm:@npmcli/config@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "@npmcli/config", + "hash": "8820709041531503664" + } + }, + "npm:@npmcli/disparity-colors@3.0.0": { + "type": "npm", + "name": "npm:@npmcli/disparity-colors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/disparity-colors", + "hash": "14187036782924450815" + } + }, + "npm:@npmcli/map-workspaces@3.0.4": { + "type": "npm", + "name": "npm:@npmcli/map-workspaces@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "@npmcli/map-workspaces", + "hash": "13154714750762064630" + } + }, + "npm:@npmcli/metavuln-calculator@7.0.0": { + "type": "npm", + "name": "npm:@npmcli/metavuln-calculator@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "@npmcli/metavuln-calculator", + "hash": "2521549270537825900" + } + }, + "npm:@npmcli/name-from-folder@2.0.0": { + "type": "npm", + "name": "npm:@npmcli/name-from-folder@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@npmcli/name-from-folder", + "hash": "14253416717500769425" + } + }, + "npm:@npmcli/package-json@5.0.0": { + "type": "npm", + "name": "npm:@npmcli/package-json@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@npmcli/package-json", + "hash": "15072336541895224028" + } + }, + "npm:@npmcli/query@3.0.1": { + "type": "npm", + "name": "npm:@npmcli/query@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@npmcli/query", + "hash": "2838677265610359007" + } + }, + "npm:@sigstore/bundle@2.1.0": { + "type": "npm", + "name": "npm:@sigstore/bundle@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@sigstore/bundle", + "hash": "2548407292680462866" + } + }, + "npm:@sigstore/sign@2.2.0": { + "type": "npm", + "name": "npm:@sigstore/sign@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "@sigstore/sign", + "hash": "17892639030825074300" + } + }, + "npm:archy@1.0.0": { + "type": "npm", + "name": "npm:archy@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "7927190020983769851" + } + }, + "npm:bin-links@4.0.3": { + "type": "npm", + "name": "npm:bin-links@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "bin-links", + "hash": "6676388443930273422" + } + }, + "npm:cidr-regex@4.0.3": { + "type": "npm", + "name": "npm:cidr-regex@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "cidr-regex", + "hash": "6423967580007982965" + } + }, + "npm:cli-columns@4.0.0": { + "type": "npm", + "name": "npm:cli-columns@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-columns", + "hash": "11864858422112434879" + } + }, + "npm:cmd-shim@6.0.2": { + "type": "npm", + "name": "npm:cmd-shim@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "cmd-shim", + "hash": "11797498964257484434" + } + }, + "npm:columnify@1.6.0": { + "type": "npm", + "name": "npm:columnify@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "4223446972626528808" + } + }, + "npm:common-ancestor-path@1.0.1": { + "type": "npm", + "name": "npm:common-ancestor-path@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "common-ancestor-path", + "hash": "6661427358504839173" + } + }, + "npm:fastest-levenshtein@1.0.16": { + "type": "npm", + "name": "npm:fastest-levenshtein@1.0.16", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "8701148827062880145" + } + }, + "npm:hasown@2.0.0": { + "type": "npm", + "name": "npm:hasown@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "3788474599132128554" + } + }, + "npm:init-package-json@6.0.0": { + "type": "npm", + "name": "npm:init-package-json@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "init-package-json", + "hash": "12382910830993440062" + } + }, + "npm:ip-regex@5.0.0": { + "type": "npm", + "name": "npm:ip-regex@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ip-regex", + "hash": "6181509096878655535" + } + }, + "npm:is-cidr@5.0.3": { + "type": "npm", + "name": "npm:is-cidr@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "is-cidr", + "hash": "9300924457576055299" + } + }, + "npm:json-stringify-nice@1.1.4": { + "type": "npm", + "name": "npm:json-stringify-nice@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "json-stringify-nice", + "hash": "1591436175625616703" + } + }, + "npm:just-diff@6.0.2": { + "type": "npm", + "name": "npm:just-diff@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "just-diff", + "hash": "8534278321911344784" + } + }, + "npm:just-diff-apply@5.5.0": { + "type": "npm", + "name": "npm:just-diff-apply@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "just-diff-apply", + "hash": "12715064950501085530" + } + }, + "npm:libnpmaccess@8.0.2": { + "type": "npm", + "name": "npm:libnpmaccess@8.0.2", + "data": { + "version": "8.0.2", + "packageName": "libnpmaccess", + "hash": "16421526142808800212" + } + }, + "npm:libnpmdiff@6.0.4": { + "type": "npm", + "name": "npm:libnpmdiff@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "libnpmdiff", + "hash": "3820498454041815106" + } + }, + "npm:libnpmexec@7.0.5": { + "type": "npm", + "name": "npm:libnpmexec@7.0.5", + "data": { + "version": "7.0.5", + "packageName": "libnpmexec", + "hash": "17794617723037587231" + } + }, + "npm:libnpmfund@5.0.2": { + "type": "npm", + "name": "npm:libnpmfund@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "libnpmfund", + "hash": "12305598745182060946" + } + }, + "npm:libnpmhook@10.0.1": { + "type": "npm", + "name": "npm:libnpmhook@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "libnpmhook", + "hash": "8875117050333550796" + } + }, + "npm:libnpmorg@6.0.2": { + "type": "npm", + "name": "npm:libnpmorg@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "libnpmorg", + "hash": "10290805547791020319" + } + }, + "npm:libnpmpack@6.0.4": { + "type": "npm", + "name": "npm:libnpmpack@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "libnpmpack", + "hash": "5406464303373104244" + } + }, + "npm:libnpmpublish@9.0.3": { + "type": "npm", + "name": "npm:libnpmpublish@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "libnpmpublish", + "hash": "8046954149526535727" + } + }, + "npm:libnpmsearch@7.0.1": { + "type": "npm", + "name": "npm:libnpmsearch@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "libnpmsearch", + "hash": "15325769825788437107" + } + }, + "npm:libnpmteam@6.0.1": { + "type": "npm", + "name": "npm:libnpmteam@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "libnpmteam", + "hash": "1683769112741320527" + } + }, + "npm:libnpmversion@5.0.2": { + "type": "npm", + "name": "npm:libnpmversion@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "libnpmversion", + "hash": "17375154425837329637" + } + }, + "npm:npm-audit-report@5.0.0": { + "type": "npm", + "name": "npm:npm-audit-report@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "npm-audit-report", + "hash": "6354832541033058707" + } + }, + "npm:npm-profile@9.0.0": { + "type": "npm", + "name": "npm:npm-profile@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "npm-profile", + "hash": "11172665038688662263" + } + }, + "npm:npm-user-validate@2.0.0": { + "type": "npm", + "name": "npm:npm-user-validate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "npm-user-validate", + "hash": "7397416590274487050" + } + }, + "npm:npmlog@7.0.1": { + "type": "npm", + "name": "npm:npmlog@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "npmlog", + "hash": "17299148607020464567" + } + }, + "npm:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "17854661287334559550" + } + }, + "npm:p-map@5.5.0": { + "type": "npm", + "name": "npm:p-map@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "p-map", + "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" + } + }, + "npm:pacote@17.0.5": { + "type": "npm", + "name": "npm:pacote@17.0.5", + "data": { + "version": "17.0.5", + "packageName": "pacote", + "hash": "18157225445049205745" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.1.3", + "packageName": "pacote", + "hash": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==" + } + }, + "npm:parse-conflict-json@3.0.1": { + "type": "npm", + "name": "npm:parse-conflict-json@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "parse-conflict-json", + "hash": "4836433519110231199" + } + }, + "npm:path-scurry@1.10.1": { + "type": "npm", + "name": "npm:path-scurry@1.10.1", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "12011382365270888598" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.0", + "packageName": "path-scurry", + "hash": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "18317171813795956011" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "15686043515984890271" + } + }, + "npm:process": { + "type": "npm", + "name": "npm:process", + "data": { + "version": "0.11.10", + "packageName": "process", + "hash": "5899774364612678558" + } + }, + "npm:promise-all-reject-late@1.0.1": { + "type": "npm", + "name": "npm:promise-all-reject-late@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "promise-all-reject-late", + "hash": "8115079043743132112" + } + }, + "npm:promise-call-limit@1.0.2": { + "type": "npm", + "name": "npm:promise-call-limit@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "promise-call-limit", + "hash": "15188836213578786777" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "17505959410500941643" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "6430051236100879397" + } + }, + "npm:promzard@1.0.0": { + "type": "npm", + "name": "npm:promzard@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "1630102348184705762" + } + }, + "npm:qrcode-terminal@0.12.0": { + "type": "npm", + "name": "npm:qrcode-terminal@0.12.0", + "data": { + "version": "0.12.0", + "packageName": "qrcode-terminal", + "hash": "8604977206135799318" + } + }, + "npm:read@2.1.0": { + "type": "npm", + "name": "npm:read@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "15091997822902067721" + } + }, + "npm:read-cmd-shim@4.0.0": { + "type": "npm", + "name": "npm:read-cmd-shim@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "8789385965959140586" + } + }, + "npm:read-package-json@7.0.0": { + "type": "npm", + "name": "npm:read-package-json@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "read-package-json", + "hash": "2832168133989722474" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "6.0.4", + "packageName": "read-package-json", + "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "15039476735012127087" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "577959566566698873" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "16796670911009069817" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "7925479020392693302" + } + }, + "npm:sigstore@2.1.0": { + "type": "npm", + "name": "npm:sigstore@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "sigstore", + "hash": "1779417821879983691" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.7.0", + "packageName": "sigstore", + "hash": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "9325347317011058594" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.7.1", + "packageName": "socks", + "hash": "10075606660716242987" + } + }, + "npm:socks-proxy-agent@8.0.2": { + "type": "npm", + "name": "npm:socks-proxy-agent@8.0.2", + "data": { + "version": "8.0.2", + "packageName": "socks-proxy-agent", + "hash": "16729279058560436716" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "7.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "5441723641692029835" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.3.0", + "packageName": "spdx-exceptions", + "hash": "7642298428353548034" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "1415946028849809017" + } + }, + "npm:spdx-license-ids@3.0.16": { + "type": "npm", + "name": "npm:spdx-license-ids@3.0.16", + "data": { + "version": "3.0.16", + "packageName": "spdx-license-ids", + "hash": "14586284776616244379" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.13", + "packageName": "spdx-license-ids", + "hash": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" + } + }, + "npm:ssri@10.0.5": { + "type": "npm", + "name": "npm:ssri@10.0.5", + "data": { + "version": "10.0.5", + "packageName": "ssri", + "hash": "3448831591758618758" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.4", + "packageName": "ssri", + "hash": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==" + } + }, + "npm:string_decoder@1.3.0": { + "type": "npm", + "name": "npm:string_decoder@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "7047277384104003716" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "16568546503867287883" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "17289454424302757271" + } + }, + "npm:tar@6.2.0": { + "type": "npm", + "name": "npm:tar@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "tar", + "hash": "6383215585396908452" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.15", + "packageName": "tar", + "hash": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "18257468142112457810" + } + }, + "npm:tiny-relative-date@1.3.0": { + "type": "npm", + "name": "npm:tiny-relative-date@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "tiny-relative-date", + "hash": "13109578067881593908" + } + }, + "npm:treeverse@3.0.0": { + "type": "npm", + "name": "npm:treeverse@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "treeverse", + "hash": "6817532506522309275" + } + }, + "npm:tuf-js@2.1.0": { + "type": "npm", + "name": "npm:tuf-js@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "tuf-js", + "hash": "3979877721881428053" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.7", + "packageName": "tuf-js", + "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "7886949599248485097" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "15025672285505434477" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "17916194938027055625" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "14893158163252173577" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "2171344116929511877" + } + }, + "npm:walk-up-path@3.0.1": { + "type": "npm", + "name": "npm:walk-up-path@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "walk-up-path", + "hash": "10198965256615950216" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "10410747907664628096" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "9514910874233485267" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "13425223611772983678" + } + }, + "npm:write-file-atomic@5.0.1": { + "type": "npm", + "name": "npm:write-file-atomic@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "9705229754480736912" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.5", + "packageName": "nwsapi", + "hash": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" + } + }, + "npm:nx-release": { + "type": "npm", + "name": "npm:nx-release", + "data": { + "version": "3.1.6", + "packageName": "nx-release", + "hash": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==" + } + }, + "npm:oauth-sign": { + "type": "npm", + "name": "npm:oauth-sign", + "data": { + "version": "0.9.0", + "packageName": "oauth-sign", + "hash": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.12.3", + "packageName": "object-inspect", + "hash": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.4", + "packageName": "object.assign", + "hash": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.6", + "packageName": "object.entries", + "hash": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.6", + "packageName": "object.fromentries", + "hash": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.2", + "packageName": "object.hasown", + "hash": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==" + } + }, + "npm:object.pick": { + "type": "npm", + "name": "npm:object.pick", + "data": { + "version": "1.3.0", + "packageName": "object.pick", + "hash": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.1.6", + "packageName": "object.values", + "hash": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:on-exit-leak-free": { + "type": "npm", + "name": "npm:on-exit-leak-free", + "data": { + "version": "0.2.0", + "packageName": "on-exit-leak-free", + "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:os-filter-obj": { + "type": "npm", + "name": "npm:os-filter-obj", + "data": { + "version": "2.0.0", + "packageName": "os-filter-obj", + "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:ospath": { + "type": "npm", + "name": "npm:ospath", + "data": { + "version": "1.2.2", + "packageName": "ospath", + "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.1.1", + "packageName": "p-cancelable", + "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + } + }, + "npm:p-each-series": { + "type": "npm", + "name": "npm:p-each-series", + "data": { + "version": "3.0.0", + "packageName": "p-each-series", + "hash": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "3.0.0", + "packageName": "p-filter", + "hash": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "npm:p-is-promise": { + "type": "npm", + "name": "npm:p-is-promise", + "data": { + "version": "3.0.0", + "packageName": "p-is-promise", + "hash": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" + } + }, + "npm:p-locate@5.0.0": { + "type": "npm", + "name": "npm:p-locate@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-reduce@3.0.0": { + "type": "npm", + "name": "npm:p-reduce@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-reduce", + "hash": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" + } + }, + "npm:pako": { + "type": "npm", + "name": "npm:pako", + "data": { + "version": "1.0.11", + "packageName": "pako", + "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:parse5-html-rewriting-stream": { + "type": "npm", + "name": "npm:parse5-html-rewriting-stream", + "data": { + "version": "7.0.0", + "packageName": "parse5-html-rewriting-stream", + "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" + } + }, + "npm:parse5-htmlparser2-tree-adapter": { + "type": "npm", + "name": "npm:parse5-htmlparser2-tree-adapter", + "data": { + "version": "6.0.1", + "packageName": "parse5-htmlparser2-tree-adapter", + "hash": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==" + } + }, + "npm:parse5-sax-parser": { + "type": "npm", + "name": "npm:parse5-sax-parser", + "data": { + "version": "7.0.0", + "packageName": "parse5-sax-parser", + "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:peek-readable": { + "type": "npm", + "name": "npm:peek-readable", + "data": { + "version": "5.0.0", + "packageName": "peek-readable", + "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + } + }, + "npm:performance-now": { + "type": "npm", + "name": "npm:performance-now", + "data": { + "version": "2.1.0", + "packageName": "performance-now", + "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:pino": { + "type": "npm", + "name": "npm:pino", + "data": { + "version": "7.11.0", + "packageName": "pino", + "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" + } + }, + "npm:pino-abstract-transport": { + "type": "npm", + "name": "npm:pino-abstract-transport", + "data": { + "version": "1.0.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" + } + }, + "npm:pino-abstract-transport@0.5.0": { + "type": "npm", + "name": "npm:pino-abstract-transport@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" + } + }, + "npm:pino-std-serializers": { + "type": "npm", + "name": "npm:pino-std-serializers", + "data": { + "version": "4.0.0", + "packageName": "pino-std-serializers", + "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" + } + }, + "npm:sonic-boom@2.8.0": { + "type": "npm", + "name": "npm:sonic-boom@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "sonic-boom", + "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" + } + }, + "npm:sonic-boom": { + "type": "npm", + "name": "npm:sonic-boom", + "data": { + "version": "3.3.0", + "packageName": "sonic-boom", + "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:piscina": { + "type": "npm", + "name": "npm:piscina", + "data": { + "version": "3.2.0", + "packageName": "piscina", + "hash": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==" + } + }, + "npm:pkg-conf": { + "type": "npm", + "name": "npm:pkg-conf", + "data": { + "version": "3.1.0", + "packageName": "pkg-conf", + "hash": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==" + } + }, + "npm:pkg-conf@2.1.0": { + "type": "npm", + "name": "npm:pkg-conf@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "pkg-conf", + "hash": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkginfo": { + "type": "npm", + "name": "npm:pkginfo", + "data": { + "version": "0.4.1", + "packageName": "pkginfo", + "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" + } + }, + "npm:please-upgrade-node": { + "type": "npm", + "name": "npm:please-upgrade-node", + "data": { + "version": "3.2.0", + "packageName": "please-upgrade-node", + "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "8.0.0", + "packageName": "pluralize", + "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.32", + "packageName": "portfinder", + "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "9.0.1", + "packageName": "postcss-calc", + "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "6.0.0", + "packageName": "postcss-colormin", + "hash": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "6.0.0", + "packageName": "postcss-convert-values", + "hash": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "6.0.0", + "packageName": "postcss-discard-comments", + "hash": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "6.0.0", + "packageName": "postcss-discard-empty", + "hash": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "6.0.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==" + } + }, + "npm:postcss-import": { + "type": "npm", + "name": "npm:postcss-import", + "data": { + "version": "14.1.0", + "packageName": "postcss-import", + "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" + } + }, + "npm:cosmiconfig-typescript-loader@4.3.0": { + "type": "npm", + "name": "npm:cosmiconfig-typescript-loader@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "cosmiconfig-typescript-loader", + "hash": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "6.0.0", + "packageName": "postcss-merge-longhand", + "hash": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "6.0.1", + "packageName": "postcss-merge-rules", + "hash": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "6.0.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "6.0.0", + "packageName": "postcss-minify-gradients", + "hash": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "6.0.0", + "packageName": "postcss-minify-params", + "hash": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "6.0.0", + "packageName": "postcss-minify-selectors", + "hash": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.3", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-positions", + "hash": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "6.0.0", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "6.0.0", + "packageName": "postcss-ordered-values", + "hash": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "6.0.0", + "packageName": "postcss-reduce-initial", + "hash": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "6.0.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "6.0.0", + "packageName": "postcss-svgo", + "hash": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "6.0.0", + "packageName": "postcss-unique-selectors", + "hash": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.5.0", + "packageName": "pretty-format", + "hash": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:process-warning": { + "type": "npm", + "name": "npm:process-warning", + "data": { + "version": "1.0.0", + "packageName": "process-warning", + "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:react-is@16.13.1": { + "type": "npm", + "name": "npm:react-is@16.13.1", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:property-expr": { + "type": "npm", + "name": "npm:property-expr", + "data": { + "version": "2.0.5", + "packageName": "property-expr", + "hash": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==" + } + }, + "npm:proto-list": { + "type": "npm", + "name": "npm:proto-list", + "data": { + "version": "1.2.4", + "packageName": "proto-list", + "hash": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + } + }, + "npm:pseudomap": { + "type": "npm", + "name": "npm:pseudomap", + "data": { + "version": "1.0.2", + "packageName": "pseudomap", + "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.9.0", + "packageName": "psl", + "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.0", + "packageName": "punycode", + "hash": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.2", + "packageName": "pure-rand", + "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:quick-format-unescaped": { + "type": "npm", + "name": "npm:quick-format-unescaped", + "data": { + "version": "4.0.4", + "packageName": "quick-format-unescaped", + "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:randomatic": { + "type": "npm", + "name": "npm:randomatic", + "data": { + "version": "3.1.1", + "packageName": "randomatic", + "hash": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:read-cache": { + "type": "npm", + "name": "npm:read-cache", + "data": { + "version": "1.0.0", + "packageName": "read-cache", + "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "11.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==" + } + }, + "npm:readable-web-to-node-stream": { + "type": "npm", + "name": "npm:readable-web-to-node-stream", + "data": { + "version": "3.0.2", + "packageName": "readable-web-to-node-stream", + "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:real-require": { + "type": "npm", + "name": "npm:real-require", + "data": { + "version": "0.1.0", + "packageName": "real-require", + "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" + } + }, + "npm:redeyed": { + "type": "npm", + "name": "npm:redeyed", + "data": { + "version": "2.1.1", + "packageName": "redeyed", + "hash": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==" + } + }, + "npm:reflect-metadata": { + "type": "npm", + "name": "npm:reflect-metadata", + "data": { + "version": "0.1.13", + "packageName": "reflect-metadata", + "hash": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.0", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.1", + "packageName": "regenerator-transform", + "hash": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==" + } + }, + "npm:regex-parser": { + "type": "npm", + "name": "npm:regex-parser", + "data": { + "version": "2.2.11", + "packageName": "regex-parser", + "hash": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.0", + "packageName": "regexp.prototype.flags", + "hash": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.2.0", + "packageName": "regexpp", + "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "5.0.2", + "packageName": "registry-auth-token", + "hash": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:remarkable": { + "type": "npm", + "name": "npm:remarkable", + "data": { + "version": "1.7.4", + "packageName": "remarkable", + "hash": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==" + } + }, + "npm:repeat-element": { + "type": "npm", + "name": "npm:repeat-element", + "data": { + "version": "1.1.4", + "packageName": "repeat-element", + "hash": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" + } + }, + "npm:replace-json-property": { + "type": "npm", + "name": "npm:replace-json-property", + "data": { + "version": "1.9.0", + "packageName": "replace-json-property", + "hash": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==" + } + }, + "npm:request": { + "type": "npm", + "name": "npm:request", + "data": { + "version": "2.88.2", + "packageName": "request", + "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" + } + }, + "npm:request-progress": { + "type": "npm", + "name": "npm:request-progress", + "data": { + "version": "3.0.0", + "packageName": "request-progress", + "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" + } + }, + "npm:uuid@3.4.0": { + "type": "npm", + "name": "npm:uuid@3.4.0", + "data": { + "version": "3.4.0", + "packageName": "uuid", + "hash": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-url-loader": { + "type": "npm", + "name": "npm:resolve-url-loader", + "data": { + "version": "5.0.0", + "packageName": "resolve-url-loader", + "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.1", + "packageName": "responselike", + "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "3.26.0", + "packageName": "rollup", + "hash": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.0", + "packageName": "safe-regex-test", + "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" + } + }, + "npm:safe-stable-stringify": { + "type": "npm", + "name": "npm:safe-stable-stringify", + "data": { + "version": "2.4.3", + "packageName": "safe-stable-stringify", + "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.62.1", + "packageName": "sass", + "hash": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:secure-compare": { + "type": "npm", + "name": "npm:secure-compare", + "data": { + "version": "3.0.1", + "packageName": "secure-compare", + "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.1.1", + "packageName": "selfsigned", + "hash": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==" + } + }, + "npm:semantic-release": { + "type": "npm", + "name": "npm:semantic-release", + "data": { + "version": "22.0.12", + "packageName": "semantic-release", + "hash": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==" + } + }, + "npm:semver-compare": { + "type": "npm", + "name": "npm:semver-compare", + "data": { + "version": "1.0.0", + "packageName": "semver-compare", + "hash": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "4.0.0", + "packageName": "semver-diff", + "hash": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==" + } + }, + "npm:semver-regex": { + "type": "npm", + "name": "npm:semver-regex", + "data": { + "version": "4.0.5", + "packageName": "semver-regex", + "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" + } + }, + "npm:semver-truncate": { + "type": "npm", + "name": "npm:semver-truncate", + "data": { + "version": "3.0.0", + "packageName": "semver-truncate", + "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:server-destroy": { + "type": "npm", + "name": "npm:server-destroy", + "data": { + "version": "1.0.1", + "packageName": "server-destroy", + "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" + } + }, + "npm:set-getter": { + "type": "npm", + "name": "npm:set-getter", + "data": { + "version": "0.1.1", + "packageName": "set-getter", + "hash": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signale": { + "type": "npm", + "name": "npm:signale", + "data": { + "version": "1.4.0", + "packageName": "signale", + "hash": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:skin-tone": { + "type": "npm", + "name": "npm:skin-tone", + "data": { + "version": "2.0.0", + "packageName": "skin-tone", + "hash": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "1.1.2", + "packageName": "sort-keys", + "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" + } + }, + "npm:sort-keys-length": { + "type": "npm", + "name": "npm:sort-keys-length", + "data": { + "version": "1.0.1", + "packageName": "sort-keys-length", + "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" + } + }, + "npm:source-map-explorer": { + "type": "npm", + "name": "npm:source-map-explorer", + "data": { + "version": "2.5.3", + "packageName": "source-map-explorer", + "hash": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==" + } + }, + "npm:yargs@16.2.0": { + "type": "npm", + "name": "npm:yargs@16.2.0", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yargs-parser@20.2.9": { + "type": "npm", + "name": "npm:yargs-parser@20.2.9", + "data": { + "version": "20.2.9", + "packageName": "yargs-parser", + "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:sourcemap-codec": { + "type": "npm", + "name": "npm:sourcemap-codec", + "data": { + "version": "1.4.8", + "packageName": "sourcemap-codec", + "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + } + }, + "npm:spawn-error-forwarder": { + "type": "npm", + "name": "npm:spawn-error-forwarder", + "data": { + "version": "1.0.0", + "packageName": "spawn-error-forwarder", + "hash": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.17.0", + "packageName": "sshpk", + "hash": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:standard": { + "type": "npm", + "name": "npm:standard", + "data": { + "version": "17.1.0", + "packageName": "standard", + "hash": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==" + } + }, + "npm:standard-engine": { + "type": "npm", + "name": "npm:standard-engine", + "data": { + "version": "15.1.0", + "packageName": "standard-engine", + "hash": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==" + } + }, + "npm:steno": { + "type": "npm", + "name": "npm:steno", + "data": { + "version": "0.4.4", + "packageName": "steno", + "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" + } + }, + "npm:stop-iteration-iterator": { + "type": "npm", + "name": "npm:stop-iteration-iterator", + "data": { + "version": "1.0.0", + "packageName": "stop-iteration-iterator", + "hash": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==" + } + }, + "npm:stream-combiner2": { + "type": "npm", + "name": "npm:stream-combiner2", + "data": { + "version": "1.1.1", + "packageName": "stream-combiner2", + "hash": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==" + } + }, + "npm:stream-shift": { + "type": "npm", + "name": "npm:stream-shift", + "data": { + "version": "1.0.1", + "packageName": "stream-shift", + "hash": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.2", + "packageName": "string-argv", + "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.8", + "packageName": "string.prototype.matchall", + "hash": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.1.4", + "packageName": "string.prototype.padend", + "hash": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.7", + "packageName": "string.prototype.trim", + "hash": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.6", + "packageName": "string.prototype.trimend", + "hash": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.6", + "packageName": "string.prototype.trimstart", + "hash": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==" + } + }, + "npm:strip-color": { + "type": "npm", + "name": "npm:strip-color", + "data": { + "version": "0.1.0", + "packageName": "strip-color", + "hash": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" + } + }, + "npm:strip-outer": { + "type": "npm", + "name": "npm:strip-outer", + "data": { + "version": "2.0.0", + "packageName": "strip-outer", + "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:strtok3": { + "type": "npm", + "name": "npm:strtok3", + "data": { + "version": "7.0.0", + "packageName": "strtok3", + "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.3", + "packageName": "style-loader", + "hash": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "6.0.0", + "packageName": "stylehacks", + "hash": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==" + } + }, + "npm:stylus": { + "type": "npm", + "name": "npm:stylus", + "data": { + "version": "0.59.0", + "packageName": "stylus", + "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" + } + }, + "npm:stylus-loader": { + "type": "npm", + "name": "npm:stylus-loader", + "data": { + "version": "7.1.3", + "packageName": "stylus-loader", + "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "3.0.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "3.0.2", + "packageName": "svgo", + "hash": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==" + } + }, + "npm:symbol-observable": { + "type": "npm", + "name": "npm:symbol-observable", + "data": { + "version": "4.0.0", + "packageName": "symbol-observable", + "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.9.4", + "packageName": "temp", + "hash": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "3.0.0", + "packageName": "temp-dir", + "hash": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "3.1.0", + "packageName": "tempy", + "hash": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.17.1", + "packageName": "terser", + "hash": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.9", + "packageName": "terser-webpack-plugin", + "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "2.4.0", + "packageName": "text-extensions", + "hash": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==" + } + }, + "npm:thread-stream": { + "type": "npm", + "name": "npm:thread-stream", + "data": { + "version": "0.15.2", + "packageName": "thread-stream", + "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" + } + }, + "npm:throttleit": { + "type": "npm", + "name": "npm:throttleit", + "data": { + "version": "1.0.0", + "packageName": "throttleit", + "hash": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:to-object-path": { + "type": "npm", + "name": "npm:to-object-path", + "data": { + "version": "0.3.0", + "packageName": "to-object-path", + "hash": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:token-types": { + "type": "npm", + "name": "npm:token-types", + "data": { + "version": "5.0.1", + "packageName": "token-types", + "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" + } + }, + "npm:toml": { + "type": "npm", + "name": "npm:toml", + "data": { + "version": "2.3.6", + "packageName": "toml", + "hash": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" + } + }, + "npm:toposort": { + "type": "npm", + "name": "npm:toposort", + "data": { + "version": "2.0.2", + "packageName": "toposort", + "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.7", + "packageName": "traverse", + "hash": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==" + } + }, + "npm:tree-kill": { + "type": "npm", + "name": "npm:tree-kill", + "data": { + "version": "1.2.2", + "packageName": "tree-kill", + "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" + } + }, + "npm:trim-repeated": { + "type": "npm", + "name": "npm:trim-repeated", + "data": { + "version": "2.0.0", + "packageName": "trim-repeated", + "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.1.1", + "packageName": "ts-jest", + "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" + } + }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.4.4", + "packageName": "ts-loader", + "hash": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, + "npm:tsscmp": { + "type": "npm", + "name": "npm:tsscmp", + "data": { + "version": "1.0.6", + "packageName": "tsscmp", + "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" + } + }, + "npm:tweetnacl": { + "type": "npm", + "name": "npm:tweetnacl", + "data": { + "version": "0.14.5", + "packageName": "tweetnacl", + "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + } + }, + "npm:typanion": { + "type": "npm", + "name": "npm:typanion", + "data": { + "version": "3.13.0", + "packageName": "typanion", + "hash": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:typed-assert": { + "type": "npm", + "name": "npm:typed-assert", + "data": { + "version": "1.0.9", + "packageName": "typed-assert", + "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.17.4", + "packageName": "uglify-js", + "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-emoji-modifier-base": { + "type": "npm", + "name": "npm:unicode-emoji-modifier-base", + "data": { + "version": "1.0.0", + "packageName": "unicode-emoji-modifier-base", + "hash": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:unicorn-magic": { + "type": "npm", + "name": "npm:unicorn-magic", + "data": { + "version": "0.1.0", + "packageName": "unicorn-magic", + "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" + } + }, + "npm:union": { + "type": "npm", + "name": "npm:union", + "data": { + "version": "0.5.0", + "packageName": "union", + "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "3.0.0", + "packageName": "unique-string", + "hash": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.1", + "packageName": "universal-user-agent", + "hash": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" + } + }, + "npm:unix-crypt-td-js": { + "type": "npm", + "name": "npm:unix-crypt-td-js", + "data": { + "version": "1.1.4", + "packageName": "unix-crypt-td-js", + "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:untildify": { + "type": "npm", + "name": "npm:untildify", + "data": { + "version": "4.0.0", + "packageName": "untildify", + "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.11", + "packageName": "update-browserslist-db", + "hash": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.1.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.9.0", + "packageName": "validator", + "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:verdaccio": { + "type": "npm", + "name": "npm:verdaccio", + "data": { + "version": "5.25.0", + "packageName": "verdaccio", + "hash": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==" + } + }, + "npm:verdaccio-audit": { + "type": "npm", + "name": "npm:verdaccio-audit", + "data": { + "version": "11.0.0-6-next.34", + "packageName": "verdaccio-audit", + "hash": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==" + } + }, + "npm:verdaccio-htpasswd": { + "type": "npm", + "name": "npm:verdaccio-htpasswd", + "data": { + "version": "11.0.0-6-next.41", + "packageName": "verdaccio-htpasswd", + "hash": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" + } + }, + "npm:version-guard": { + "type": "npm", + "name": "npm:version-guard", + "data": { + "version": "1.1.1", + "packageName": "version-guard", + "hash": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==" + } + }, + "npm:vite": { + "type": "npm", + "name": "npm:vite", + "data": { + "version": "4.3.9", + "packageName": "vite", + "hash": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.80.0", + "packageName": "webpack", + "hash": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "6.0.2", + "packageName": "webpack-dev-middleware", + "hash": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==" + } + }, + "npm:webpack-dev-middleware@5.3.3": { + "type": "npm", + "name": "npm:webpack-dev-middleware@5.3.3", + "data": { + "version": "5.3.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.13.2", + "packageName": "webpack-dev-server", + "hash": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==" + } + }, + "npm:webpack-node-externals": { + "type": "npm", + "name": "npm:webpack-node-externals", + "data": { + "version": "3.0.0", + "packageName": "webpack-node-externals", + "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack-subresource-integrity": { + "type": "npm", + "name": "npm:webpack-subresource-integrity", + "data": { + "version": "5.1.0", + "packageName": "webpack-subresource-integrity", + "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.1", + "packageName": "which-collection", + "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.9", + "packageName": "which-typed-array", + "hash": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.1", + "packageName": "wildcard", + "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.13.0", + "packageName": "ws", + "hash": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==" + } + }, + "npm:xdg-basedir": { + "type": "npm", + "name": "npm:xdg-basedir", + "data": { + "version": "4.0.0", + "packageName": "xdg-basedir", + "hash": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:yup": { + "type": "npm", + "name": "npm:yup", + "data": { + "version": "0.32.11", + "packageName": "yup", + "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" + } + }, + "npm:zone.js": { + "type": "npm", + "name": "npm:zone.js", + "data": { + "version": "0.13.1", + "packageName": "zone.js", + "hash": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==" + } + } + }, + "dependencies": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@angular-devkit/architect", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/architect", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/build-webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-proposal-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@ngtools/webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@vitejs/plugin-basic-ssl", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:critters", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:esbuild-wasm", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:inquirer@8.2.4", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:karma-source-map-support", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:parse5-html-rewriting-stream", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:piscina", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:resolve-url-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:sass-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:tslib@2.5.0", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-subresource-integrity", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:@angular-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@angular-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:axobject-query", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular/animations", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/animations", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@schematics/angular", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:inquirer@8.2.4", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:symbol-observable", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/compiler", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/compiler", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@babel/core@7.21.8", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:reflect-metadata", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/generator@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.21.8", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:zone.js", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/animations", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/plugin-proposal-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.5", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:globals@13.20.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-version-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:ext-name", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:file-type", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:filenamify", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:os-filter-obj", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:which@3.0.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:which@3.0.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:which@3.0.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:@nrwl/angular", + "target": "npm:@nx/angular", + "type": "static" + }, + { + "source": "npm:@nrwl/angular", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nrwl/cypress", + "target": "npm:@nx/cypress", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nrwl/eslint-plugin-nx", + "target": "npm:@nx/eslint-plugin", + "type": "static" + }, + { + "source": "npm:@nrwl/jest", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nrwl/js", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nrwl/linter", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nrwl/nx-plugin", + "target": "npm:@nx/plugin", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/web", + "target": "npm:@nx/web", + "type": "static" + }, + { + "source": "npm:@nrwl/webpack", + "target": "npm:@nx/webpack", + "type": "static" + }, + { + "source": "npm:@nrwl/workspace", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@schematics/angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nrwl/angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/cypress", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/webpack", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/workspace@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:http-server", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:magic-string@0.26.7", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:webpack-merge@5.7.3", + "type": "static" + }, + { + "source": "npm:@nrwl/linter@16.4.2", + "target": "npm:@nx/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nrwl/tao@16.4.2", + "target": "npm:nx@16.4.2", + "type": "static" + }, + { + "source": "npm:@nrwl/workspace@16.4.2", + "target": "npm:@nx/workspace@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nrwl/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:@nrwl/workspace@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:nx@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:magic-string@0.26.7", + "target": "npm:sourcemap-codec", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@swc-node/register", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nrwl/tao@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-darwin-arm64@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-darwin-x64@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-arm64-gnu@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-arm64-musl@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-x64-gnu@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-x64-musl@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-win32-arm64-msvc@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-win32-x64-msvc@16.4.2", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:webpack-merge@5.7.3", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge@5.7.3", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:cypress", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nrwl/cypress", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nrwl/linter@16.4.2", + "target": "npm:@nx/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nrwl/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nrwl/eslint-plugin-nx", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/js@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:confusing-browser-globals", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:semver@7.3.4", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit@16.1.1", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nrwl/js@16.1.1", + "target": "npm:@nx/js@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:@nrwl/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:semver@7.3.4", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@nrwl/js@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.3.4", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nrwl/jest", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:verdaccio", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nrwl/js", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/workspace@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nrwl/tao@16.4.2", + "target": "npm:nx@16.4.2", + "type": "static" + }, + { + "source": "npm:@nrwl/workspace@16.4.2", + "target": "npm:@nx/workspace@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:@nrwl/workspace@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:nx@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.4.2", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@swc-node/register", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nrwl/tao@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-darwin-arm64@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-darwin-x64@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-arm64-gnu@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-arm64-musl@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-x64-gnu@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-linux-x64-musl@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-win32-arm64-msvc@16.4.2", + "type": "static" + }, + { + "source": "npm:nx@16.4.2", + "target": "npm:@nx/nx-win32-x64-msvc@16.4.2", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nrwl/linter", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nx/js@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit@16.1.1", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nrwl/js@16.1.1", + "target": "npm:@nx/js@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:@nrwl/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:semver@7.3.4", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@nrwl/js@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:@nx/js@16.1.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.3.4", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nrwl/nx-plugin", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nrwl/linter@16.4.2", + "target": "npm:@nx/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nrwl/linter@16.4.2", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.4.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nrwl/web", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:http-server", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nrwl/webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:copy-webpack-plugin@10.2.4", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:mini-css-extract-plugin@2.4.7", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:parse5@4.0.0", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-import", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-loader@6.2.1", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-loader@12.6.0", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:source-map-loader@3.0.2", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ts-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tsconfig-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-node-externals", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-subresource-integrity", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:globby@12.2.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:array-union@3.0.1", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:slash@4.0.0", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin@2.4.7", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin@2.4.7", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit@16.1.1", + "target": "npm:@nx/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:@nrwl/devkit@16.1.1", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:semver@7.3.4", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.1.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.3.4", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:bottleneck", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:bottleneck", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/endpoint", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:@pnpm/network.ca-file", + "target": "npm:graceful-fs@4.2.10", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:@pnpm/config.env-replace", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:@pnpm/network.ca-file", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:config-chain", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-retry", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-throttling", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:globby@14.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:https-proxy-agent@7.0.2", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:issue-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:mime@4.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:p-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:url-join@5.0.0", + "type": "static" + }, + { + "source": "npm:agent-base@7.1.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:clean-stack@5.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:clean-stack@5.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:fast-glob@3.3.2", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:path-type@5.0.0", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:unicorn-magic", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:agent-base@7.1.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.2", + "target": "npm:agent-base@7.1.0", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:nerf-dart", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:normalize-url@8.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:npm", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:read-pkg@9.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:tempy", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:clean-stack@5.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:clean-stack@5.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:get-stream@8.0.1", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:human-signals@5.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + }, + { + "source": "npm:hosted-git-info@7.0.1", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:index-to-position", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:normalize-package-data@6.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:parse-json@8.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:unicorn-magic", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:get-stream@7.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:into-stream", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + }, + { + "source": "npm:@swc-node/core", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc-node/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc-node/sourcemap-support", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:typescript@4.9.5", + "type": "static" + }, + { + "source": "npm:@swc-node/sourcemap-support", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:@mole-inc/bin-wrapper", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-x64", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:@swc/helpers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.2", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.2", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + }, + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:@types/through", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:@types/keyv", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/responselike", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/through", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils@5.60.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils@5.60.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:grapheme-splitter", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare-lite", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.60.1", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.60.1", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.60.1", + "target": "npm:@typescript-eslint/utils@5.60.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.60.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.60.1", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:@typescript-eslint/types@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:@typescript-eslint/visitor-keys@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.7", + "target": "npm:@typescript-eslint/types@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.7", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.59.7", + "target": "npm:@typescript-eslint/types@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.59.7", + "target": "npm:@typescript-eslint/visitor-keys@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:@typescript-eslint/types@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:@typescript-eslint/visitor-keys@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.7", + "target": "npm:@typescript-eslint/types@5.59.7", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.7", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@verdaccio/commons-api", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:@verdaccio/commons-api", + "target": "npm:http-status-codes", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:yup", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:http-status-codes", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:semver@7.5.0", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.0", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:@verdaccio/file-locking", + "target": "npm:lockfile", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/commons-api", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/file-locking", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/streams", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:lowdb", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-7", + "target": "npm:@verdaccio/logger-commons", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-7", + "target": "npm:pino", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:@verdaccio/logger-prettify", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:dayjs@1.11.7", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:pino-abstract-transport", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:sonic-boom", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:express-rate-limit", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:semver@7.5.0", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:semver@7.5.0", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-basic-ssl", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:acorn-import-assertions", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:adjust-sourcemap-loader", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:adjust-sourcemap-loader", + "target": "npm:regex-parser", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv-formats", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:ajv-formats", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:ajv-keywords", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:ajv-keywords", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:ansi-red", + "target": "npm:ansi-wrap", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:argparse", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:aria-query", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:asn1", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:autolinker", + "target": "npm:gulp-header", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:proxy-from-env@1.1.0", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:axobject-query", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:basic-auth", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:find-versions", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:bin-version", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver-truncate", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:qs@6.11.0", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:array-flatten@2.1.2", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:bs-logger", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:builtins", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@10.3.1", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:minimatch@9.0.2", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.2", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:ansicolors", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:redeyed", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:clipanion", + "target": "npm:typanion", + "type": "static" + }, + { + "source": "npm:clipanion", + "target": "npm:typanion", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:clone-response", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop", + "type": "static" + }, + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + }, + { + "source": "npm:concat-with-sourcemaps", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:config-chain", + "target": "npm:ini@1.3.8", + "type": "static" + }, + { + "source": "npm:config-chain", + "target": "npm:proto-list", + "type": "static" + }, + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:keygrip", + "type": "static" + }, + { + "source": "npm:copy-anything", + "target": "npm:is-what", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob@3.3.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@13.2.1", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.1", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.1", + "target": "npm:fast-glob@3.3.0", + "type": "static" + }, + { + "source": "npm:globby@13.2.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.2.1", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.2.1", + "target": "npm:slash@4.0.0", + "type": "static" + }, + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:parse5@6.0.1", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:parse5-htmlparser2-tree-adapter", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:crypto-random-string", + "target": "npm:type-fest@1.4.0", + "type": "static" + }, + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss@8.4.24", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:postcss@8.4.24", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss@8.4.24", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.24", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:csso", + "target": "npm:css-tree@2.2.1", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:mdn-data@2.0.28", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/request", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/xvfb", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/node@14.18.53", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sizzle", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:blob-util", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:eventemitter2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:getos", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:ospath", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:request-progress", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:untildify", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:dashdash", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:decompress-response", + "target": "npm:mimic-response@3.1.0", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:es-get-iterator", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:default-gateway", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:duplexer2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:stream-shift", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:ecdsa-sig-formatter", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:env-ci", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:env-ci", + "target": "npm:java-properties", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:get-stream@8.0.1", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:human-signals@5.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + }, + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + }, + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:stop-iteration-iterator", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-shim-unscopables", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ia32", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-loong64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-mips64el", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ppc64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-riscv64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-s390x", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/sunos-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-ia32", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-x64", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-config-standard", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-config-standard", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "npm:eslint-config-standard", + "target": "npm:eslint-plugin-n", + "type": "static" + }, + { + "source": "npm:eslint-config-standard", + "target": "npm:eslint-plugin-promise", + "type": "static" + }, + { + "source": "npm:eslint-config-standard-jsx", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-config-standard-jsx", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:eslint-plugin-cypress", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-cypress", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:eslint-utils@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint-utils@2.1.0", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.14.2", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:doctrine@2.1.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:strip-bom@3.0.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:eslint-plugin-es", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-n", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:eslint-plugin-promise", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:doctrine@2.1.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@2.1.0", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:globals@13.20.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-eof", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:lru-cache@4.1.5", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:pseudomap", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:yallist@2.1.2", + "type": "static" + }, + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key@2.0.1", + "type": "static" + }, + { + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + }, + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:executable", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:expand-range", + "target": "npm:fill-range@2.2.4", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:isobject@2.1.0", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:randomatic", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:repeat-element", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:isobject@2.1.0", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser@1.20.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:express-urlrewrite", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:express-urlrewrite", + "target": "npm:path-to-regexp@1.8.0", + "type": "static" + }, + { + "source": "npm:path-to-regexp@1.8.0", + "target": "npm:isarray@0.0.1", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:raw-body@2.5.1", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:qs@6.11.0", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:ext-list", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:ext-list", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:sort-keys-length", + "type": "static" + }, + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + }, + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + }, + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + }, + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + }, + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:readable-web-to-node-stream", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:strtok3", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:token-types", + "type": "static" + }, + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:filename-reserved-regex", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:strip-outer", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:trim-repeated", + "type": "static" + }, + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-versions", + "target": "npm:semver-regex", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.0.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:wide-align", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:getos", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:argv-formatter", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:spawn-error-forwarder", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:split2@1.0.0", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:stream-combiner2", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:traverse", + "type": "static" + }, + { + "source": "npm:split2@1.0.0", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:global-dirs", + "target": "npm:ini@2.0.0", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob@3.3.0", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:gopd", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:ansi-red", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:coffee-script", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:toml", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:concat-with-sourcemaps", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:lodash.template", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:har-schema", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:has", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:@assemblyscript/loader", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:pako", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:corser", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:secure-compare", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:union", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:url-join", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:jsprim", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:sshpk", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:humanize-ms", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:icss-utils", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + }, + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@9.0.2", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.2", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-from-esm", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:import-from-esm", + "target": "npm:import-meta-resolve", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:into-stream", + "target": "npm:from2", + "type": "static" + }, + { + "source": "npm:into-stream", + "target": "npm:p-is-promise", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:is-number", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.capitalize", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.escaperegexp", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.uniqby", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream@2.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-pnp-resolver", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/platform-browser-dynamic", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:esbuild-wasm", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:ts-jest", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports@2.0.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@types/prettier", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie@4.1.3", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.3", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.3", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.3", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.3", + "target": "npm:url-parse", + "type": "static" + }, + { + "source": "npm:json-parse-helpfulerror", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:connect-pause", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:errorhandler", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:express-urlrewrite", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:json-parse-helpfulerror", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lodash-id", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lowdb", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:method-override", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:morgan", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:standard", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:verror", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:buffer-equal-constant-time", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:ecdsa-sig-formatter", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:jwa", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:karma-source-map-support", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:keygrip", + "target": "npm:tsscmp", + "type": "static" + }, + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + }, + { + "source": "npm:kind-of", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:lazy-cache", + "target": "npm:set-getter", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:chalk@5.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@7.1.1", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2@5.0.8", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:yaml@2.3.1", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@7.1.1", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:cli-truncate@2.1.0", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:expand-range", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate@2.1.0", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + }, + { + "source": "npm:lockfile", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.templatesettings", + "type": "static" + }, + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:steno", + "type": "static" + }, + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver@6.3.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:diacritics-map", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:gray-matter", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:lazy-cache", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:list-item", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:markdown-link", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:mixin-deep", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:remarkable", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:strip-color", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cardinal", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:supports-hyperlinks", + "type": "static" + }, + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.13.1", + "type": "static" + }, + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:debug@3.1.0", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:debug@3.1.0", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minipass-collect", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-flush", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:for-in", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:is-extendable@1.0.1", + "type": "static" + }, + { + "source": "npm:is-extendable@1.0.1", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:on-finished@2.3.0", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:on-finished@2.3.0", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:ncp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:rimraf@2.4.5", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:rimraf@2.4.5", + "target": "npm:glob@6.0.4", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:nice-napi", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:nice-napi", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:emojilib", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:skin-tone", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:exponential-backoff", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@isaacs/string-locale-compare@1.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/config@8.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/package-json@5.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/promise-spawn@7.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/run-script@7.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@sigstore/tuf@2.2.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:abbrev@2.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:archy@1.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cacache@18.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cli-columns@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:columnify@1.6.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:fastest-levenshtein@1.0.16", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:fs-minipass@3.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ini@4.1.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:init-package-json@6.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:is-cidr@5.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmaccess@8.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmdiff@6.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmexec@7.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmfund@5.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmhook@10.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmorg@6.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmpack@6.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmpublish@9.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmsearch@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmteam@6.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmversion@5.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:make-fetch-happen@13.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:node-gyp@10.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:nopt@7.2.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:normalize-package-data@6.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-audit-report@5.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-install-checks@6.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-pick-manifest@9.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-profile@9.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-user-validate@2.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:parse-conflict-json@3.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:qrcode-terminal@0.12.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ssri@10.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:supports-color@9.4.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:tar@6.2.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:tiny-relative-date@1.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:treeverse@3.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + }, + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:memorystream", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:pidtree@0.3.1", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:string.prototype.padend", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key@2.0.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + }, + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent@2.2.0", + "target": "npm:agent-base@7.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent@2.2.0", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent@2.2.0", + "target": "npm:https-proxy-agent@7.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/agent@2.2.0", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent@2.2.0", + "target": "npm:socks-proxy-agent@8.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@isaacs/string-locale-compare@1.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/metavuln-calculator@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/name-from-folder@2.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/package-json@5.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/query@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/run-script@7.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:bin-links@4.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:cacache@18.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:common-ancestor-path@1.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:json-stringify-nice@1.1.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:nopt@7.2.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-install-checks@6.3.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-pick-manifest@9.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:parse-conflict-json@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:promise-all-reject-late@1.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:promise-call-limit@1.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:ssri@10.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:treeverse@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:ini@4.1.1", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:nopt@7.2.0", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/disparity-colors@3.0.0", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:@npmcli/promise-spawn@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:npm-pick-manifest@9.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@5.0.3", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:@npmcli/name-from-folder@2.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:cacache@18.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:@npmcli/git@5.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:normalize-package-data@6.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn@7.0.0", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/query@3.0.1", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/promise-spawn@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@7.0.2", + "target": "npm:node-gyp@10.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@7.0.2", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@7.0.2", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:@sigstore/bundle@2.1.0", + "target": "npm:@sigstore/protobuf-specs@0.2.1", + "type": "static" + }, + { + "source": "npm:@sigstore/sign@2.2.0", + "target": "npm:@sigstore/bundle@2.1.0", + "type": "static" + }, + { + "source": "npm:@sigstore/sign@2.2.0", + "target": "npm:@sigstore/protobuf-specs@0.2.1", + "type": "static" + }, + { + "source": "npm:@sigstore/sign@2.2.0", + "target": "npm:make-fetch-happen@13.0.0", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf@2.2.0", + "target": "npm:@sigstore/protobuf-specs@0.2.1", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf@2.2.0", + "target": "npm:tuf-js@2.1.0", + "type": "static" + }, + { + "source": "npm:@tufjs/models@2.0.0", + "target": "npm:@tufjs/canonical-json@2.0.0", + "type": "static" + }, + { + "source": "npm:@tufjs/models@2.0.0", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + }, + { + "source": "npm:agent-base@7.1.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@4.0.1", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@4.0.1", + "target": "npm:readable-stream@4.4.2", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:cmd-shim@6.0.2", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:read-cmd-shim@4.0.0", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:builtins", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:fs-minipass@3.0.3", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:minipass-collect@2.0.1", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:ssri@10.0.5", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:tar@6.2.0", + "type": "static" + }, + { + "source": "npm:cacache@18.0.1", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cidr-regex@4.0.3", + "target": "npm:ip-regex@5.0.0", + "type": "static" + }, + { + "source": "npm:cli-columns@4.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-columns@4.0.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:columnify@1.6.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:columnify@1.6.0", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:fs-minipass@3.0.3", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:wide-align", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:jackspeak@2.3.6", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:path-scurry@1.10.1", + "type": "static" + }, + { + "source": "npm:hasown@2.0.0", + "target": "npm:function-bind@1.1.2", + "type": "static" + }, + { + "source": "npm:hosted-git-info@7.0.1", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:agent-base@7.1.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.2", + "target": "npm:agent-base@7.1.0", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:ignore-walk@6.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:promzard@1.0.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:read-package-json@7.0.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:is-cidr@5.0.3", + "target": "npm:cidr-regex@4.0.3", + "type": "static" + }, + { + "source": "npm:is-core-module@2.13.1", + "target": "npm:hasown@2.0.0", + "type": "static" + }, + { + "source": "npm:jackspeak@2.3.6", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak@2.3.6", + "target": "npm:@pkgjs/parseargs", + "type": "static" + }, + { + "source": "npm:libnpmaccess@8.0.2", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:libnpmaccess@8.0.2", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/disparity-colors@3.0.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:diff@5.1.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:tar@6.2.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:@npmcli/run-script@7.0.2", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + }, + { + "source": "npm:libnpmfund@5.0.2", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmhook@10.0.1", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:libnpmhook@10.0.1", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:libnpmorg@6.0.2", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:libnpmorg@6.0.2", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:@npmcli/run-script@7.0.2", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:normalize-package-data@6.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:sigstore@2.1.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:ssri@10.0.5", + "type": "static" + }, + { + "source": "npm:libnpmsearch@7.0.1", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:libnpmteam@6.0.1", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:libnpmteam@6.0.1", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:@npmcli/git@5.0.3", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:@npmcli/run-script@7.0.2", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:@npmcli/agent@2.2.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:cacache@18.0.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:minipass-fetch@3.0.4", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@13.0.0", + "target": "npm:ssri@10.0.5", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:minipass-collect@2.0.1", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.4", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.4", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.4", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.4", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-flush", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:exponential-backoff", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:make-fetch-happen@13.0.0", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:nopt@7.2.0", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:tar@6.2.0", + "type": "static" + }, + { + "source": "npm:node-gyp@10.0.1", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:nopt@7.2.0", + "target": "npm:abbrev@2.0.0", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:is-core-module@2.13.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-install-checks@6.3.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-packlist@8.0.1", + "target": "npm:ignore-walk@6.0.4", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@9.0.0", + "target": "npm:npm-install-checks@6.3.0", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@9.0.0", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@9.0.0", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@9.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-profile@9.0.0", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:npm-profile@9.0.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:make-fetch-happen@13.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:minipass-fetch@3.0.4", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@16.1.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:are-we-there-yet@4.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:gauge@5.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/git@5.0.3", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/promise-spawn@7.0.0", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/run-script@7.0.2", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:cacache@18.0.1", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:fs-minipass@3.0.3", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-packlist@8.0.1", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-pick-manifest@9.0.0", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-registry-fetch@16.1.0", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:read-package-json@7.0.0", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:sigstore@2.1.0", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:ssri@10.0.5", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:tar@6.2.0", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:just-diff@6.0.2", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:just-diff-apply@5.5.0", + "type": "static" + }, + { + "source": "npm:path-scurry@1.10.1", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:path-scurry@1.10.1", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:promzard@1.0.0", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:read@2.1.0", + "target": "npm:mute-stream@1.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json@7.0.0", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:read-package-json@7.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json@7.0.0", + "target": "npm:normalize-package-data@6.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json@7.0.0", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:string_decoder@1.3.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:sigstore@2.1.0", + "target": "npm:@sigstore/bundle@2.1.0", + "type": "static" + }, + { + "source": "npm:sigstore@2.1.0", + "target": "npm:@sigstore/protobuf-specs@0.2.1", + "type": "static" + }, + { + "source": "npm:sigstore@2.1.0", + "target": "npm:@sigstore/sign@2.2.0", + "type": "static" + }, + { + "source": "npm:sigstore@2.1.0", + "target": "npm:@sigstore/tuf@2.2.0", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@8.0.2", + "target": "npm:agent-base@7.1.0", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@8.0.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@8.0.2", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids@3.0.16", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids@3.0.16", + "type": "static" + }, + { + "source": "npm:ssri@10.0.5", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:string_decoder@1.3.0", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:tar@6.2.0", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar@6.2.0", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar@6.2.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar@6.2.0", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar@6.2.0", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar@6.2.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:tuf-js@2.1.0", + "target": "npm:@tufjs/models@2.0.0", + "type": "static" + }, + { + "source": "npm:tuf-js@2.1.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:tuf-js@2.1.0", + "target": "npm:make-fetch-happen@13.0.0", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:are-we-there-yet", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:gauge", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@swc-node/register", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nrwl/tao", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.3.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:@nx/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit@16.5.0", + "target": "npm:@nx/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:@nrwl/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.3.4", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.pick", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:os-filter-obj", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:p-filter", + "target": "npm:p-map@5.5.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:clean-stack@4.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:clean-stack@4.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:p-map@5.5.0", + "target": "npm:aggregate-error@4.0.1", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-locate", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:parse5-sax-parser", + "type": "static" + }, + { + "source": "npm:parse5-htmlparser2-tree-adapter", + "target": "npm:parse5@6.0.1", + "type": "static" + }, + { + "source": "npm:parse5-sax-parser", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:fast-redact", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:on-exit-leak-free", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-abstract-transport@0.5.0", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-std-serializers", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:quick-format-unescaped", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:sonic-boom@2.8.0", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:thread-stream", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport", + "target": "npm:readable-stream@4.4.1", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.1", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.1", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.1", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.1", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport@0.5.0", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport@0.5.0", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:sonic-boom@2.8.0", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:eventemitter-asyncresource", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:hdr-histogram-js", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:hdr-histogram-percentiles-obj", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:nice-napi", + "type": "static" + }, + { + "source": "npm:pkg-conf", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:pkg-conf", + "target": "npm:load-json-file@5.3.0", + "type": "static" + }, + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@5.3.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@5.3.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@5.3.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:load-json-file@5.3.0", + "target": "npm:strip-bom@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@5.3.0", + "target": "npm:type-fest@0.3.1", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:please-upgrade-node", + "target": "npm:semver-compare", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:async@2.6.4", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:async@2.6.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:read-cache", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig@8.2.0", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig-typescript-loader@4.3.0", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader@4.3.0", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader@4.3.0", + "target": "npm:cosmiconfig@8.2.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader@4.3.0", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:cosmiconfig-typescript-loader@4.3.0", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-extract-imports", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:is-number@4.0.0", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:math-random", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini@1.3.8", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:read-cache", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.1", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:minimatch@9.0.2", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob@10.3.1", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.2", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:find-up-simple", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@9.0.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:hosted-git-info@7.0.1", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data@6.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:index-to-position", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:normalize-package-data@6.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:parse-json@8.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:unicorn-magic", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-web-to-node-stream", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:redeyed", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:@pnpm/npm-conf", + "type": "static" + }, + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + }, + { + "source": "npm:remarkable", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:remarkable", + "target": "npm:autolinker", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:jsonfile@5.0.0", + "type": "static" + }, + { + "source": "npm:jsonfile@5.0.0", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:jsonfile@5.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:har-validator", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:http-signature@1.2.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:oauth-sign", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:qs@6.5.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:request-progress", + "target": "npm:throttleit", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:jsprim@1.4.2", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:sshpk", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.2", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.2", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.2", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.2", + "target": "npm:verror", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:adjust-sourcemap-loader", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:rollup", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/commit-analyzer", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/github", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/npm", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/release-notes-generator", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:env-ci", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:figures@6.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:find-versions", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:git-log-parser", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:hook-std", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:marked-terminal", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:p-each-series", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:p-reduce@3.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:signale", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:clean-stack@5.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:clean-stack@5.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:get-stream@8.0.1", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:human-signals@5.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + }, + { + "source": "npm:figures@6.0.1", + "target": "npm:is-unicode-supported@2.0.0", + "type": "static" + }, + { + "source": "npm:hosted-git-info@7.0.1", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:semver-diff", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:semver-truncate", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:set-getter", + "target": "npm:to-object-path", + "type": "static" + }, + { + "source": "npm:shallow-clone", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:figures@2.0.0", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:pkg-conf@2.1.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:figures@2.0.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + }, + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + }, + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + }, + { + "source": "npm:pkg-conf@2.1.0", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:pkg-conf@2.1.0", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:skin-tone", + "target": "npm:unicode-emoji-modifier-base", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:sonic-boom", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:sort-keys-length", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:btoa", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:temp", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:asn1", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:dashdash", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:getpass", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:tweetnacl", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint@8.44.0", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint-config-standard", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint-config-standard-jsx", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint-plugin-n", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint-plugin-promise", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:standard-engine", + "type": "static" + }, + { + "source": "npm:standard", + "target": "npm:version-guard", + "type": "static" + }, + { + "source": "npm:standard-engine", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:standard-engine", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:standard-engine", + "target": "npm:pkg-conf", + "type": "static" + }, + { + "source": "npm:standard-engine", + "target": "npm:xdg-basedir", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array@0.11.10", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array@0.11.10", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array@0.11.10", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@eslint/eslintrc@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@humanwhocodes/config-array@0.11.10", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:find-up@5.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:eslint@8.44.0", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:find-up@5.0.0", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up@5.0.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:globals@13.20.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:steno", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:stop-iteration-iterator", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:stream-combiner2", + "target": "npm:duplexer2", + "type": "static" + }, + { + "source": "npm:stream-combiner2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point@3.0.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:peek-readable", + "type": "static" + }, + { + "source": "npm:style-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:fast-glob@3.3.0", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select@5.1.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domutils@3.1.0", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:domhandler@5.0.3", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:dom-serializer@2.0.0", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:temp", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:temp", + "target": "npm:rimraf@2.6.3", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:rimraf@2.6.3", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@2.19.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:thread-stream", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:to-object-path", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:to-regex-range", + "target": "npm:is-number@7.0.0", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:trim-repeated", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom@3.0.0", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + }, + { + "source": "npm:union", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/local-storage", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/logger-7", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/middleware", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/search", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/signature", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/streams", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/tarball", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/ui-theme", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:clipanion", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:cookies", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:express-rate-limit", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:fast-safe-stringify", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:kleur@4.1.5", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mime@3.0.0", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mv", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:pkginfo", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:semver@7.5.1", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:verdaccio-audit", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:verdaccio-htpasswd", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:@verdaccio/file-locking@11.0.0-6-next.7", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:apache-md5", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:bcryptjs", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:unix-crypt-td-js", + "type": "static" + }, + { + "source": "npm:@verdaccio/file-locking@11.0.0-6-next.7", + "target": "npm:lockfile", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:semver@7.5.1", + "target": "npm:lru-cache@6.0.0", + "type": "static" + }, + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:core-util-is@1.0.2", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:rollup", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.1.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware@5.3.3", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:typed-assert", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@8.0.1", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:cliui@8.0.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@8.0.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@8.0.1", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:nanoclone", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:property-expr", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:toposort", + "type": "static" + }, + { + "source": "npm:zone.js", + "target": "npm:tslib", + "type": "static" + } + ] +} \ No newline at end of file diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json new file mode 100644 index 0000000..3920dea --- /dev/null +++ b/.nx/cache/project-graph.json @@ -0,0 +1,586 @@ +{ + "nodes": { + "tooling-nx-plugin-generators": { + "name": "tooling-nx-plugin-generators", + "type": "lib", + "data": { + "root": "libs/tooling/nx-plugin/generators", + "name": "tooling-nx-plugin-generators", + "targets": { + "nx-release-publish": { + "dependsOn": [ + "^nx-release-publish" + ], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + }, + "build": { + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], + "executor": "@nx/js:tsc", + "outputs": [ + "{options.outputPath}" + ], + "options": { + "outputPath": "dist/libs/tooling/nx-plugin/generators", + "main": "libs/tooling/nx-plugin/generators/src/index.ts", + "tsConfig": "libs/tooling/nx-plugin/generators/tsconfig.lib.json", + "assets": [ + "libs/tooling/nx-plugin/generators/*.md" + ] + }, + "configurations": {} + }, + "publish": { + "dependsOn": [ + "build" + ], + "executor": "nx:run-commands", + "options": { + "command": "node tools/scripts/publish.mjs tooling-generators {args.ver} {args.tag}" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.json", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": [ + "{options.outputFile}" + ], + "options": { + "lintFilePatterns": [ + "libs/tooling/nx-plugin/generators/**/*.ts", + "libs/tooling/nx-plugin/generators/generators.json", + "libs/tooling/nx-plugin/generators/package.json" + ] + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "^production", + "{workspaceRoot}/jest.preset.js" + ], + "executor": "@nx/jest:jest", + "outputs": [ + "{workspaceRoot}/coverage/{projectRoot}" + ], + "options": { + "jestConfig": "libs/tooling/nx-plugin/generators/jest.config.ts", + "passWithNoTests": true + }, + "configurations": { + "ci": { + "ci": true, + "codeCoverage": true + } + } + }, + "release": { + "executor": "nx-release:build-update-publish", + "options": { + "libName": "@ax/nx-plugin-generators" + }, + "configurations": {} + } + }, + "$schema": "../../../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/tooling/nx-plugin/generators/src", + "projectType": "library", + "tags": [ + "scope:tooling" + ], + "implicitDependencies": [] + } + }, + "tooling-nx-plugin-validators": { + "name": "tooling-nx-plugin-validators", + "type": "lib", + "data": { + "root": "libs/tooling/nx-plugin/validators", + "name": "tooling-nx-plugin-validators", + "targets": { + "nx-release-publish": { + "dependsOn": [ + "^nx-release-publish" + ], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + }, + "build": { + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], + "executor": "@nx/js:tsc", + "outputs": [ + "{options.outputPath}" + ], + "options": { + "outputPath": "dist/libs/tooling/nx-plugin/validators", + "main": "libs/tooling/nx-plugin/validators/src/index.ts", + "tsConfig": "libs/tooling/nx-plugin/validators/tsconfig.lib.json", + "assets": [ + "libs/tooling/nx-plugin/validators/*.md" + ] + }, + "configurations": {} + }, + "publish": { + "dependsOn": [ + "build" + ], + "executor": "nx:run-commands", + "options": { + "command": "node tools/scripts/publish.mjs tooling-validators {args.ver} {args.tag}" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.json", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": [ + "{options.outputFile}" + ], + "options": { + "lintFilePatterns": [ + "libs/tooling/nx-plugin/validators/**/*.ts", + "libs/tooling/nx-plugin/validators/generators.json", + "libs/tooling/nx-plugin/validators/package.json" + ] + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "^production", + "{workspaceRoot}/jest.preset.js" + ], + "executor": "@nx/jest:jest", + "outputs": [ + "{workspaceRoot}/coverage/{projectRoot}" + ], + "options": { + "jestConfig": "libs/tooling/nx-plugin/validators/jest.config.ts", + "passWithNoTests": true + }, + "configurations": { + "ci": { + "ci": true, + "codeCoverage": true + } + } + }, + "release": { + "executor": "nx-release:build-update-publish", + "options": { + "libName": "@ax/nx-plugin-validators" + }, + "configurations": {} + } + }, + "$schema": "../../../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/tooling/nx-plugin/validators/src", + "projectType": "library", + "tags": [ + "scope:tooling" + ], + "implicitDependencies": [] + } + }, + "tooling-nx-plugin-config": { + "name": "tooling-nx-plugin-config", + "type": "lib", + "data": { + "root": "libs/tooling/nx-plugin/config", + "name": "tooling-nx-plugin-config", + "targets": { + "nx-release-publish": { + "dependsOn": [ + "^nx-release-publish" + ], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + }, + "build": { + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], + "executor": "@nx/js:tsc", + "outputs": [ + "{options.outputPath}" + ], + "options": { + "outputPath": "dist/libs/tooling/nx-plugin/config", + "main": "libs/tooling/nx-plugin/config/src/index.ts", + "tsConfig": "libs/tooling/nx-plugin/config/tsconfig.lib.json", + "assets": [ + "libs/tooling/nx-plugin/config/*.md" + ] + }, + "configurations": {} + }, + "publish": { + "dependsOn": [ + "build" + ], + "executor": "nx:run-commands", + "options": { + "command": "node tools/scripts/publish.mjs config {args.ver} {args.tag}" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.json", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": [ + "{options.outputFile}" + ], + "options": { + "lintFilePatterns": [ + "libs/tooling/nx-plugin/config/**/*.ts" + ] + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "^production", + "{workspaceRoot}/jest.preset.js" + ], + "executor": "@nx/jest:jest", + "outputs": [ + "{workspaceRoot}/coverage/{projectRoot}" + ], + "options": { + "jestConfig": "libs/tooling/nx-plugin/config/jest.config.ts", + "passWithNoTests": true + }, + "configurations": { + "ci": { + "ci": true, + "codeCoverage": true + } + } + }, + "release": { + "executor": "nx-release:build-update-publish", + "options": { + "libName": "@ax/nx-plugin-config" + }, + "configurations": {} + } + }, + "$schema": "../../../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/tooling/nx-plugin/config/src", + "projectType": "library", + "tags": [ + "scope:tooling" + ], + "implicitDependencies": [] + } + }, + "ax-nx-plugin-workspace": { + "name": "ax-nx-plugin-workspace", + "type": "lib", + "data": { + "root": ".", + "name": "ax-nx-plugin-workspace", + "targets": { + "prepare": { + "executor": "nx:run-script", + "options": { + "script": "prepare" + }, + "configurations": {} + }, + "g": { + "executor": "nx:run-script", + "options": { + "script": "g" + }, + "configurations": {} + }, + "g:dry": { + "executor": "nx:run-script", + "options": { + "script": "g:dry" + }, + "configurations": {} + }, + "g:app": { + "executor": "nx:run-script", + "options": { + "script": "g:app" + }, + "configurations": {} + }, + "g:lib": { + "executor": "nx:run-script", + "options": { + "script": "g:lib" + }, + "configurations": {} + }, + "g:scope": { + "executor": "nx:run-script", + "options": { + "script": "g:scope" + }, + "configurations": {} + }, + "g:scope:dry": { + "executor": "nx:run-script", + "options": { + "script": "g:scope:dry" + }, + "configurations": {} + }, + "g:remove": { + "executor": "nx:run-script", + "options": { + "script": "g:remove" + }, + "configurations": {} + }, + "g:remove:dry": { + "executor": "nx:run-script", + "options": { + "script": "g:remove:dry" + }, + "configurations": {} + }, + "g:init": { + "executor": "nx:run-script", + "options": { + "script": "g:init" + }, + "configurations": {} + }, + "g:init:dry": { + "executor": "nx:run-script", + "options": { + "script": "g:init:dry" + }, + "configurations": {} + }, + "g:move": { + "executor": "nx:run-script", + "options": { + "script": "g:move" + }, + "configurations": {} + }, + "g:move:dry": { + "executor": "nx:run-script", + "options": { + "script": "g:move:dry" + }, + "configurations": {} + }, + "g:app:dry": { + "executor": "nx:run-script", + "options": { + "script": "g:app:dry" + }, + "configurations": {} + }, + "validate": { + "executor": "nx:run-script", + "options": { + "script": "validate" + }, + "configurations": {} + }, + "validate:fix": { + "executor": "nx:run-script", + "options": { + "script": "validate:fix" + }, + "configurations": {} + }, + "graph": { + "executor": "nx:run-script", + "options": { + "script": "graph" + }, + "configurations": {} + }, + "readme:toc": { + "executor": "nx:run-script", + "options": { + "script": "readme:toc" + }, + "configurations": {} + }, + "reset": { + "executor": "nx:run-script", + "options": { + "script": "reset" + }, + "configurations": {} + }, + "test:tooling-nx-plugin": { + "executor": "nx:run-script", + "options": { + "script": "test:tooling-nx-plugin" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.json", + "{workspaceRoot}/.eslintignore" + ], + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "^production", + "{workspaceRoot}/jest.preset.js" + ], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "e2e": { + "inputs": [ + "default", + "^production" + ], + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "build": { + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build:generators": { + "executor": "nx:run-script", + "options": { + "script": "build:generators" + }, + "configurations": {} + }, + "build:validators": { + "executor": "nx:run-script", + "options": { + "script": "build:validators" + }, + "configurations": {} + }, + "format:test": { + "executor": "nx:run-script", + "options": { + "script": "format:test" + }, + "configurations": {} + }, + "format:write": { + "executor": "nx:run-script", + "options": { + "script": "format:write" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": [ + "^nx-release-publish" + ], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + }, + "local-registry": { + "executor": "@nx/js:verdaccio", + "options": { + "port": 4873, + "config": ".verdaccio/config.yml", + "storage": "tmp/local-registry/storage" + }, + "configurations": {} + } + }, + "$schema": "node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + } + }, + "externalNodes": {}, + "dependencies": { + "tooling-nx-plugin-generators": [ + { + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-config", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-validators", + "type": "static" + } + ], + "tooling-nx-plugin-validators": [ + { + "source": "tooling-nx-plugin-validators", + "target": "tooling-nx-plugin-config", + "type": "static" + } + ], + "tooling-nx-plugin-config": [], + "ax-nx-plugin-workspace": [] + }, + "version": "6.0" +} diff --git a/migrations.json b/migrations.json index abd3369..2cca2f0 100644 --- a/migrations.json +++ b/migrations.json @@ -49,27 +49,27 @@ }, { "cli": "nx", - "version": "16.6.0-beta.0", - "description": "Explicitly set 'updateBuildableProjectDepsInPackageJson' to 'true' in targets that rely on that value as the default.", - "factory": "./src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps", - "package": "@nx/angular", - "name": "explicitly-set-projects-to-update-buildable-deps" + "version": "17-2-6-beta.1", + "description": "Rename workspace rules from @nx/workspace/name to @nx/workspace-name", + "implementation": "./src/migrations/update-17-2-6-rename-workspace-rules/rename-workspace-rules", + "package": "@nx/eslint-plugin", + "name": "update-17-2-6-rename-workspace-rules" }, { "cli": "nx", - "version": "17.2.0-beta.2", - "description": "Rename '@nx/angular:webpack-dev-server' executor to '@nx/angular:dev-server'", - "factory": "./src/migrations/update-17-2-0/rename-webpack-dev-server", - "package": "@nx/angular", - "name": "rename-webpack-dev-server-executor" + "version": "16.8.0-beta.4", + "description": "Update to Cypress v13. Most noteable change is video recording is off by default. This migration will only update if the workspace is already on Cypress v12. https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-130", + "implementation": "./src/migrations/update-16-8-0/cypress-13", + "package": "@nx/cypress", + "name": "update-16-8-0-cypress-13" }, { "cli": "nx", - "version": "17-2-6-beta.1", - "description": "Rename workspace rules from @nx/workspace/name to @nx/workspace-name", - "implementation": "./src/migrations/update-17-2-6-rename-workspace-rules/rename-workspace-rules", - "package": "@nx/eslint-plugin", - "name": "update-17-2-6-rename-workspace-rules" + "version": "16.9.0-beta.1", + "description": "Replace imports of Module Federation utils frm @nx/devkit to @nx/webpack", + "implementation": "./src/migrations/update-16-9-0/migrate-mf-util-usage", + "package": "@nx/devkit", + "name": "update-16-9-0-migrate-mf-usage-to-webpack" }, { "cli": "nx", @@ -95,6 +95,22 @@ "package": "@nx/js", "name": "update-17-0-0-remove-deprecated-build-options" }, + { + "cli": "nx", + "version": "16.6.0-beta.0", + "description": "Explicitly set 'updateBuildableProjectDepsInPackageJson' to 'true' in targets that rely on that value as the default.", + "factory": "./src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps", + "package": "@nx/angular", + "name": "explicitly-set-projects-to-update-buildable-deps" + }, + { + "cli": "nx", + "version": "17.2.0-beta.2", + "description": "Rename '@nx/angular:webpack-dev-server' executor to '@nx/angular:dev-server'", + "factory": "./src/migrations/update-17-2-0/rename-webpack-dev-server", + "package": "@nx/angular", + "name": "rename-webpack-dev-server-executor" + }, { "cli": "nx", "version": "16.5.0-beta.2", @@ -110,22 +126,6 @@ "package": "@nx/jest", "name": "move-options-to-target-defaults" }, - { - "cli": "nx", - "version": "16.9.0-beta.1", - "description": "Replace imports of Module Federation utils frm @nx/devkit to @nx/webpack", - "implementation": "./src/migrations/update-16-9-0/migrate-mf-util-usage", - "package": "@nx/devkit", - "name": "update-16-9-0-migrate-mf-usage-to-webpack" - }, - { - "cli": "nx", - "version": "16.8.0-beta.4", - "description": "Update to Cypress v13. Most noteable change is video recording is off by default. This migration will only update if the workspace is already on Cypress v12. https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-130", - "implementation": "./src/migrations/update-16-8-0/cypress-13", - "package": "@nx/cypress", - "name": "update-16-8-0-cypress-13" - }, { "version": "16.8.0", "description": "update-16-8-0-add-ignored-files", diff --git a/package-lock.json b/package-lock.json index 1e0f9d4..564cddc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7 +1,7 @@ { "name": "ax-nx-plugin-workspace", "version": "0.0.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { @@ -9,61 +9,61 @@ "version": "0.0.0", "license": "MIT", "dependencies": { - "@angular/animations": "~16.0.0", - "@angular/cdk": "^16.0.2", - "@angular/common": "~16.0.0", - "@angular/compiler": "~16.0.0", - "@angular/core": "~16.0.0", - "@angular/forms": "~16.0.0", - "@angular/platform-browser": "~16.0.0", - "@angular/platform-browser-dynamic": "~16.0.0", - "@angular/router": "~16.0.0", - "@ngrx/store": "^16.0.1", + "@angular/animations": "^17.0.7", + "@angular/cdk": "^17.0.4", + "@angular/common": "^17.0.7", + "@angular/compiler": "^17.0.7", + "@angular/core": "^17.0.7", + "@angular/forms": "^17.0.7", + "@angular/platform-browser": "^17.0.7", + "@angular/platform-browser-dynamic": "^17.0.7", + "@angular/router": "^17.0.7", + "@ngrx/store": "^17.0.1", "@types/inquirer": "^9.0.3", "chalk": "^4.1.2", "rxjs": "~7.8.0", "tslib": "^2.3.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.0" }, "devDependencies": { - "@angular-devkit/build-angular": "~16.0.0", - "@angular-devkit/core": "~16.0.0", - "@angular-devkit/schematics": "~16.0.0", - "@angular-eslint/eslint-plugin": "~16.0.0", - "@angular-eslint/eslint-plugin-template": "~16.0.0", - "@angular-eslint/template-parser": "~16.0.0", - "@angular/cli": "~16.0.0", - "@angular/compiler-cli": "~16.0.0", - "@angular/language-service": "~16.0.0", - "@nx/angular": "^16.1.4", - "@nx/cypress": "16.4.2", - "@nx/devkit": "^16.1.3", - "@nx/eslint-plugin": "16.1.1", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.1.1", - "@nx/plugin": "^16.1.2", - "@nx/web": "16.4.2", - "@nx/workspace": "16.1.1", + "@angular-devkit/build-angular": "^17.0.7", + "@angular-devkit/core": "^17.0.7", + "@angular-devkit/schematics": "^17.0.7", + "@angular-eslint/eslint-plugin": "^17.0.7", + "@angular-eslint/eslint-plugin-template": "^17.0.7", + "@angular-eslint/template-parser": "^17.0.7", + "@angular/cli": "^17.0.7", + "@angular/compiler-cli": "^17.0.7", + "@angular/language-service": "^17.0.7", + "@nx/angular": "17.2.6", + "@nx/cypress": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/eslint-plugin": "17.2.6", + "@nx/jest": "17.2.6", + "@nx/js": "17.2.6", + "@nx/linter": "17.2.6", + "@nx/plugin": "17.2.6", + "@nx/web": "17.2.6", + "@nx/workspace": "17.2.6", "@schematics/angular": "~16.0.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^11.1.0", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/release-notes-generator": "^12.1.0", - "@swc-node/register": "~1.4.2", + "@swc-node/register": "1.6.8", "@swc/cli": "~0.1.62", - "@swc/core": "~1.3.51", - "@swc/helpers": "^0.5.1", + "@swc/core": "1.3.101", + "@swc/helpers": "0.5.3", "@types/jest": "^29.4.0", - "@types/node": "18.7.1", - "@typescript-eslint/eslint-plugin": "^5.58.0", - "@typescript-eslint/parser": "^5.58.0", + "@types/node": "18.16.9", + "@typescript-eslint/eslint-plugin": "6.15.0", + "@typescript-eslint/parser": "6.15.0", "conventional-changelog-conventionalcommits": "^7.0.2", "cypress": "^12.11.0", - "eslint": "~8.15.0", - "eslint-config-prettier": "8.1.0", - "eslint-plugin-cypress": "^2.10.3", + "eslint": "8.48.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-cypress": "2.15.1", "handlebars": "^4.7.7", "http-server": "^14.1.1", "husky": "^8.0.3", @@ -71,20 +71,20 @@ "inquirer-autocomplete-prompt": "^2.0.0", "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", - "jest-preset-angular": "^13.1.1", + "jest-preset-angular": "13.1.4", "json-server": "^0.17.3", "jsonc-eslint-parser": "^2.2.0", "lint-staged": "^13.2.2", "markdown-toc": "^1.2.0", "npm-run-all": "^4.1.5", - "nx": "16.1.1", + "nx": "17.2.6", "nx-release": "^3.1.6", "prettier": "^2.6.2", "replace-json-property": "^1.9.0", "source-map-explorer": "^2.5.3", "ts-jest": "^29.1.0", "ts-node": "10.9.1", - "typescript": "~5.0.2", + "typescript": "5.2.2", "verdaccio": "^5.0.4" } }, @@ -98,9 +98,9 @@ } }, "node_modules/@adobe/css-tools": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", - "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz", + "integrity": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==", "dev": true }, "node_modules/@ampproject/remapping": { @@ -117,111 +117,112 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.6.tgz", - "integrity": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==", + "version": "0.1700.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1700.7.tgz", + "integrity": "sha512-32uitQKsYLGXAKoXBsmOnPsTt9pS+b9cnFI9ZvBFVhJ31I2EOM7vGcMFalhTxdB/DkVHk4TyO78efV0V26DwCA==", "dev": true, "dependencies": { - "@angular-devkit/core": "16.0.6", + "@angular-devkit/core": "17.0.7", "rxjs": "7.8.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/build-angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.0.6.tgz", - "integrity": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.0.7.tgz", + "integrity": "sha512-AtEzLk6n6BXqQzk0Bsupe6GV0IgUe7RbpBfqROi+NZqMA7OUAHCX3xA6M68Qu+5KxBtW7T5lHeZZ7iP/y39wtQ==", "dev": true, "dependencies": { "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/build-webpack": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@babel/core": "7.21.4", - "@babel/generator": "7.21.4", - "@babel/helper-annotate-as-pure": "7.18.6", - "@babel/helper-split-export-declaration": "7.18.6", - "@babel/plugin-proposal-async-generator-functions": "7.20.7", - "@babel/plugin-transform-async-to-generator": "7.20.7", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.4", - "@babel/runtime": "7.21.0", - "@babel/template": "7.20.7", + "@angular-devkit/architect": "0.1700.7", + "@angular-devkit/build-webpack": "0.1700.7", + "@angular-devkit/core": "17.0.7", + "@babel/core": "7.23.2", + "@babel/generator": "7.23.0", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "@babel/plugin-transform-async-generator-functions": "7.23.2", + "@babel/plugin-transform-async-to-generator": "7.22.5", + "@babel/plugin-transform-runtime": "7.23.2", + "@babel/preset-env": "7.23.2", + "@babel/runtime": "7.23.2", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "16.0.6", + "@ngtools/webpack": "17.0.7", "@vitejs/plugin-basic-ssl": "1.0.1", "ansi-colors": "4.1.3", - "autoprefixer": "10.4.14", - "babel-loader": "9.1.2", + "autoprefixer": "10.4.16", + "babel-loader": "9.1.3", "babel-plugin-istanbul": "6.1.1", - "browserslist": "4.21.5", - "cacache": "17.0.6", + "browser-sync": "2.29.3", + "browserslist": "^4.21.5", "chokidar": "3.5.3", "copy-webpack-plugin": "11.0.0", - "critters": "0.0.16", - "css-loader": "6.7.3", - "esbuild-wasm": "0.17.18", - "glob": "8.1.0", - "https-proxy-agent": "5.0.1", - "inquirer": "8.2.4", + "critters": "0.0.20", + "css-loader": "6.8.1", + "esbuild-wasm": "0.19.5", + "fast-glob": "3.3.1", + "http-proxy-middleware": "2.0.6", + "https-proxy-agent": "7.0.2", + "inquirer": "9.2.11", "jsonc-parser": "3.2.0", "karma-source-map-support": "1.4.0", - "less": "4.1.3", + "less": "4.2.0", "less-loader": "11.1.0", "license-webpack-plugin": "4.0.2", "loader-utils": "3.2.1", - "magic-string": "0.30.0", - "mini-css-extract-plugin": "2.7.5", + "magic-string": "0.30.5", + "mini-css-extract-plugin": "2.7.6", "mrmime": "1.0.1", "open": "8.4.2", "ora": "5.4.1", "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "2.3.1", - "piscina": "3.2.0", - "postcss": "8.4.23", - "postcss-loader": "7.2.4", + "picomatch": "3.0.1", + "piscina": "4.1.0", + "postcss": "8.4.31", + "postcss-loader": "7.3.3", "resolve-url-loader": "5.0.0", "rxjs": "7.8.1", - "sass": "1.62.1", - "sass-loader": "13.2.2", - "semver": "7.4.0", + "sass": "1.69.5", + "sass-loader": "13.3.2", + "semver": "7.5.4", "source-map-loader": "4.0.1", "source-map-support": "0.5.21", - "terser": "5.17.1", + "terser": "5.24.0", "text-table": "0.2.0", "tree-kill": "1.2.2", - "tslib": "2.5.0", - "vite": "4.3.9", - "webpack": "5.80.0", - "webpack-dev-middleware": "6.0.2", - "webpack-dev-server": "4.13.2", - "webpack-merge": "5.8.0", + "tslib": "2.6.2", + "undici": "5.27.2", + "vite": "4.5.1", + "webpack": "5.89.0", + "webpack-dev-middleware": "6.1.1", + "webpack-dev-server": "4.15.1", + "webpack-merge": "5.10.0", "webpack-subresource-integrity": "5.1.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.17.18" + "esbuild": "0.19.5" }, "peerDependencies": { - "@angular/compiler-cli": "^16.0.0", - "@angular/localize": "^16.0.0", - "@angular/platform-server": "^16.0.0", - "@angular/service-worker": "^16.0.0", + "@angular/compiler-cli": "^17.0.0", + "@angular/localize": "^17.0.0", + "@angular/platform-server": "^17.0.0", + "@angular/service-worker": "^17.0.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "karma": "^6.3.0", - "ng-packagr": "^16.0.0", + "ng-packagr": "^17.0.0", "protractor": "^7.0.0", "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=4.9.3 <5.1" + "typescript": ">=5.2 <5.3" }, "peerDependenciesMeta": { "@angular/localize": { @@ -253,49 +254,122 @@ } } }, + "node_modules/@angular-devkit/build-angular/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/figures": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", + "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^5.0.0", + "is-unicode-supported": "^1.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@angular-devkit/build-angular/node_modules/inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "version": "9.2.11", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.11.tgz", + "integrity": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", + "@ljharb/through": "^2.3.9", + "ansi-escapes": "^4.3.2", + "chalk": "^5.3.0", "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", + "cli-width": "^4.1.0", + "external-editor": "^3.1.0", + "figures": "^5.0.0", "lodash": "^4.17.21", - "mute-stream": "0.0.8", + "mute-stream": "1.0.0", "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "run-async": "^3.0.0", + "rxjs": "^7.8.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=14.18.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "dev": true + "node_modules/@angular-devkit/build-angular/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/run-async": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", + "integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1600.6.tgz", - "integrity": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==", + "version": "0.1700.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1700.7.tgz", + "integrity": "sha512-B9Mg/qYDpE5my8PJ3VPQyRSUV0Oq1bFUzU8s0ZpqEZl1URKc04pm0LtLmebrMIcUZgDiGk0RHaD+O1E9IV/bdQ==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1600.6", + "@angular-devkit/architect": "0.1700.7", "rxjs": "7.8.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -305,19 +379,20 @@ } }, "node_modules/@angular-devkit/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", - "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.0.7.tgz", + "integrity": "sha512-vATobHo5O5tJba424hJfQWLb40GzvZPNsI74dcgSUTgrDph8ksmk5xB9OvEvf0INorQZ2IMphj/VIWj4/+JqSA==", "dev": true, "dependencies": { "ajv": "8.12.0", "ajv-formats": "2.1.1", "jsonc-parser": "3.2.0", + "picomatch": "3.0.1", "rxjs": "7.8.1", "source-map": "0.7.4" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -331,37 +406,37 @@ } }, "node_modules/@angular-devkit/schematics": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", - "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.0.7.tgz", + "integrity": "sha512-BY11OkJkM3xyXcvyD7x5kGY/c8Ufd4AfPvI0D9imhVxbns45Q48b1DlvCQvSnCJ/s+OwnkrYb/Efa70ZiaGu8A==", "dev": true, "dependencies": { - "@angular-devkit/core": "16.0.6", + "@angular-devkit/core": "17.0.7", "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", + "magic-string": "0.30.5", "ora": "5.4.1", "rxjs": "7.8.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz", - "integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==", + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-17.1.1.tgz", + "integrity": "sha512-xRlSh9qjdUdUKAy/0UQsxX7wf1tHApAsHsfismebPriqfmVAPyEg4HBrM8ImWaZxiqaTGC1AyHsUBQD5FK8o6w==", "dev": true }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz", - "integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==", + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-17.1.1.tgz", + "integrity": "sha512-fFOBlCOVObVu3gjLj+0BypqO1ZR/0bfJnDElqMdYwJG7zRaFT8NNQbrOo/q/GQoqOFoNna6mw3teTGsd5JnL2A==", "dev": true, "dependencies": { - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/utils": "5.59.7" + "@angular-eslint/utils": "17.1.1", + "@typescript-eslint/utils": "6.13.1" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -369,17 +444,17 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz", - "integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==", + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-17.1.1.tgz", + "integrity": "sha512-unZ6QNwtxuB8Eni7UPdw7uK6iZipZUXIsH+ZuLMOxwFgGMqeRnpv8SW0212rto3d/Ec0jESzVHKcwZ9pT+jxgw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/type-utils": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "aria-query": "5.1.3", - "axobject-query": "3.1.1" + "@angular-eslint/bundled-angular-compiler": "17.1.1", + "@angular-eslint/utils": "17.1.1", + "@typescript-eslint/type-utils": "6.13.1", + "@typescript-eslint/utils": "6.13.1", + "aria-query": "5.3.0", + "axobject-query": "4.0.0" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -387,12 +462,12 @@ } }, "node_modules/@angular-eslint/template-parser": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz", - "integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==", + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-17.1.1.tgz", + "integrity": "sha512-ofL46rNhRVeSxrSQF0vwhKMco+vJuo+ZGjSOzFmT9N3KAMB0j+WXTbpyGGMy0gQSBc4W6p+j+zxGa2CR2xb6wA==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", + "@angular-eslint/bundled-angular-compiler": "17.1.1", "eslint-scope": "^7.0.0" }, "peerDependencies": { @@ -401,13 +476,13 @@ } }, "node_modules/@angular-eslint/utils": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-16.0.3.tgz", - "integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==", + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.1.1.tgz", + "integrity": "sha512-CTNPOb05S/DII/Fm8JYUvKo+B4u/ctHjGJ0X1YXUR0q31oaGqTE3KePGq76+Y6swRDf9NjUIcfcnZp3u3j4CBQ==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@typescript-eslint/utils": "5.59.7" + "@angular-eslint/bundled-angular-compiler": "17.1.1", + "@typescript-eslint/utils": "6.13.1" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -415,23 +490,23 @@ } }, "node_modules/@angular/animations": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.6.tgz", - "integrity": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-17.0.7.tgz", + "integrity": "sha512-IjZjPGMxvi2a9o7fzjwNO44FvhTZlVSgcPtqM6Glq0+WVeQcnZxf1Onj68M/FGx2AunS8elRbrgPxTexVeSo7A==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "16.0.6" + "@angular/core": "17.0.7" } }, "node_modules/@angular/cdk": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.1.3.tgz", - "integrity": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==", + "version": "17.0.4", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.0.4.tgz", + "integrity": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==", "dependencies": { "tslib": "^2.3.0" }, @@ -439,33 +514,33 @@ "parse5": "^7.1.2" }, "peerDependencies": { - "@angular/common": "^16.0.0 || ^17.0.0", - "@angular/core": "^16.0.0 || ^17.0.0", + "@angular/common": "^17.0.0 || ^18.0.0", + "@angular/core": "^17.0.0 || ^18.0.0", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.0.6.tgz", - "integrity": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.0.7.tgz", + "integrity": "sha512-oSa0GVAQNA7wFbLJYeaO3kV4iUcbKEqXDLxcIE8s1GfHddBOlXH2P1T4fXonCBl5qvV+joP0G0+fs7I0w2utZQ==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "@schematics/angular": "16.0.6", + "@angular-devkit/architect": "0.1700.7", + "@angular-devkit/core": "17.0.7", + "@angular-devkit/schematics": "17.0.7", + "@schematics/angular": "17.0.7", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.3", - "ini": "4.0.0", - "inquirer": "8.2.4", + "ini": "4.1.1", + "inquirer": "9.2.11", "jsonc-parser": "3.2.0", - "npm-package-arg": "10.1.0", - "npm-pick-manifest": "8.0.1", + "npm-package-arg": "11.0.1", + "npm-pick-manifest": "9.0.0", "open": "8.4.2", "ora": "5.4.1", - "pacote": "15.1.3", - "resolve": "1.22.2", - "semver": "7.4.0", + "pacote": "17.0.4", + "resolve": "1.22.8", + "semver": "7.5.4", "symbol-observable": "4.0.0", "yargs": "17.7.2" }, @@ -473,64 +548,159 @@ "ng": "bin/ng.js" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular/cli/node_modules/@schematics/angular": { + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.0.7.tgz", + "integrity": "sha512-d7QKmcKrM4owb/2bR7Ipf23roiNbvbD/x7reNhQAtKAPLSHJ3Ulkf1+Yv+dj+9f+K7y9SBviEUSrD27BQ9WaxQ==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "17.0.7", + "@angular-devkit/schematics": "17.0.7", + "jsonc-parser": "3.2.0" + }, + "engines": { + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, + "node_modules/@angular/cli/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@angular/cli/node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@angular/cli/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@angular/cli/node_modules/figures": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", + "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^5.0.0", + "is-unicode-supported": "^1.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@angular/cli/node_modules/inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", + "version": "9.2.11", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.11.tgz", + "integrity": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", + "@ljharb/through": "^2.3.9", + "ansi-escapes": "^4.3.2", + "chalk": "^5.3.0", "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", + "cli-width": "^4.1.0", + "external-editor": "^3.1.0", + "figures": "^5.0.0", "lodash": "^4.17.21", - "mute-stream": "0.0.8", + "mute-stream": "1.0.0", "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "run-async": "^3.0.0", + "rxjs": "^7.8.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=14.18.0" + } + }, + "node_modules/@angular/cli/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@angular/cli/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@angular/cli/node_modules/run-async": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", + "integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==", + "dev": true, + "engines": { + "node": ">=0.12.0" } }, "node_modules/@angular/common": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", - "integrity": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-17.0.7.tgz", + "integrity": "sha512-bPPL6x0KOAOTxKSE2j4EWmEUOnqZYzOYiHzroa5b9UEyA9NvGkd9bm3zIxw8xcndRj1Ehcmvpi6KBLcYBBbWfg==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "16.0.6", + "@angular/core": "17.0.7", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.0.6.tgz", - "integrity": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-17.0.7.tgz", + "integrity": "sha512-QHPuLti2c2tGZmOGZ0cfCHo4LxiHUkC27I0aZFDyQSSQqEI5obQGVlEREHysw0nsS3sYIcLvqcwcKcRtXlXtxQ==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "16.0.6" + "@angular/core": "17.0.7" }, "peerDependenciesMeta": { "@angular/core": { @@ -539,12 +709,12 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.0.6.tgz", - "integrity": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-17.0.7.tgz", + "integrity": "sha512-YnL38idjIYtl3BXYpv+sVJKWGbUjHT6eyQSQVAfO/1AwWqVa21K9hnE+Q37VmUKEcKFMnQembeuErA+KVsGI6A==", "dev": true, "dependencies": { - "@babel/core": "7.21.8", + "@babel/core": "7.23.2", "@jridgewell/sourcemap-codec": "^1.4.14", "chokidar": "^3.0.0", "convert-source-map": "^1.5.1", @@ -559,122 +729,68 @@ "ngcc": "bundles/ngcc/index.js" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/compiler": "16.0.6", - "typescript": ">=4.9.3 <5.1" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" + "@angular/compiler": "17.0.7", + "typescript": ">=5.2 <5.3" } }, "node_modules/@angular/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.6.tgz", - "integrity": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-17.0.7.tgz", + "integrity": "sha512-mEkelXkzEi6+A9GjdKOSGGzQAfo1iAjVTn6YsplNUeGE5JgDZYZ7sXGQqs0Lin7dzJxnPAgGjCOl7SpWLXIPSQ==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { "rxjs": "^6.5.3 || ^7.4.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.0" } }, "node_modules/@angular/forms": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.6.tgz", - "integrity": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-17.0.7.tgz", + "integrity": "sha512-28BxRxEmgZIofGwVp6s2v3ri/kuWW+/EY/ZXhavlWKJEh4ATJl72k0RkRWNcQi4wnvn0Qb8tFdnVJnvRZvvKEw==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "16.0.6", - "@angular/core": "16.0.6", - "@angular/platform-browser": "16.0.6", + "@angular/common": "17.0.7", + "@angular/core": "17.0.7", + "@angular/platform-browser": "17.0.7", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/language-service": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-16.0.6.tgz", - "integrity": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-17.0.7.tgz", + "integrity": "sha512-03EXeBZgyGNnEDLiABwEw0lpAcqLxSgl+bXQahOO4OnBSYQWGEiqfs3ymNbNj0chUfQVadG4FWghwGTGbj77Iw==", "dev": true, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" } }, "node_modules/@angular/platform-browser": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.6.tgz", - "integrity": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.0.7.tgz", + "integrity": "sha512-bm9/wt51nc/MPjft/FlRNIgFSeLjDtfJOT7M32Rt6kOHhNKSK7ZTPWdMe9ahuHSbAhLzd0G/4NsT5sKrWSeVZg==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/animations": "16.0.6", - "@angular/common": "16.0.6", - "@angular/core": "16.0.6" + "@angular/animations": "17.0.7", + "@angular/common": "17.0.7", + "@angular/core": "17.0.7" }, "peerDependenciesMeta": { "@angular/animations": { @@ -683,36 +799,36 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.6.tgz", - "integrity": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-17.0.7.tgz", + "integrity": "sha512-OquwUX9fLWA2JUZW5Jm6atk0CPt0sA7Tg24eGLsr6g1XfTS7jRZprlGaa72NgPLnQVV6m84o/ZiNYS6yPmq1Gg==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "16.0.6", - "@angular/compiler": "16.0.6", - "@angular/core": "16.0.6", - "@angular/platform-browser": "16.0.6" + "@angular/common": "17.0.7", + "@angular/compiler": "17.0.7", + "@angular/core": "17.0.7", + "@angular/platform-browser": "17.0.7" } }, "node_modules/@angular/router": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-16.0.6.tgz", - "integrity": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-17.0.7.tgz", + "integrity": "sha512-rUFPe1uDlYYw6+3Gq68czW7WxBH7zT/D3UsT1otqwUV4RnQQsVze4fIit9FqJh7tuP4y3WpB4XBNf7p7Oi6TJw==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "16.0.6", - "@angular/core": "16.0.6", - "@angular/platform-browser": "16.0.6", + "@angular/common": "17.0.7", + "@angular/core": "17.0.7", + "@angular/platform-browser": "17.0.7", "rxjs": "^6.5.3 || ^7.4.0" } }, @@ -735,6 +851,18 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/code-frame/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -749,6 +877,21 @@ "node": ">=4" } }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", @@ -780,35 +923,35 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", + "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", - "convert-source-map": "^1.7.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.0", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -818,22 +961,28 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", "dev": true, "dependencies": { - "@babel/types": "^7.21.4", + "@babel/types": "^7.23.0", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -843,72 +992,69 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", - "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz", + "integrity": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "semver": "^6.3.0" + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -917,48 +1063,24 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", - "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -967,84 +1089,48 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", + "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "resolve": "^1.14.2" }, "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "dependencies": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" @@ -1063,72 +1149,46 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { @@ -1153,15 +1213,14 @@ } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1170,47 +1229,21 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" }, - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { @@ -1238,21 +1271,21 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -1268,66 +1301,37 @@ } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "dev": true, "dependencies": { "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", + "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", "dev": true, "dependencies": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6" }, "engines": { "node": ">=6.9.0" @@ -1347,6 +1351,18 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/highlight/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -1361,6 +1377,21 @@ "node": ">=4" } }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", @@ -1392,9 +1423,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -1404,9 +1435,9 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1419,14 +1450,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" + "@babel/plugin-transform-optional-chaining": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1435,244 +1466,18 @@ "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", - "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", - "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.6.tgz", + "integrity": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/plugin-syntax-decorators": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1682,16 +1487,10 @@ } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", - "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, "engines": { "node": ">=6.9.0" }, @@ -1699,22 +1498,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", @@ -1767,9 +1550,9 @@ } }, "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", - "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1806,9 +1589,24 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1845,9 +1643,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1962,9 +1760,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1976,10 +1774,26 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1991,15 +1805,16 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", + "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { "node": ">=6.9.0" @@ -2008,13 +1823,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { + "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -2023,10 +1840,10 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2038,21 +1855,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", - "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "globals": "^11.1.0" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -2061,38 +1870,54 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "node_modules/@babel/plugin-transform-classes": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz", + "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", "dev": true, "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" @@ -2101,24 +1926,26 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties/node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2131,12 +1958,12 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2147,9 +1974,9 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2161,13 +1988,29 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2177,13 +2020,30 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -2193,13 +2053,13 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2209,10 +2069,26 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2224,10 +2100,26 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2240,12 +2132,12 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2256,12 +2148,12 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-simple-access": "^7.22.5" }, @@ -2273,15 +2165,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -2291,12 +2183,12 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2323,9 +2215,9 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2337,14 +2229,81 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -2354,9 +2313,9 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", - "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -2371,11 +2330,27 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", "dev": true, "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2385,10 +2360,28 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2401,13 +2394,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" + "regenerator-transform": "^0.15.2" }, "engines": { "node": ">=6.9.0" @@ -2417,9 +2410,9 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2432,17 +2425,17 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", - "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz", + "integrity": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -2452,18 +2445,18 @@ } }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2476,9 +2469,9 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -2492,9 +2485,9 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2507,9 +2500,9 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2522,9 +2515,9 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2537,15 +2530,15 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", - "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" + "@babel/plugin-syntax-typescript": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -2554,24 +2547,28 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-typescript/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", "dev": true, "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2582,12 +2579,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2597,39 +2594,43 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/preset-env": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", - "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", - "@babel/plugin-proposal-async-generator-functions": "^7.20.7", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.21.0", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.21.0", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.21.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", + "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.2", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -2639,45 +2640,62 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.20.7", - "@babel/plugin-transform-async-to-generator": "^7.20.7", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.21.0", - "@babel/plugin-transform-classes": "^7.21.0", - "@babel/plugin-transform-computed-properties": "^7.20.7", - "@babel/plugin-transform-destructuring": "^7.21.3", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.21.0", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.20.11", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", - "@babel/plugin-transform-modules-systemjs": "^7.20.11", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.21.3", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.20.5", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.20.7", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.21.4", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.23.2", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.11", + "@babel/plugin-transform-classes": "^7.22.15", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.23.0", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.11", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-for-of": "^7.22.15", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.11", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.23.0", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-modules-systemjs": "^7.23.0", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-numeric-separator": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.22.15", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.10", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.10", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/types": "^7.23.0", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -2687,41 +2705,39 @@ } }, "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/preset-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", - "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-typescript": "^7.22.5" + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -2737,46 +2753,46 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", "dev": true, "dependencies": { - "regenerator-runtime": "^0.13.11" + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", + "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -2784,12 +2800,12 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -2798,26 +2814,14 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/traverse/node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2863,9 +2867,9 @@ } }, "node_modules/@cypress/request": { - "version": "2.88.11", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", - "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", + "version": "2.88.12", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.12.tgz", + "integrity": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==", "dev": true, "dependencies": { "aws-sign2": "~0.7.0", @@ -2883,7 +2887,7 @@ "performance-now": "^2.1.0", "qs": "~6.10.3", "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", + "tough-cookie": "^4.1.3", "tunnel-agent": "^0.6.0", "uuid": "^8.3.2" }, @@ -2920,9 +2924,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", - "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.5.tgz", + "integrity": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==", "cpu": [ "arm" ], @@ -2936,9 +2940,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", - "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz", + "integrity": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==", "cpu": [ "arm64" ], @@ -2952,9 +2956,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", - "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.5.tgz", + "integrity": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==", "cpu": [ "x64" ], @@ -2968,9 +2972,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", - "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.5.tgz", + "integrity": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==", "cpu": [ "arm64" ], @@ -2984,9 +2988,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", - "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.5.tgz", + "integrity": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==", "cpu": [ "x64" ], @@ -3000,9 +3004,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", - "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.5.tgz", + "integrity": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==", "cpu": [ "arm64" ], @@ -3016,9 +3020,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", - "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.5.tgz", + "integrity": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==", "cpu": [ "x64" ], @@ -3032,9 +3036,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", - "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.5.tgz", + "integrity": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==", "cpu": [ "arm" ], @@ -3048,9 +3052,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", - "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.5.tgz", + "integrity": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==", "cpu": [ "arm64" ], @@ -3064,9 +3068,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", - "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.5.tgz", + "integrity": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==", "cpu": [ "ia32" ], @@ -3080,9 +3084,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", - "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.5.tgz", + "integrity": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==", "cpu": [ "loong64" ], @@ -3096,9 +3100,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", - "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.5.tgz", + "integrity": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==", "cpu": [ "mips64el" ], @@ -3112,9 +3116,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", - "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.5.tgz", + "integrity": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==", "cpu": [ "ppc64" ], @@ -3128,9 +3132,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", - "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.5.tgz", + "integrity": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==", "cpu": [ "riscv64" ], @@ -3144,9 +3148,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", - "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.5.tgz", + "integrity": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==", "cpu": [ "s390x" ], @@ -3160,9 +3164,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", - "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz", + "integrity": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==", "cpu": [ "x64" ], @@ -3176,9 +3180,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", - "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.5.tgz", + "integrity": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==", "cpu": [ "x64" ], @@ -3192,9 +3196,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", - "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.5.tgz", + "integrity": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==", "cpu": [ "x64" ], @@ -3208,9 +3212,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", - "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.5.tgz", + "integrity": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==", "cpu": [ "x64" ], @@ -3224,9 +3228,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", - "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.5.tgz", + "integrity": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==", "cpu": [ "arm64" ], @@ -3240,9 +3244,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", - "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.5.tgz", + "integrity": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==", "cpu": [ "ia32" ], @@ -3256,9 +3260,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", - "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.5.tgz", + "integrity": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==", "cpu": [ "x64" ], @@ -3287,23 +3291,23 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.4.0", + "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", @@ -3341,9 +3345,9 @@ "dev": true }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -3398,23 +3402,32 @@ } }, "node_modules/@eslint/js": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", - "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.48.0.tgz", + "integrity": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@fastify/busboy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz", + "integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", + "@humanwhocodes/object-schema": "^2.0.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" @@ -3434,9 +3447,9 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", "dev": true }, "node_modules/@isaacs/cliui": { @@ -3561,16 +3574,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -3578,37 +3591,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -3625,89 +3638,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -3715,13 +3728,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -3739,57 +3752,25 @@ } } }, - "node_modules/@jest/reporters/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@jest/reporters/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -3798,13 +3779,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -3813,14 +3794,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -3828,22 +3809,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -3860,12 +3841,12 @@ "dev": true }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -3891,9 +3872,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -3909,10 +3890,14 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.4.tgz", - "integrity": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==", - "dev": true + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.15", @@ -3921,27 +3906,33 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", "dev": true }, + "node_modules/@ljharb/through": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.11.tgz", + "integrity": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/@mole-inc/bin-wrapper": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/@mole-inc/bin-wrapper/-/bin-wrapper-8.0.1.tgz", @@ -3962,30 +3953,30 @@ } }, "node_modules/@ngrx/store": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-16.0.1.tgz", - "integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==", + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-17.0.1.tgz", + "integrity": "sha512-BmVzN+fqyz0ZrVEmJ+jrNwePMKcpNL49vb8sbQ3yDDftxgZz2HqRKFMexqlXpz5ixwK5LqTOblHNQOgi9irsTw==", "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { - "@angular/core": "^16.0.0", + "@angular/core": "^17.0.0", "rxjs": "^6.5.3 || ^7.5.0" } }, "node_modules/@ngtools/webpack": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.0.6.tgz", - "integrity": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==", + "version": "17.0.7", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.0.7.tgz", + "integrity": "sha512-gwhUhpwXn0trwwKdSu9WlJbEcLt+s/2fPwoD9lZ0y3wXfrOogsfcNBJKeO5BZf1h+A3AWt7ePmgrZXSJM+865Q==", "dev": true, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { - "@angular/compiler-cli": "^16.0.0", - "typescript": ">=4.9.3 <5.1", + "@angular/compiler-cli": "^17.0.0", + "typescript": ">=5.2 <5.3", "webpack": "^5.54.0" } }, @@ -4024,6 +4015,44 @@ "node": ">= 8" } }, + "node_modules/@npmcli/agent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", + "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/agent/node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@npmcli/agent/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, "node_modules/@npmcli/fs": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", @@ -4037,46 +4066,55 @@ } }, "node_modules/@npmcli/git": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", - "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.3.tgz", + "integrity": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==", "dev": true, "dependencies": { - "@npmcli/promise-spawn": "^6.0.0", - "lru-cache": "^7.4.4", - "npm-pick-manifest": "^8.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", "proc-log": "^3.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", - "which": "^3.0.0" + "which": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/git/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" } }, "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, "engines": { - "node": ">=12" + "node": "14 || >=16.14" } }, "node_modules/@npmcli/git/node_modules/which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/@npmcli/installed-package-contents": { @@ -4105,479 +4143,226 @@ } }, "node_modules/@npmcli/promise-spawn": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", - "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz", + "integrity": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==", "dev": true, "dependencies": { - "which": "^3.0.0" + "which": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/promise-spawn/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" } }, "node_modules/@npmcli/promise-spawn/node_modules/which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/@npmcli/run-script": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", - "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz", + "integrity": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==", "dev": true, "dependencies": { "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^6.0.0", - "node-gyp": "^9.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", "read-package-json-fast": "^3.0.0", - "which": "^3.0.0" + "which": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/run-script/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" } }, "node_modules/@npmcli/run-script/node_modules/which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/@nrwl/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-17.2.6.tgz", + "integrity": "sha512-4f7o6dsoQwP8o8O57dT0fTNnKcRllsQVkYeZx2SR/I0Gs2I/UlaCQZ6GCjy+BXSJS3AXn7sz6a69vo0uGJPBFw==", "dev": true, "dependencies": { - "@nx/angular": "16.4.2", + "@nx/angular": "17.2.6", "tslib": "^2.3.0" } }, "node_modules/@nrwl/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-17.2.6.tgz", + "integrity": "sha512-/cimurrZnHFX9o0Sb5cj7SskUtEgA2aYnpLuZuAWaazpQPd+72WXTXFVYN8dVd7wgTV96uTQUTkUGt9nzvNiTA==", "dev": true, "dependencies": { - "@nx/cypress": "16.4.2" + "@nx/cypress": "17.2.6" } }, "node_modules/@nrwl/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-17.2.6.tgz", + "integrity": "sha512-uZVqc2qhi+WdSqLV9aIcE+5ck+IUSQ47Cc5bslWrssQjBncqGavHYDuU4ZLuKK5HxCuZqlQjvo7TsF7LeOjNiA==", "dev": true, "dependencies": { - "@nx/devkit": "16.4.2" + "@nx/devkit": "17.2.6" } }, "node_modules/@nrwl/eslint-plugin-nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.1.1.tgz", - "integrity": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-17.2.6.tgz", + "integrity": "sha512-xQDmFeIc+VR3q6scSSciSNVSdcRI52FFTTlDw4/pZCJk59LJTt6GgnqeL0Aj4EIgELfZQLOsKrxIoup5gzKlrQ==", "dev": true, "dependencies": { - "@nx/eslint-plugin": "16.1.1" + "@nx/eslint-plugin": "17.2.6" } }, "node_modules/@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-17.2.6.tgz", + "integrity": "sha512-YZ6yFFw1lq7nSCZTkP8qMbIeYX/yJ6Ko6iXPECPQViy4W6E9WEVnWU52RkovoKSN+CuhienzJCxne7DALLLr3w==", "dev": true, "dependencies": { - "@nx/jest": "16.4.2" + "@nx/jest": "17.2.6" } }, "node_modules/@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "dependencies": { - "@nx/js": "16.4.2" - } - }, - "node_modules/@nrwl/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-17.2.6.tgz", + "integrity": "sha512-oFnyaVOpVG3XrkIXQMs5TM6hrRRBe38jRX79d51S41yLuiOrHgpJlMmii1wafevM1Dpk9UlAvPh7v8OffgDZtg==", "dev": true, "dependencies": { - "@nx/linter": "16.1.1" + "@nx/js": "17.2.6" } }, "node_modules/@nrwl/nx-plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-16.4.2.tgz", - "integrity": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-17.2.6.tgz", + "integrity": "sha512-sg8oOxs3abfNMOpWK8utqy2wIfihLnLAtWxBFoRb/R+Xwjc+vw/ibqGGvZm+jSlk5SQxit52RMMQtl5foI5HQw==", "dev": true, "dependencies": { - "@nx/plugin": "16.4.2" + "@nx/plugin": "17.2.6" } }, "node_modules/@nrwl/tao": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.1.1.tgz", - "integrity": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-17.2.6.tgz", + "integrity": "sha512-cgtUKTRSxDZ94S9IpC27/qYZJ1YttJDET+veKrtRYvwnHFgkq1peyeTTtnM25yJon7PRdm2lYrlIVdPm0vXupw==", "dev": true, "dependencies": { - "nx": "16.1.1" + "nx": "17.2.6", + "tslib": "^2.3.0" }, "bin": { "tao": "index.js" } }, "node_modules/@nrwl/web": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.4.2.tgz", - "integrity": "sha512-WgD6G+Cl54/RywzYTnphQCQuNdDrGGdivcyd3AZey9yA1Avvi/CI5+mU75pQAMrqsb2oxylZVk6lnN5iLJcAwA==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-17.2.6.tgz", + "integrity": "sha512-htiLKuLgWikZOf+gKzX4tkkcYV+94ZGYeBEHAZ8Agx4dyw7/8u1JStSAvrwZFAzw06KejGJy4NAh2ycCLJMwrA==", "dev": true, "dependencies": { - "@nx/web": "16.4.2" + "@nx/web": "17.2.6" } }, "node_modules/@nrwl/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-17.2.6.tgz", + "integrity": "sha512-cxBh3Aqg9nIR7be3y9pvss2x22Bp0iDmcvpj/L0fc/3PK9DpYK2Y2eDGvswsd5xZvLTu5BhQVji/io73JmmB4w==", "dev": true, "dependencies": { - "@nx/webpack": "16.4.2" + "@nx/webpack": "17.2.6" } }, "node_modules/@nrwl/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-17.2.6.tgz", + "integrity": "sha512-ACMnIxblNEAsjFfkpNspENxlm/jMpF9hr3aKioyoFAUmATxO7lJt8VuA43slI1oVgtTfWpOcM0aSRP/07kVW6Q==", "dev": true, "dependencies": { - "@nx/workspace": "16.1.1" + "@nx/workspace": "17.2.6" } }, "node_modules/@nx/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==", - "dev": true, - "dependencies": { - "@nrwl/angular": "16.4.2", - "@nx/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@nx/webpack": "16.4.2", - "@nx/workspace": "16.4.2", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-17.2.6.tgz", + "integrity": "sha512-e11FcG9SP8gR/nwfhvPnORfOee5zjUFkC1vLLY/JdJRV2jXE5qLtoTVq8lFqU6LjD21FoFCt5EMiceRj3WoEZQ==", + "dev": true, + "dependencies": { + "@nrwl/angular": "17.2.6", + "@nx/cypress": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/eslint": "17.2.6", + "@nx/jest": "17.2.6", + "@nx/js": "17.2.6", + "@nx/web": "17.2.6", + "@nx/webpack": "17.2.6", + "@nx/workspace": "17.2.6", "@phenomnomnominal/tsquery": "~5.0.1", - "@typescript-eslint/type-utils": "^5.36.1", + "@typescript-eslint/type-utils": "^6.9.1", "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "enquirer": "^2.3.6", - "http-server": "^14.1.0", + "find-cache-dir": "^3.3.2", "ignore": "^5.0.4", - "magic-string": "~0.26.2", + "magic-string": "~0.30.2", "minimatch": "3.0.5", "semver": "7.5.3", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", "tslib": "^2.3.0", "webpack": "^5.80.0", - "webpack-merge": "5.7.3" + "webpack-merge": "^5.8.0" }, "peerDependencies": { - "@angular-devkit/build-angular": ">= 14.0.0 < 17.0.0", - "@angular-devkit/core": ">= 14.0.0 < 17.0.0", - "@angular-devkit/schematics": ">= 14.0.0 < 17.0.0", - "@nguniversal/builders": ">= 14.0.0 < 17.0.0", - "@schematics/angular": ">= 14.0.0 < 17.0.0", + "@angular-devkit/build-angular": ">= 15.0.0 < 18.0.0", + "@angular-devkit/core": ">= 15.0.0 < 18.0.0", + "@angular-devkit/schematics": ">= 15.0.0 < 18.0.0", + "@schematics/angular": ">= 15.0.0 < 18.0.0", + "esbuild": "^0.19.2", "rxjs": "^6.5.3 || ^7.5.0" }, "peerDependenciesMeta": { - "@nguniversal/builders": { - "optional": true - } - } - }, - "node_modules/@nx/angular/node_modules/@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "dependencies": { - "@nx/linter": "16.4.2" - } - }, - "node_modules/@nx/angular/node_modules/@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "dependencies": { - "nx": "16.4.2" - }, - "bin": { - "tao": "index.js" - } - }, - "node_modules/@nx/angular/node_modules/@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "dependencies": { - "@nx/workspace": "16.4.2" - } - }, - "node_modules/@nx/angular/node_modules/@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "dependencies": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "eslint": "^8.0.0" - }, - "peerDependenciesMeta": { - "eslint": { + "esbuild": { "optional": true } } }, - "node_modules/@nx/angular/node_modules/@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/angular/node_modules/@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "dependencies": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "node_modules/@nx/angular/node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=14.15.0" - } - }, - "node_modules/@nx/angular/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/@nx/angular/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, "node_modules/@nx/angular/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -4590,100 +4375,6 @@ "node": ">=10" } }, - "node_modules/@nx/angular/node_modules/magic-string": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", - "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", - "dev": true, - "dependencies": { - "sourcemap-codec": "^1.4.8" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@nx/angular/node_modules/nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@nrwl/tao": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2" - }, - "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } - }, - "node_modules/@nx/angular/node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@nx/angular/node_modules/semver": { "version": "7.5.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", @@ -4699,19 +4390,6 @@ "node": ">=10" } }, - "node_modules/@nx/angular/node_modules/webpack-merge": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", - "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", - "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/@nx/angular/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -4719,56 +4397,25 @@ "dev": true }, "node_modules/@nx/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-17.2.6.tgz", + "integrity": "sha512-C2TSLyV2Nm8zIM8aJJrRkv6RO4iqLRmO+XC0/Z58SF9cD3iF7HSKzGtj2iRshgI8Pac7WgvcZLYyiKQIAdJIUw==", "dev": true, "dependencies": { - "@nrwl/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", + "@nrwl/cypress": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/eslint": "17.2.6", + "@nx/js": "17.2.6", "@phenomnomnominal/tsquery": "~5.0.1", "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.5.3" - }, - "peerDependencies": { - "cypress": ">= 3 < 13" - }, - "peerDependenciesMeta": { - "cypress": { - "optional": true - } - } - }, - "node_modules/@nx/cypress/node_modules/@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "dependencies": { - "@nx/linter": "16.4.2" - } - }, - "node_modules/@nx/cypress/node_modules/@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "dependencies": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", + "semver": "7.5.3", "tslib": "^2.3.0" }, "peerDependencies": { - "eslint": "^8.0.0" + "cypress": ">= 3 < 14" }, "peerDependenciesMeta": { - "eslint": { + "cypress": { "optional": true } } @@ -4807,20 +4454,21 @@ "dev": true }, "node_modules/@nx/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-17.2.6.tgz", + "integrity": "sha512-a9GPw0KiLhvv2RBLPlWgaVDZRvgww4ANBwv7LuGvk8FNgxF5vkQMM5WyKpvxKJhmh1EZ+T9JsGWAFrK7skW9Bw==", "dev": true, "dependencies": { - "@nrwl/devkit": "16.4.2", + "@nrwl/devkit": "17.2.6", "ejs": "^3.1.7", + "enquirer": "~2.3.6", "ignore": "^5.0.4", "semver": "7.5.3", "tmp": "~0.2.1", "tslib": "^2.3.0" }, "peerDependencies": { - "nx": ">= 15 <= 17" + "nx": ">= 16 <= 18" } }, "node_modules/@nx/devkit/node_modules/lru-cache": { @@ -4856,95 +4504,56 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/@nx/eslint-plugin": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-16.1.1.tgz", - "integrity": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==", + "node_modules/@nx/eslint": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/eslint/-/eslint-17.2.6.tgz", + "integrity": "sha512-gDtIf6T3vCf7XO2lWvVulFcNmx2l6kKGZypEpLMGtfdAUai/aaBbNHbbwcsOZiPvWtNo64mGBZX5Qv6aPb9oPg==", "dev": true, "dependencies": { - "@nrwl/eslint-plugin-nx": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@typescript-eslint/type-utils": "^5.58.0", - "@typescript-eslint/utils": "^5.58.0", - "chalk": "^4.1.0", - "confusing-browser-globals": "^1.0.9", - "semver": "7.3.4" + "@nx/devkit": "17.2.6", + "@nx/js": "17.2.6", + "@nx/linter": "17.2.6", + "tslib": "^2.3.0", + "typescript": "~5.2.2" }, "peerDependencies": { - "@typescript-eslint/parser": "^5.58.0", - "eslint-config-prettier": "^8.1.0" + "eslint": "^8.0.0", + "js-yaml": "4.1.0" }, "peerDependenciesMeta": { - "eslint-config-prettier": { + "eslint": { + "optional": true + }, + "js-yaml": { "optional": true } } }, - "node_modules/@nx/eslint-plugin/node_modules/@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "dependencies": { - "@nx/devkit": "16.1.1" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "dependencies": { - "@nx/js": "16.1.1" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", + "node_modules/@nx/eslint-plugin": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-17.2.6.tgz", + "integrity": "sha512-P9+G9r6fz0RP/muchPFHyicfA4o80kUD8oRmrJJAjI3KolpRk3Kld7GAbXPkunnGuMcf/nSJxaUkt+QCe5zOhQ==", "dev": true, "dependencies": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", + "@nrwl/eslint-plugin-nx": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/js": "17.2.6", + "@typescript-eslint/type-utils": "^6.9.1", + "@typescript-eslint/utils": "^6.9.1", + "chalk": "^4.1.0", + "confusing-browser-globals": "^1.0.9", + "jsonc-eslint-parser": "^2.1.0", + "semver": "7.5.3", "tslib": "^2.3.0" }, "peerDependencies": { - "nx": ">= 15 <= 17" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" + "@typescript-eslint/parser": "^6.9.1", + "eslint-config-prettier": "^9.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } } }, "node_modules/@nx/eslint-plugin/node_modules/lru-cache": { @@ -4960,9 +4569,9 @@ } }, "node_modules/@nx/eslint-plugin/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -4974,25 +4583,6 @@ "node": ">=10" } }, - "node_modules/@nx/eslint-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@nx/eslint-plugin/node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, "node_modules/@nx/eslint-plugin/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -5000,19 +4590,18 @@ "dev": true }, "node_modules/@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-17.2.6.tgz", + "integrity": "sha512-lWdzwkNfVQPCcr3gb3OrtUX/wjI9Oxm6Q9cKezPydCWtrZnEQii/aRi9/AncCGBf0Rx6hLT0yaiIAvJKlCk9qg==", "dev": true, "dependencies": { "@jest/reporters": "^29.4.1", "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", + "@nrwl/jest": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/js": "17.2.6", "@phenomnomnominal/tsquery": "~5.0.1", "chalk": "^4.1.0", - "dotenv": "~10.0.0", "identity-obj-proxy": "3.0.0", "jest-config": "^29.4.1", "jest-resolve": "^29.4.1", @@ -5022,34 +4611,40 @@ } }, "node_modules/@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "dependencies": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-17.2.6.tgz", + "integrity": "sha512-jjWzEg63C7vBu6Lo890N8gIcEji+8/ggf5My2kCmAnJehqIg8/B0Bq0x9shIxAT7qZgyLxHbC3VWg5ictS6aEw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.22.9", + "@babel/plugin-proposal-decorators": "^7.22.7", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-runtime": "^7.22.9", + "@babel/preset-env": "^7.22.9", + "@babel/preset-typescript": "^7.22.5", + "@babel/runtime": "^7.22.6", + "@nrwl/js": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/workspace": "17.2.6", "@phenomnomnominal/tsquery": "~5.0.1", "babel-plugin-const-enum": "^1.0.1", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-typescript-metadata": "^0.3.1", "chalk": "^4.1.0", + "columnify": "^1.6.0", "detect-port": "^1.5.1", "fast-glob": "3.2.7", "fs-extra": "^11.1.0", "ignore": "^5.0.4", "js-tokens": "^4.0.0", "minimatch": "3.0.5", + "npm-package-arg": "11.0.1", + "npm-run-path": "^4.0.1", + "ora": "5.3.0", "semver": "7.5.3", "source-map-support": "0.5.19", + "ts-node": "10.9.1", + "tsconfig-paths": "^4.1.2", "tslib": "^2.3.0" }, "peerDependencies": { @@ -5061,31 +4656,109 @@ } } }, - "node_modules/@nx/js/node_modules/@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", + "node_modules/@nx/js/node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@nx/js/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nx/js/node_modules/ora": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz", + "integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "log-symbols": "^4.0.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@nx/js/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { - "nx": "16.4.2" + "lru-cache": "^6.0.0" }, "bin": { - "tao": "index.js" + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nx/js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@nx/js/node_modules/source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/@nx/js/node_modules/@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", + "node_modules/@nx/js/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@nx/linter": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-17.2.6.tgz", + "integrity": "sha512-TTS3WPZQNVdFgTykdX3jbELcN0IsYpKPv8TGOzqkJbRfvsF2jjZzQggWujg1iXBdWRKdaWYDi8SUi+4wocemIg==", "dev": true, "dependencies": { - "@nx/workspace": "16.4.2" + "@nx/eslint": "17.2.6" } }, - "node_modules/@nx/js/node_modules/@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", + "node_modules/@nx/nx-darwin-arm64": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-17.2.6.tgz", + "integrity": "sha512-ezU5u7hkEwI2xzsFSjyr53uNURBvga40LQlpEnS/CbqRifHHhTKisCy+r2+kRhiOwTeR+I+/2D3zPyIyN3aEHQ==", "cpu": [ "arm64" ], @@ -5098,10 +4771,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", + "node_modules/@nx/nx-darwin-x64": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-17.2.6.tgz", + "integrity": "sha512-wUIwbM/7LMxlFkEOlbxR/s2qaRuD69yXc70f2rtxsskwJ4GOF5kfc1jk2YaDs9qswI+FgQVgbeZu8pgF+slY7Q==", "cpu": [ "x64" ], @@ -5114,10 +4787,26 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", + "node_modules/@nx/nx-freebsd-x64": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-17.2.6.tgz", + "integrity": "sha512-uBKEGqG4txVCpBirRzt1QwuOLzfA0s9dlUP7n5t4qJuaf9OXuVcDXay8g84WT1jx4PPtipyv/wyIFu3r7v8kZw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nx/nx-linux-arm-gnueabihf": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-17.2.6.tgz", + "integrity": "sha512-dSDVz2BktaPHMkrJojFCx+V+QFLDF0KzoHorESzZmHZTfumr0xtJ1COWCU+gYmLptc+8OgwCzCPWXHhcDgji/A==", "cpu": [ "arm" ], @@ -5130,10 +4819,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", + "node_modules/@nx/nx-linux-arm64-gnu": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-17.2.6.tgz", + "integrity": "sha512-AD99Kk47Yxn3IJ89aCT1oVpNX1XNECAYay97yhqf2tiBsDv9hC43PppOdjI0dNP5VRBTrr6EsWdhvE0uNJ3RJw==", "cpu": [ "arm64" ], @@ -5146,10 +4835,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", + "node_modules/@nx/nx-linux-arm64-musl": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-17.2.6.tgz", + "integrity": "sha512-MOX/EJyzseEnzbFxY7V6es/xta6WQ0cDDrl6i6qjCRnoRTFFVMsL0Fb4dtVbv7fd75O41P+OBGpG70MYx2SOxw==", "cpu": [ "arm64" ], @@ -5162,10 +4851,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", + "node_modules/@nx/nx-linux-x64-gnu": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-17.2.6.tgz", + "integrity": "sha512-16xTSszGPY25INDUr4pzLXWcO3va1764iVFiHRTuJr5siDymY7zSj+DPKFmewzqF2358Y5m8AtMotY0FqKciYg==", "cpu": [ "x64" ], @@ -5178,10 +4867,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", + "node_modules/@nx/nx-linux-x64-musl": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-17.2.6.tgz", + "integrity": "sha512-F/nIq8bcZd2cNuBiQbyJwur7CpeRBCt0qKDF38HQ2l3HhQv+jwk4T6115LMQqwZb9e6kt6BAFsY+6O7I6t3pCw==", "cpu": [ "x64" ], @@ -5194,10 +4883,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", + "node_modules/@nx/nx-win32-arm64-msvc": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-17.2.6.tgz", + "integrity": "sha512-1lAKKKiH7eduzqcPDB03iPz38yNXn3Y4Q/3jULjaRc3EFAplfBsYVwJ9kGjXPZSrpt/AY7w5ATY55/r5B3gQnA==", "cpu": [ "arm64" ], @@ -5210,10 +4899,10 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", + "node_modules/@nx/nx-win32-x64-msvc": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-17.2.6.tgz", + "integrity": "sha512-LrJySMWrO5oWMrP4VOWM1hr3c4rtxHGCcRy19VwqvaAPDrnsg0qfPjv4q1C9YyIU8sj+T3oJs1yZdnNntlN8ew==", "cpu": [ "x64" ], @@ -5226,590 +4915,55 @@ "node": ">= 10" } }, - "node_modules/@nx/js/node_modules/@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", + "node_modules/@nx/plugin": { + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-17.2.6.tgz", + "integrity": "sha512-K9DZhFeqtmRSELwEbrK2zLOHhCf97glBjF2vRN24zb5k7tCAOtpsK7L6TD9Xl5OSx1e9ffi9emRJUjPli6XoRw==", "dev": true, "dependencies": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "node_modules/@nx/js/node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=14.15.0" - } - }, - "node_modules/@nx/js/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/@nx/js/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@nx/js/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/js/node_modules/nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@nrwl/tao": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2" - }, - "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } - }, - "node_modules/@nx/js/node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@nx/js/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/js/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@nx/js/node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/@nx/js/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@nx/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==", - "dev": true, - "dependencies": { - "@nrwl/linter": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "eslint": "^8.0.0" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/@nx/linter/node_modules/@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "dependencies": { - "@nx/devkit": "16.1.1" - } - }, - "node_modules/@nx/linter/node_modules/@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "dependencies": { - "@nx/js": "16.1.1" - } - }, - "node_modules/@nx/linter/node_modules/@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "dependencies": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "nx": ">= 15 <= 17" - } - }, - "node_modules/@nx/linter/node_modules/@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" - } - }, - "node_modules/@nx/linter/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/linter/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/linter/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@nx/linter/node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/@nx/linter/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@nx/nx-darwin-arm64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.1.1.tgz", - "integrity": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-darwin-x64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.1.1.tgz", - "integrity": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-freebsd-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.4.2.tgz", - "integrity": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.1.1.tgz", - "integrity": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.1.1.tgz", - "integrity": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.1.1.tgz", - "integrity": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-x64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.1.1.tgz", - "integrity": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-x64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.1.1.tgz", - "integrity": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-win32-arm64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.1.1.tgz", - "integrity": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-win32-x64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.1.1.tgz", - "integrity": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-16.4.2.tgz", - "integrity": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==", - "dev": true, - "dependencies": { - "@nrwl/nx-plugin": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", + "@nrwl/nx-plugin": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/eslint": "17.2.6", + "@nx/jest": "17.2.6", + "@nx/js": "17.2.6", "@phenomnomnominal/tsquery": "~5.0.1", - "dotenv": "~10.0.0", "fs-extra": "^11.1.0", "tslib": "^2.3.0" } }, - "node_modules/@nx/plugin/node_modules/@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "dependencies": { - "@nx/linter": "16.4.2" - } - }, - "node_modules/@nx/plugin/node_modules/@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "dependencies": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "eslint": "^8.0.0" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, "node_modules/@nx/web": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.4.2.tgz", - "integrity": "sha512-rjARmJESboplfa3kI0ncUMBKJGJO1cV9Rsp1HzIeAAq7Zo614lPnUA/lE6Q+lD+GbfJu0y5t7ENmQv2E/61Rxw==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/web/-/web-17.2.6.tgz", + "integrity": "sha512-6VkA19bFepNmrIISxXwYMo5nm/uUAPHQKNPfSHqxo9Ef57WS93dDMVRqc7641lRvT31Nc75Uu0NPYGo/B/s87A==", "dev": true, "dependencies": { - "@nrwl/web": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", + "@nrwl/web": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/js": "17.2.6", "chalk": "^4.1.0", - "chokidar": "^3.5.1", "detect-port": "^1.5.1", "http-server": "^14.1.0", - "ignore": "^5.0.4", "tslib": "^2.3.0" } }, "node_modules/@nx/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-17.2.6.tgz", + "integrity": "sha512-vODJosrOh5ru1Gy7rBp9yXVeeSF32bq1qTjOX3ez1OOXbw5fmJcxaOjOoh44ty0+d9wIB2YIl8lHsmmaCcmOnw==", "dev": true, "dependencies": { - "@babel/core": "^7.15.0", - "@nrwl/webpack": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", + "@babel/core": "^7.22.9", + "@nrwl/webpack": "17.2.6", + "@nx/devkit": "17.2.6", + "@nx/js": "17.2.6", "autoprefixer": "^10.4.9", "babel-loader": "^9.1.2", "browserslist": "^4.21.4", "chalk": "^4.1.0", - "chokidar": "^3.5.1", "copy-webpack-plugin": "^10.2.4", "css-loader": "^6.4.0", "css-minimizer-webpack-plugin": "^5.0.0", - "dotenv": "~10.0.0", "fork-ts-checker-webpack-plugin": "7.2.13", - "ignore": "^5.0.4", "less": "4.1.3", "less-loader": "11.1.0", "license-webpack-plugin": "^4.0.2", @@ -5828,8 +4982,6 @@ "stylus-loader": "^7.1.0", "terser-webpack-plugin": "^5.3.3", "ts-loader": "^9.3.1", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", "tsconfig-paths-webpack-plugin": "4.0.0", "tslib": "^2.3.0", "webpack": "^5.80.0", @@ -5934,6 +5086,32 @@ "node": ">=0.10.0" } }, + "node_modules/@nx/webpack/node_modules/less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "dev": true, + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" + } + }, "node_modules/@nx/webpack/node_modules/loader-utils": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", @@ -5948,16 +5126,28 @@ "node": ">=8.9.0" } }, - "node_modules/@nx/webpack/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@nx/webpack/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "optional": true, "dependencies": { - "yallist": "^4.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "engines": { - "node": ">=10" + "node": ">=6" + } + }, + "node_modules/@nx/webpack/node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" } }, "node_modules/@nx/webpack/node_modules/mini-css-extract-plugin": { @@ -5985,6 +5175,16 @@ "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", "dev": true }, + "node_modules/@nx/webpack/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, "node_modules/@nx/webpack/node_modules/postcss-loader": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", @@ -6045,21 +5245,6 @@ } } }, - "node_modules/@nx/webpack/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@nx/webpack/node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", @@ -6072,6 +5257,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@nx/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/@nx/webpack/node_modules/source-map-loader": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", @@ -6093,107 +5288,29 @@ "webpack": "^5.0.0" } }, - "node_modules/@nx/webpack/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@nx/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-17.2.6.tgz", + "integrity": "sha512-mss1RggPBWpggMJ7ok83iHx/PdlevhDqayLvjguRKjPwk0rTBRUuvY78AkKo2RbMOQyywNMt09MNz5FOmfCfqg==", "dev": true, "dependencies": { - "@nrwl/workspace": "16.1.1", - "@nx/devkit": "16.1.1", - "@parcel/watcher": "2.0.4", + "@nrwl/workspace": "17.2.6", + "@nx/devkit": "17.2.6", "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.1.1", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", + "enquirer": "~2.3.6", + "nx": "17.2.6", "tslib": "^2.3.0", - "yargs": "^17.6.2", "yargs-parser": "21.1.1" } }, - "node_modules/@nx/workspace/node_modules/@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", + "node_modules/@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", "dev": true, - "dependencies": { - "@nx/devkit": "16.1.1" - } - }, - "node_modules/@nx/workspace/node_modules/@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "dependencies": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "peerDependencies": { - "nx": ">= 15 <= 17" - } - }, - "node_modules/@nx/workspace/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/workspace/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/workspace/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@octokit/auth-token": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", - "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", - "dev": true, - "peer": true, - "engines": { - "node": ">= 18" + "peer": true, + "engines": { + "node": ">= 18" } }, "node_modules/@octokit/core": { @@ -6343,24 +5460,6 @@ "@octokit/openapi-types": "^19.1.0" } }, - "node_modules/@parcel/watcher": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", - "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "node-addon-api": "^3.2.1", - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, "node_modules/@phenomnomnominal/tsquery": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz", @@ -6444,6 +5543,62 @@ "yarn": ">= 1.13.0" } }, + "node_modules/@schematics/angular/node_modules/@angular-devkit/core": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", + "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", + "dev": true, + "dependencies": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.0", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/@schematics/angular/node_modules/@angular-devkit/schematics": { + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", + "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "16.0.6", + "jsonc-parser": "3.2.0", + "magic-string": "0.30.0", + "ora": "5.4.1", + "rxjs": "7.8.1" + }, + "engines": { + "node": "^16.14.0 || >=18.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@schematics/angular/node_modules/magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@semantic-release/changelog": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", @@ -6512,53 +5667,6 @@ "semantic-release": ">=18.0.0" } }, - "node_modules/@semantic-release/exec/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@semantic-release/exec/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/exec/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@semantic-release/git": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", @@ -6581,53 +5689,6 @@ "semantic-release": ">=18.0.0" } }, - "node_modules/@semantic-release/git/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@semantic-release/git/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/git/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@semantic-release/github": { "version": "9.2.5", "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", @@ -6669,19 +5730,6 @@ "node": ">=18" } }, - "node_modules/@semantic-release/github/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "peer": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, "node_modules/@semantic-release/github/node_modules/aggregate-error": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", @@ -6780,20 +5828,6 @@ "node": ">= 14" } }, - "node_modules/@semantic-release/github/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, - "peer": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, "node_modules/@semantic-release/github/node_modules/indent-string": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", @@ -6980,19 +6014,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@semantic-release/npm/node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", - "dev": true, - "peer": true, - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, "node_modules/@semantic-release/npm/node_modules/human-signals": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", @@ -7029,16 +6050,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@semantic-release/npm/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true, - "peer": true, - "engines": { - "node": "14 || >=16.14" - } - }, "node_modules/@semantic-release/npm/node_modules/mimic-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", @@ -7052,22 +6063,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@semantic-release/npm/node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", - "dev": true, - "peer": true, - "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, "node_modules/@semantic-release/npm/node_modules/normalize-url": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", @@ -7227,44 +6222,58 @@ "semantic-release": ">=20.1.0" } }, - "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", - "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "node_modules/@sigstore/bundle": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.1.0.tgz", + "integrity": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==", "dev": true, - "engines": { - "node": ">=16" + "dependencies": { + "@sigstore/protobuf-specs": "^0.2.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz", + "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/@sigstore/sign": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.0.tgz", + "integrity": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==", + "dev": true, + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, "node_modules/@sigstore/tuf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", - "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.2.0.tgz", + "integrity": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "tuf-js": "^1.1.7" + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "node_modules/@sindresorhus/is": { @@ -7310,10 +6319,16 @@ "@sinonjs/commons": "^3.0.0" } }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", + "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==", + "dev": true + }, "node_modules/@swc-node/core": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", - "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", + "version": "1.10.6", + "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.6.tgz", + "integrity": "sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==", "dev": true, "engines": { "node": ">= 10" @@ -7327,50 +6342,41 @@ } }, "node_modules/@swc-node/register": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", - "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.6.8.tgz", + "integrity": "sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==", "dev": true, "dependencies": { - "@swc-node/core": "^1.8.2", - "@swc-node/sourcemap-support": "^0.1.11", - "chalk": "4", - "debug": "^4.3.3", - "pirates": "^4.0.4", - "tslib": "^2.3.1", - "typescript": "^4.5.3" + "@swc-node/core": "^1.10.6", + "@swc-node/sourcemap-support": "^0.3.0", + "colorette": "^2.0.19", + "debug": "^4.3.4", + "pirates": "^4.0.5", + "tslib": "^2.5.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/Brooooooklyn" - } - }, - "node_modules/@swc-node/register/node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" }, - "engines": { - "node": ">=4.2.0" + "peerDependencies": { + "@swc/core": ">= 1.3", + "typescript": ">= 4.3" } }, "node_modules/@swc-node/sourcemap-support": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", - "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.3.0.tgz", + "integrity": "sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==", "dev": true, "dependencies": { - "source-map-support": "^0.5.21" + "source-map-support": "^0.5.21", + "tslib": "^2.5.0" } }, "node_modules/@swc/cli": { - "version": "0.1.62", - "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", - "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", + "version": "0.1.63", + "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.63.tgz", + "integrity": "sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==", "dev": true, "dependencies": { "@mole-inc/bin-wrapper": "^8.0.1", @@ -7399,11 +6405,15 @@ } }, "node_modules/@swc/core": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", - "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.101.tgz", + "integrity": "sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==", "dev": true, "hasInstallScript": true, + "dependencies": { + "@swc/counter": "^0.1.1", + "@swc/types": "^0.1.5" + }, "engines": { "node": ">=10" }, @@ -7412,16 +6422,16 @@ "url": "https://opencollective.com/swc" }, "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.67", - "@swc/core-darwin-x64": "1.3.67", - "@swc/core-linux-arm-gnueabihf": "1.3.67", - "@swc/core-linux-arm64-gnu": "1.3.67", - "@swc/core-linux-arm64-musl": "1.3.67", - "@swc/core-linux-x64-gnu": "1.3.67", - "@swc/core-linux-x64-musl": "1.3.67", - "@swc/core-win32-arm64-msvc": "1.3.67", - "@swc/core-win32-ia32-msvc": "1.3.67", - "@swc/core-win32-x64-msvc": "1.3.67" + "@swc/core-darwin-arm64": "1.3.101", + "@swc/core-darwin-x64": "1.3.101", + "@swc/core-linux-arm-gnueabihf": "1.3.101", + "@swc/core-linux-arm64-gnu": "1.3.101", + "@swc/core-linux-arm64-musl": "1.3.101", + "@swc/core-linux-x64-gnu": "1.3.101", + "@swc/core-linux-x64-musl": "1.3.101", + "@swc/core-win32-arm64-msvc": "1.3.101", + "@swc/core-win32-ia32-msvc": "1.3.101", + "@swc/core-win32-x64-msvc": "1.3.101" }, "peerDependencies": { "@swc/helpers": "^0.5.0" @@ -7433,9 +6443,9 @@ } }, "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", - "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.101.tgz", + "integrity": "sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==", "cpu": [ "arm64" ], @@ -7449,9 +6459,9 @@ } }, "node_modules/@swc/core-darwin-x64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", - "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.101.tgz", + "integrity": "sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==", "cpu": [ "x64" ], @@ -7465,9 +6475,9 @@ } }, "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", - "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.101.tgz", + "integrity": "sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==", "cpu": [ "arm" ], @@ -7481,9 +6491,9 @@ } }, "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", - "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.101.tgz", + "integrity": "sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==", "cpu": [ "arm64" ], @@ -7497,9 +6507,9 @@ } }, "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", - "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.101.tgz", + "integrity": "sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==", "cpu": [ "arm64" ], @@ -7513,9 +6523,9 @@ } }, "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", - "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.101.tgz", + "integrity": "sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==", "cpu": [ "x64" ], @@ -7529,9 +6539,9 @@ } }, "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", - "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.101.tgz", + "integrity": "sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==", "cpu": [ "x64" ], @@ -7545,9 +6555,9 @@ } }, "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", - "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.101.tgz", + "integrity": "sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==", "cpu": [ "arm64" ], @@ -7561,9 +6571,9 @@ } }, "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", - "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.101.tgz", + "integrity": "sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==", "cpu": [ "ia32" ], @@ -7577,9 +6587,9 @@ } }, "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", - "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", + "version": "1.3.101", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.101.tgz", + "integrity": "sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==", "cpu": [ "x64" ], @@ -7592,15 +6602,27 @@ "node": ">=10" } }, + "node_modules/@swc/counter": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.2.tgz", + "integrity": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==", + "dev": true + }, "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.3.tgz", + "integrity": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==", "dev": true, "dependencies": { "tslib": "^2.4.0" } }, + "node_modules/@swc/types": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz", + "integrity": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==", + "dev": true + }, "node_modules/@szmarczak/http-timer": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", @@ -7662,25 +6684,25 @@ "dev": true }, "node_modules/@tufjs/canonical-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", - "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz", + "integrity": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==", "dev": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@tufjs/models": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", - "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz", + "integrity": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==", "dev": true, "dependencies": { - "@tufjs/canonical-json": "1.0.0", - "minimatch": "^9.0.0" + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@tufjs/models/node_modules/brace-expansion": { @@ -7693,9 +6715,9 @@ } }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -7708,9 +6730,9 @@ } }, "node_modules/@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "dependencies": { "@babel/parser": "^7.20.7", @@ -7721,18 +6743,18 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", @@ -7740,18 +6762,18 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", "dev": true, "dependencies": { "@babel/types": "^7.20.7" } }, "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, "dependencies": { "@types/connect": "*", @@ -7759,9 +6781,9 @@ } }, "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -7780,28 +6802,43 @@ } }, "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "dev": true, "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, + "node_modules/@types/cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", + "dev": true + }, + "node_modules/@types/cors": { + "version": "2.8.17", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.17.tgz", + "integrity": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/eslint": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", - "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==", "dev": true, "dependencies": { "@types/estree": "*", @@ -7809,9 +6846,9 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dev": true, "dependencies": { "@types/eslint": "*", @@ -7819,15 +6856,15 @@ } }, "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", "dev": true }, "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, "dependencies": { "@types/body-parser": "*", @@ -7837,9 +6874,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "version": "4.17.41", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", + "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", "dev": true, "dependencies": { "@types/node": "*", @@ -7849,72 +6886,72 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", "dev": true }, "node_modules/@types/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true }, "node_modules/@types/http-proxy": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", - "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/inquirer": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", - "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.7.tgz", + "integrity": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==", "dependencies": { "@types/through": "*", "rxjs": "^7.2.0" } }, "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true }, "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { - "version": "29.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", - "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "version": "29.5.11", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.11.tgz", + "integrity": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==", "dev": true, "dependencies": { "expect": "^29.0.0", @@ -7933,15 +6970,9 @@ } }, "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true }, "node_modules/@types/keyv": { @@ -7954,21 +6985,30 @@ } }, "node_modules/@types/lodash": { - "version": "4.14.195", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", - "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", + "version": "4.14.202", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", + "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==", "dev": true }, "node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, "node_modules/@types/node": { - "version": "18.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", - "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" + "version": "18.16.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.9.tgz", + "integrity": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" + }, + "node_modules/@types/node-forge": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.10.tgz", + "integrity": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } }, "node_modules/@types/normalize-package-data": { "version": "2.4.4", @@ -7977,33 +7017,27 @@ "dev": true }, "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "dev": true }, "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "version": "6.9.10", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", + "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==", "dev": true }, "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true }, "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", "dev": true, "dependencies": { "@types/node": "*" @@ -8016,15 +7050,15 @@ "dev": true }, "node_modules/@types/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", "dev": true }, "node_modules/@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, "dependencies": { "@types/mime": "^1", @@ -8032,18 +7066,18 @@ } }, "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dev": true, "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", - "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", "dev": true, "dependencies": { "@types/http-errors": "*", @@ -8058,68 +7092,68 @@ "dev": true }, "node_modules/@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.8.tgz", + "integrity": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==", "dev": true }, "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.33.tgz", + "integrity": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/tough-cookie": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", - "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", "dev": true }, "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true }, "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", "dev": true, "optional": true, "dependencies": { @@ -8127,32 +7161,33 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", - "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.15.0.tgz", + "integrity": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/type-utils": "5.60.1", - "@typescript-eslint/utils": "5.60.1", + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.15.0", + "@typescript-eslint/type-utils": "6.15.0", + "@typescript-eslint/utils": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0", "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -8161,25 +7196,25 @@ } }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", - "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.15.0.tgz", + "integrity": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.60.1", - "@typescript-eslint/utils": "5.60.1", + "@typescript-eslint/typescript-estree": "6.15.0", + "@typescript-eslint/utils": "6.15.0", "debug": "^4.3.4", - "tsutils": "^3.21.0" + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "*" + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -8188,73 +7223,51 @@ } }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", - "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.15.0.tgz", + "integrity": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.15.0", + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/typescript-estree": "6.15.0", + "semver": "^7.5.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" + "eslint": "^7.0.0 || ^8.0.0" } }, "node_modules/@typescript-eslint/parser": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", - "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.15.0.tgz", + "integrity": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", + "@typescript-eslint/scope-manager": "6.15.0", + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/typescript-estree": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0", "debug": "^4.3.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -8263,16 +7276,16 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", - "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.15.0.tgz", + "integrity": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1" + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8280,25 +7293,25 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", - "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.13.1.tgz", + "integrity": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.7", - "@typescript-eslint/utils": "5.59.7", + "@typescript-eslint/typescript-estree": "6.13.1", + "@typescript-eslint/utils": "6.13.1", "debug": "^4.3.4", - "tsutils": "^3.21.0" + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "*" + "eslint": "^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -8307,12 +7320,12 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.13.1.tgz", + "integrity": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8320,21 +7333,21 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.13.1.tgz", + "integrity": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", + "@typescript-eslint/types": "6.13.1", + "@typescript-eslint/visitor-keys": "6.13.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8347,16 +7360,16 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.13.1.tgz", + "integrity": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" + "@typescript-eslint/types": "6.13.1", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8364,12 +7377,12 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", - "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.15.0.tgz", + "integrity": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8377,21 +7390,21 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", - "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.15.0.tgz", + "integrity": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1", + "@typescript-eslint/types": "6.15.0", + "@typescript-eslint/visitor-keys": "6.15.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8404,42 +7417,41 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", - "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.13.1.tgz", + "integrity": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.7", - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/typescript-estree": "5.59.7", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.13.1", + "@typescript-eslint/types": "6.13.1", + "@typescript-eslint/typescript-estree": "6.13.1", + "semver": "^7.5.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "eslint": "^7.0.0 || ^8.0.0" } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", - "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.13.1.tgz", + "integrity": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7" + "@typescript-eslint/types": "6.13.1", + "@typescript-eslint/visitor-keys": "6.13.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8447,12 +7459,12 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.13.1.tgz", + "integrity": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8460,21 +7472,21 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.13.1.tgz", + "integrity": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", + "@typescript-eslint/types": "6.13.1", + "@typescript-eslint/visitor-keys": "6.13.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8487,55 +7499,33 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.13.1.tgz", + "integrity": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" + "@typescript-eslint/types": "6.13.1", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", - "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.15.0.tgz", + "integrity": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.60.1", - "eslint-visitor-keys": "^3.3.0" + "@typescript-eslint/types": "6.15.0", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^16.0.0 || >=18.0.0" }, "funding": { "type": "opencollective", @@ -8560,17 +7550,17 @@ } }, "node_modules/@verdaccio/config": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", - "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-7.0.0-next.4.tgz", + "integrity": "sha512-bMQEL+ZGzoH8WIHEoC1HZon35QIWjY3KdYGyKc4eUKr6bUyQSRksmPQ40NQVgcUY0vlfkJMB+TCvgVXaf8kfBw==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/utils": "6.0.0-6-next.39", + "@verdaccio/core": "7.0.0-next.4", + "@verdaccio/utils": "7.0.0-next.4", "debug": "4.3.4", "js-yaml": "4.1.0", "lodash": "4.17.21", - "minimatch": "3.1.2", + "minimatch": "7.4.6", "yup": "0.32.11" }, "engines": { @@ -8587,6 +7577,15 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, + "node_modules/@verdaccio/config/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, "node_modules/@verdaccio/config/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", @@ -8600,21 +7599,24 @@ } }, "node_modules/@verdaccio/config/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@verdaccio/core": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", - "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-7.0.0-next.4.tgz", + "integrity": "sha512-wbgFq7d2m/ijmusD6wPVxm6aCxvSLNcP/XagrNKahEbdcgMcDv+6Dm6ZBaKcVgtIMv++aZkc3F3mV4Scj3snSQ==", "dev": true, "dependencies": { "ajv": "8.12.0", @@ -8622,7 +7624,7 @@ "http-errors": "2.0.0", "http-status-codes": "2.2.0", "process-warning": "1.0.0", - "semver": "7.5.0" + "semver": "7.5.4" }, "engines": { "node": ">=12" @@ -8632,39 +7634,6 @@ "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@verdaccio/core/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@verdaccio/core/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@verdaccio/core/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@verdaccio/file-locking": { "version": "10.3.1", "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", @@ -8704,6 +7673,12 @@ "url": "https://opencollective.com/verdaccio" } }, + "node_modules/@verdaccio/local-storage/node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, "node_modules/@verdaccio/local-storage/node_modules/mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", @@ -8717,12 +7692,12 @@ } }, "node_modules/@verdaccio/logger-7": { - "version": "6.0.0-6-next.16", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", - "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-7.0.0-next.4.tgz", + "integrity": "sha512-kx+/vY9THFHXTxsQT/McbqG4psu6CmlkjnLvcrk0Gbyki3Uaquo79K/3rPokHWnS7Ur45gxYIukIAzVfcA0mKA==", "dev": true, "dependencies": { - "@verdaccio/logger-commons": "6.0.0-6-next.39", + "@verdaccio/logger-commons": "7.0.0-next.4", "pino": "7.11.0" }, "engines": { @@ -8734,13 +7709,13 @@ } }, "node_modules/@verdaccio/logger-commons": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", - "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-7.0.0-next.4.tgz", + "integrity": "sha512-l7T3u8eW84UrQQHAOjqUw12t9q2IRleCnniQ9wV/KpBQNwuE3BPPy6t9/64QW9eXOzldJ8G3w7ttPCsK+cq8uw==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/logger-prettify": "6.0.0-6-next.10", + "@verdaccio/core": "7.0.0-next.4", + "@verdaccio/logger-prettify": "7.0.0-next.1", "colorette": "2.0.20", "debug": "4.3.4" }, @@ -8753,9 +7728,9 @@ } }, "node_modules/@verdaccio/logger-prettify": { - "version": "6.0.0-6-next.10", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", - "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", + "version": "7.0.0-next.1", + "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-7.0.0-next.1.tgz", + "integrity": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==", "dev": true, "dependencies": { "colorette": "2.0.20", @@ -8779,15 +7754,15 @@ "dev": true }, "node_modules/@verdaccio/middleware": { - "version": "6.0.0-6-next.50", - "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", - "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-7.0.0-next.4.tgz", + "integrity": "sha512-EjRif42rbikn5WUB6+an9IX6zoAXiIG5jKOmzdOx6vIZ3iYg0HmgEFW5do2gVchFiox1+M2WMRTS55J0xG+dCA==", "dev": true, "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", + "@verdaccio/config": "7.0.0-next.4", + "@verdaccio/core": "7.0.0-next.4", + "@verdaccio/url": "12.0.0-next.4", + "@verdaccio/utils": "7.0.0-next.4", "debug": "4.3.4", "express": "4.18.2", "express-rate-limit": "5.5.1", @@ -8825,13 +7800,12 @@ } }, "node_modules/@verdaccio/search": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", - "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", + "version": "7.0.0-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-7.0.0-next.2.tgz", + "integrity": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==", "dev": true, "engines": { - "node": ">=12", - "npm": ">=6" + "node": ">=12" }, "funding": { "type": "opencollective", @@ -8839,13 +7813,13 @@ } }, "node_modules/@verdaccio/signature": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", - "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", + "version": "7.0.0-next.2", + "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-7.0.0-next.2.tgz", + "integrity": "sha512-rxoSmdKrSJZEoSsWKjgytpqf2Bltbs6sR5Hflu8xXfPZPmHpXkGgAdb8tuSlnmjzo6hXoKfje8b9BJoP2bDwbA==", "dev": true, "dependencies": { "debug": "4.3.4", - "jsonwebtoken": "9.0.0", + "jsonwebtoken": "9.0.2", "lodash": "4.17.21" }, "engines": { @@ -8871,14 +7845,14 @@ } }, "node_modules/@verdaccio/tarball": { - "version": "11.0.0-6-next.40", - "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", - "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", + "version": "12.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-12.0.0-next.4.tgz", + "integrity": "sha512-3GuyDaoshKOYdv+zTEKiyUO/0h3xGvr+RCJBkvMkPwIXfbkWDPyk00lxSXZDCqwFePZgcDaHOqS7krz2rMdsoQ==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", + "@verdaccio/core": "7.0.0-next.4", + "@verdaccio/url": "12.0.0-next.4", + "@verdaccio/utils": "7.0.0-next.4", "debug": "4.3.4", "lodash": "4.17.21" }, @@ -8891,18 +7865,18 @@ } }, "node_modules/@verdaccio/ui-theme": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", - "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-7.0.0-next.4.tgz", + "integrity": "sha512-zvkAMyBmD0txGEpocdGQ9yRCvPYZEb0lH6lh0AAOcKwXg5SaY9yW/n2Rx3k6873xebA4bEMldWB3j+Uv8Jciqw==", "dev": true }, "node_modules/@verdaccio/url": { - "version": "11.0.0-6-next.37", - "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", - "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", + "version": "12.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-12.0.0-next.4.tgz", + "integrity": "sha512-0SszVxX6VGgbrwPWU2WzvEbTUEZP4j6Krulb7Ju6hCVrV6A1/W/CGrztnRNcdE/avSZWZvvDpQ65NBRFE7pjtQ==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/core": "7.0.0-next.4", "debug": "4.3.4", "lodash": "4.17.21", "validator": "13.9.0" @@ -8915,16 +7889,25 @@ "url": "https://opencollective.com/verdaccio" } }, + "node_modules/@verdaccio/url/node_modules/validator": { + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", + "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/@verdaccio/utils": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", - "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", + "version": "7.0.0-next.4", + "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-7.0.0-next.4.tgz", + "integrity": "sha512-hgGUkmxBl03TvXQSvgHeI9BU6JrCW/QQu7O3+9f1etvCz2EWQ81JvCv8qsY3bHCT/ggYapvr/8xcjtUtJ1/KgA==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/core": "7.0.0-next.4", "lodash": "4.17.21", - "minimatch": "3.1.2", - "semver": "7.5.0" + "minimatch": "7.4.6", + "semver": "7.5.4" }, "engines": { "node": ">=12" @@ -8934,51 +7917,30 @@ "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@verdaccio/utils/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@verdaccio/utils/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "balanced-match": "^1.0.0" } }, "node_modules/@verdaccio/utils/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@verdaccio/utils/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@verdaccio/utils/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@vitejs/plugin-basic-ssl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", @@ -9156,16 +8118,16 @@ "dev": true }, "node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.48", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", - "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", + "version": "3.0.0-rc.46", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", + "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", "dev": true, "dependencies": { "js-yaml": "^3.10.0", "tslib": "^2.4.0" }, "engines": { - "node": ">=18.12.0" + "node": ">=14.15.0" } }, "node_modules/@zkochan/js-yaml": { @@ -9190,13 +8152,17 @@ "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", "dev": true }, "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, "node_modules/abort-controller": { "version": "3.0.0", @@ -9224,9 +8190,9 @@ } }, "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -9264,9 +8230,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", + "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", "dev": true, "engines": { "node": ">=0.4.0" @@ -9309,29 +8275,15 @@ } }, "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", "dev": true, "dependencies": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" + "debug": "^4.3.4" }, "engines": { - "node": ">= 8.0.0" + "node": ">= 14" } }, "node_modules/aggregate-error": { @@ -9450,15 +8402,17 @@ } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/ansi-wrap": { @@ -9490,6 +8444,18 @@ "node": ">= 8" } }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/apache-md5": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", @@ -9499,12 +8465,6 @@ "node": ">=8" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, "node_modules/arch": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", @@ -9525,33 +8485,6 @@ } ] }, - "node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/are-we-there-yet/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", @@ -9575,12 +8508,12 @@ "peer": true }, "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "dequal": "^2.0.3" } }, "node_modules/array-buffer-byte-length": { @@ -9608,25 +8541,6 @@ "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", "dev": true }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", @@ -9636,34 +8550,19 @@ "node": ">=8" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", "dev": true, "dependencies": { + "array-buffer-byte-length": "^1.0.0", "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -9672,19 +8571,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, "node_modules/asn1": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", @@ -9713,11 +8599,20 @@ } }, "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", "dev": true }, + "node_modules/async-each-series": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz", + "integrity": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -9752,9 +8647,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "dev": true, "funding": [ { @@ -9764,12 +8659,16 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -9812,55 +8711,33 @@ "dev": true }, "node_modules/axios": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", - "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", "dev": true, "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/axios/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" + "follow-redirects": "^1.14.0" } }, - "node_modules/axios/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", + "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "dequal": "^2.0.3" } }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -9873,12 +8750,12 @@ } }, "node_modules/babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", "dev": true, "dependencies": { - "find-cache-dir": "^3.3.2", + "find-cache-dir": "^4.0.0", "schema-utils": "^4.0.0" }, "engines": { @@ -9889,6 +8766,119 @@ "webpack": ">=5" } }, + "node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "dev": true, + "dependencies": { + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "dependencies": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/babel-loader/node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "dependencies": { + "find-up": "^6.3.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/babel-plugin-const-enum": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", @@ -9919,10 +8909,35 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -9946,51 +8961,51 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz", + "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.4", + "semver": "^6.3.1" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", + "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "@babel/helper-define-polyfill-provider": "^0.4.4", + "core-js-compat": "^3.33.1" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz", + "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" + "@babel/helper-define-polyfill-provider": "^0.4.4" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-transform-typescript-metadata": { @@ -10026,12 +9041,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -10067,6 +9082,15 @@ } ] }, + "node_modules/base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", + "dev": true, + "engines": { + "node": "^4.5.0 || >= 5.9" + } + }, "node_modules/basic-auth": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", @@ -10135,114 +9159,151 @@ "node": ">=4" } }, - "node_modules/bin-version": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", - "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", + "node_modules/bin-check/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, "dependencies": { - "execa": "^5.0.0", - "find-versions": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "node_modules/bin-version-check": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", - "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", + "node_modules/bin-check/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", "dev": true, "dependencies": { - "bin-version": "^6.0.0", - "semver": "^7.5.3", - "semver-truncate": "^3.0.0" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/bin-version-check/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/bin-check/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/bin-version-check/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/bin-check/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/bin-check/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/bin-version-check/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/bin-check/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/bin-version/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/bin-check/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "shebang-regex": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "bin": { + "which": "bin/which" } }, - "node_modules/bin-version/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/bin-check/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/bin-version": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", + "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", "dev": true, + "dependencies": { + "execa": "^5.0.0", + "find-versions": "^5.0.0" + }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bin-version/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/bin-version-check": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", + "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", "dev": true, + "dependencies": { + "bin-version": "^6.0.0", + "semver": "^7.5.3", + "semver-truncate": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -10333,6 +9394,18 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, + "node_modules/body-parser/node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/body-parser/node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", @@ -10401,10 +9474,111 @@ "node": ">=8" } }, + "node_modules/browser-sync": { + "version": "2.29.3", + "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.29.3.tgz", + "integrity": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==", + "dev": true, + "dependencies": { + "browser-sync-client": "^2.29.3", + "browser-sync-ui": "^2.29.3", + "bs-recipes": "1.3.4", + "chalk": "4.1.2", + "chokidar": "^3.5.1", + "connect": "3.6.6", + "connect-history-api-fallback": "^1", + "dev-ip": "^1.0.1", + "easy-extender": "^2.3.4", + "eazy-logger": "^4.0.1", + "etag": "^1.8.1", + "fresh": "^0.5.2", + "fs-extra": "3.0.1", + "http-proxy": "^1.18.1", + "immutable": "^3", + "localtunnel": "^2.0.1", + "micromatch": "^4.0.2", + "opn": "5.3.0", + "portscanner": "2.2.0", + "raw-body": "^2.3.2", + "resp-modifier": "6.0.2", + "rx": "4.1.0", + "send": "0.16.2", + "serve-index": "1.9.1", + "serve-static": "1.13.2", + "server-destroy": "1.0.1", + "socket.io": "^4.4.1", + "ua-parser-js": "^1.0.33", + "yargs": "^17.3.1" + }, + "bin": { + "browser-sync": "dist/bin.js" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/browser-sync-client": { + "version": "2.29.3", + "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.29.3.tgz", + "integrity": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==", + "dev": true, + "dependencies": { + "etag": "1.8.1", + "fresh": "0.5.2", + "mitt": "^1.1.3" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/browser-sync-ui": { + "version": "2.29.3", + "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.29.3.tgz", + "integrity": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==", + "dev": true, + "dependencies": { + "async-each-series": "0.1.1", + "chalk": "4.1.2", + "connect-history-api-fallback": "^1", + "immutable": "^3", + "server-destroy": "1.0.1", + "socket.io-client": "^4.4.1", + "stream-throttle": "^0.1.3" + } + }, + "node_modules/browser-sync/node_modules/fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^3.0.0", + "universalify": "^0.1.0" + } + }, + "node_modules/browser-sync/node_modules/jsonfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", + "integrity": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/browser-sync/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "dev": true, "funding": [ { @@ -10414,13 +9588,17 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" @@ -10441,6 +9619,12 @@ "node": ">= 6" } }, + "node_modules/bs-recipes": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz", + "integrity": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==", + "dev": true + }, "node_modules/bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", @@ -10526,27 +9710,26 @@ } }, "node_modules/cacache": { - "version": "17.0.6", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", - "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.1.tgz", + "integrity": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==", "dev": true, "dependencies": { "@npmcli/fs": "^3.1.0", "fs-minipass": "^3.0.0", "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-collect": "^1.0.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", "ssri": "^10.0.0", "tar": "^6.1.11", "unique-filename": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/cacache/node_modules/brace-expansion": { @@ -10559,19 +9742,19 @@ } }, "node_modules/cacache/node_modules/glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", + "jackspeak": "^2.3.5", "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" }, "bin": { - "glob": "dist/cjs/src/bin.js" + "glob": "dist/esm/bin.mjs" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -10581,18 +9764,18 @@ } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, "engines": { - "node": ">=12" + "node": "14 || >=16.14" } }, "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -10647,22 +9830,23 @@ } }, "node_modules/cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", + "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -10699,9 +9883,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001511", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", - "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", + "version": "1.0.30001570", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz", + "integrity": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==", "dev": true, "funding": [ { @@ -10753,47 +9937,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/chalk/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/chalk/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/chalk/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -10864,9 +10007,9 @@ } }, "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -10933,71 +10076,21 @@ } }, "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", - "dev": true, - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", @@ -11008,9 +10101,9 @@ } }, "node_modules/clipanion": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", - "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.1.tgz", + "integrity": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==", "dev": true, "dependencies": { "typanion": "^3.8.0" @@ -11020,14 +10113,34 @@ } }, "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/clone": { @@ -11099,34 +10212,26 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/colord": { "version": "2.9.3", @@ -11140,6 +10245,19 @@ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, + "node_modules/columnify": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", + "integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==", + "dev": true, + "dependencies": { + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -11161,6 +10279,12 @@ "node": ">= 10" } }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, "node_modules/common-tags": { "version": "1.8.2", "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", @@ -11309,10 +10433,25 @@ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true }, + "node_modules/connect": { + "version": "3.6.6", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz", + "integrity": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.0", + "parseurl": "~1.3.2", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", "dev": true, "engines": { "node": ">=0.8" @@ -11327,10 +10466,19 @@ "node": "*" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "node_modules/content-disposition": { @@ -11398,39 +10546,6 @@ "node": ">=16" } }, - "node_modules/conventional-changelog-writer/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/conventional-changelog-writer/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/conventional-changelog-writer/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/conventional-commits-filter": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", @@ -11528,34 +10643,6 @@ "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/copy-webpack-plugin/node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -11569,14 +10656,14 @@ } }, "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", - "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "dev": true, "dependencies": { "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" }, @@ -11611,12 +10698,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.34.0.tgz", + "integrity": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==", "dev": true, "dependencies": { - "browserslist": "^4.21.5" + "browserslist": "^4.22.2" }, "funding": { "type": "opencollective", @@ -11667,6 +10754,27 @@ "node": ">=8" } }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -11674,25 +10782,20 @@ "dev": true }, "node_modules/critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", + "version": "0.0.20", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.20.tgz", + "integrity": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==", "dev": true, "dependencies": { "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", + "css-select": "^5.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.2", + "htmlparser2": "^8.0.2", + "postcss": "^8.4.23", "pretty-bytes": "^5.3.0" } }, - "node_modules/critters/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -11737,27 +10840,27 @@ } }, "node_modules/css-declaration-sorter": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", - "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", "dev": true, "engines": { - "node": "^10 || ^12 || >=14" + "node": "^14 || ^16 || >=18" }, "peerDependencies": { "postcss": "^8.0.9" } }, "node_modules/css-loader": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", - "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", "dev": true, "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.4.19", + "postcss": "^8.4.21", "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-local-by-default": "^4.0.3", "postcss-modules-scope": "^3.0.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", @@ -11818,44 +10921,16 @@ } } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "dependencies": { "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", "nth-check": "^2.0.1" }, "funding": { @@ -11900,13 +10975,13 @@ } }, "node_modules/cssnano": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", - "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.2.tgz", + "integrity": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==", "dev": true, "dependencies": { - "cssnano-preset-default": "^6.0.1", - "lilconfig": "^2.1.0" + "cssnano-preset-default": "^6.0.2", + "lilconfig": "^3.0.0" }, "engines": { "node": "^14 || ^16 || >=18.0" @@ -11916,62 +10991,62 @@ "url": "https://opencollective.com/cssnano" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/cssnano-preset-default": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", - "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", - "dev": true, - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^4.0.0", - "postcss-calc": "^9.0.0", - "postcss-colormin": "^6.0.0", - "postcss-convert-values": "^6.0.0", - "postcss-discard-comments": "^6.0.0", - "postcss-discard-duplicates": "^6.0.0", - "postcss-discard-empty": "^6.0.0", - "postcss-discard-overridden": "^6.0.0", - "postcss-merge-longhand": "^6.0.0", - "postcss-merge-rules": "^6.0.1", - "postcss-minify-font-values": "^6.0.0", - "postcss-minify-gradients": "^6.0.0", - "postcss-minify-params": "^6.0.0", - "postcss-minify-selectors": "^6.0.0", - "postcss-normalize-charset": "^6.0.0", - "postcss-normalize-display-values": "^6.0.0", - "postcss-normalize-positions": "^6.0.0", - "postcss-normalize-repeat-style": "^6.0.0", - "postcss-normalize-string": "^6.0.0", - "postcss-normalize-timing-functions": "^6.0.0", - "postcss-normalize-unicode": "^6.0.0", - "postcss-normalize-url": "^6.0.0", - "postcss-normalize-whitespace": "^6.0.0", - "postcss-ordered-values": "^6.0.0", - "postcss-reduce-initial": "^6.0.0", - "postcss-reduce-transforms": "^6.0.0", - "postcss-svgo": "^6.0.0", - "postcss-unique-selectors": "^6.0.0" + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.2.tgz", + "integrity": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^7.0.0", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.1", + "postcss-convert-values": "^6.0.1", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.1", + "postcss-merge-rules": "^6.0.2", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.1", + "postcss-minify-selectors": "^6.0.1", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.1", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.1", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.1", + "postcss-unique-selectors": "^6.0.1" }, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/cssnano-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", - "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", "dev": true, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/csso": { @@ -12032,15 +11107,15 @@ "dev": true }, "node_modules/cypress": { - "version": "12.16.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", - "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", + "version": "12.17.4", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.17.4.tgz", + "integrity": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==", "dev": true, "hasInstallScript": true, "dependencies": { - "@cypress/request": "^2.88.10", + "@cypress/request": "2.88.12", "@cypress/xvfb": "^1.2.4", - "@types/node": "^14.14.31", + "@types/node": "^16.18.39", "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", "arch": "^2.2.0", @@ -12073,9 +11148,10 @@ "minimist": "^1.2.8", "ospath": "^1.2.2", "pretty-bytes": "^5.6.0", + "process": "^0.11.10", "proxy-from-env": "1.0.0", "request-progress": "^3.0.0", - "semver": "^7.3.2", + "semver": "^7.5.3", "supports-color": "^8.1.1", "tmp": "~0.2.1", "untildify": "^4.0.0", @@ -12089,9 +11165,9 @@ } }, "node_modules/cypress/node_modules/@types/node": { - "version": "14.18.53", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", - "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", + "version": "16.18.68", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.68.tgz", + "integrity": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==", "dev": true }, "node_modules/cypress/node_modules/commander": { @@ -12165,16 +11241,19 @@ "node": ">=8.12.0" } }, - "node_modules/cypress/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/cypress/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/dashdash": { @@ -12204,9 +11283,9 @@ } }, "node_modules/dayjs": { - "version": "1.11.9", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", - "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", + "version": "1.11.10", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", + "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==", "dev": true }, "node_modules/debug": { @@ -12259,41 +11338,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "node_modules/deep-equal": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", - "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.0", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", @@ -12331,53 +11375,6 @@ "node": ">= 10" } }, - "node_modules/default-gateway/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/default-gateway/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-gateway/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -12399,6 +11396,20 @@ "node": ">=10" } }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/define-lazy-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", @@ -12409,11 +11420,12 @@ } }, "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "dependencies": { + "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" }, @@ -12433,12 +11445,6 @@ "node": ">=0.4.0" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -12455,6 +11461,15 @@ "dev": true, "peer": true }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", @@ -12494,6 +11509,18 @@ "detect-port": "bin/detect-port.js" } }, + "node_modules/dev-ip": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", + "integrity": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==", + "dev": true, + "bin": { + "dev-ip": "lib/dev-ip.js" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/diacritics-map": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", @@ -12513,9 +11540,9 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -12540,9 +11567,9 @@ "dev": true }, "node_modules/dns-packet": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", - "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" @@ -12564,14 +11591,14 @@ } }, "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" @@ -12593,6 +11620,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", "dev": true, "dependencies": { "webidl-conversions": "^7.0.0" @@ -12602,12 +11630,12 @@ } }, "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, "dependencies": { - "domelementtype": "^2.2.0" + "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" @@ -12617,14 +11645,14 @@ } }, "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" @@ -12643,12 +11671,24 @@ } }, "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/dotenv-expand": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/duplexer": { @@ -12699,6 +11739,30 @@ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true }, + "node_modules/easy-extender": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz", + "integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==", + "dev": true, + "dependencies": { + "lodash": "^4.17.10" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/eazy-logger": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-4.0.1.tgz", + "integrity": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==", + "dev": true, + "dependencies": { + "chalk": "4.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -12740,9 +11804,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.447", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", - "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", + "version": "1.4.615", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.615.tgz", + "integrity": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==", "dev": true }, "node_modules/emittery": { @@ -12820,6 +11884,100 @@ "once": "^1.4.0" } }, + "node_modules/engine.io": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.4.tgz", + "integrity": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==", + "dev": true, + "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.11.0" + }, + "engines": { + "node": ">=10.2.0" + } + }, + "node_modules/engine.io-client": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.3.tgz", + "integrity": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==", + "dev": true, + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.11.0", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "node_modules/engine.io-client/node_modules/ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/engine.io-parser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.1.tgz", + "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io/node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/engine.io/node_modules/ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/enhanced-resolve": { "version": "5.15.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", @@ -12846,10 +12004,13 @@ } }, "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "devOptional": true, + "engines": { + "node": ">=0.12" + }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } @@ -13022,9 +12183,9 @@ } }, "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz", + "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", "dev": true, "bin": { "envinfo": "dist/cli.js" @@ -13075,25 +12236,26 @@ } }, "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", "dev": true, "dependencies": { "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", + "call-bind": "^1.0.5", "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", "get-symbol-description": "^1.0.0", "globalthis": "^1.0.3", "gopd": "^1.0.1", - "has": "^1.0.3", "has-property-descriptors": "^1.0.0", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", + "hasown": "^2.0.0", "internal-slot": "^1.0.5", "is-array-buffer": "^3.0.2", "is-callable": "^1.2.7", @@ -13101,19 +12263,23 @@ "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", + "is-typed-array": "^1.1.12", "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", + "object-inspect": "^1.13.1", "object-keys": "^1.1.1", "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", "typed-array-length": "^1.0.4", "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" + "which-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -13122,55 +12288,26 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/es-module-lexer": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", - "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", "dev": true }, "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" }, "engines": { "node": ">= 0.4" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - } - }, "node_modules/es-to-primitive": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", @@ -13189,11 +12326,12 @@ } }, "node_modules/esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.5.tgz", + "integrity": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==", "dev": true, "hasInstallScript": true, + "optional": true, "bin": { "esbuild": "bin/esbuild" }, @@ -13201,34 +12339,34 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" + "@esbuild/android-arm": "0.19.5", + "@esbuild/android-arm64": "0.19.5", + "@esbuild/android-x64": "0.19.5", + "@esbuild/darwin-arm64": "0.19.5", + "@esbuild/darwin-x64": "0.19.5", + "@esbuild/freebsd-arm64": "0.19.5", + "@esbuild/freebsd-x64": "0.19.5", + "@esbuild/linux-arm": "0.19.5", + "@esbuild/linux-arm64": "0.19.5", + "@esbuild/linux-ia32": "0.19.5", + "@esbuild/linux-loong64": "0.19.5", + "@esbuild/linux-mips64el": "0.19.5", + "@esbuild/linux-ppc64": "0.19.5", + "@esbuild/linux-riscv64": "0.19.5", + "@esbuild/linux-s390x": "0.19.5", + "@esbuild/linux-x64": "0.19.5", + "@esbuild/netbsd-x64": "0.19.5", + "@esbuild/openbsd-x64": "0.19.5", + "@esbuild/sunos-x64": "0.19.5", + "@esbuild/win32-arm64": "0.19.5", + "@esbuild/win32-ia32": "0.19.5", + "@esbuild/win32-x64": "0.19.5" } }, "node_modules/esbuild-wasm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", - "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.19.5.tgz", + "integrity": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==", "dev": true, "bin": { "esbuild": "bin/esbuild" @@ -13296,46 +12434,48 @@ } }, "node_modules/eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz", + "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.48.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", "ignore": "^5.2.0", - "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" @@ -13348,9 +12488,9 @@ } }, "node_modules/eslint-config-prettier": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", - "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" @@ -13359,396 +12499,49 @@ "eslint": ">=7.0.0" } }, - "node_modules/eslint-config-standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", - "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "eslint": "^8.0.1", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", - "eslint-plugin-promise": "^6.0.0" - } - }, - "node_modules/eslint-config-standard-jsx": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", - "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peerDependencies": { - "eslint": "^8.8.0", - "eslint-plugin-react": "^7.28.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, "node_modules/eslint-plugin-cypress": { - "version": "2.13.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", - "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.15.1.tgz", + "integrity": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==", "dev": true, "dependencies": { - "globals": "^11.12.0" + "globals": "^13.20.0" }, "peerDependencies": { "eslint": ">= 3.2.1" } }, - "node_modules/eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "node_modules/eslint-plugin-cypress/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "engines": { - "node": ">=8.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" - } - }, - "node_modules/eslint-plugin-es/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", - "dev": true, - "dependencies": { - "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-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "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.1" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/eslint-plugin-import/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-import/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/eslint-plugin-n": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", - "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", - "dev": true, - "dependencies": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=12.22.0" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-plugin-n/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/eslint-plugin-cypress/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", @@ -13761,37 +12554,10 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, "node_modules/eslint-visitor-keys": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", - "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -13822,6 +12588,22 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -13835,9 +12617,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -13867,6 +12649,21 @@ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/eslint/node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -13879,6 +12676,21 @@ "node": "*" } }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -13892,9 +12704,9 @@ } }, "node_modules/espree": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", - "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { "acorn": "^8.9.0", @@ -14009,104 +12821,40 @@ } }, "node_modules/execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/execa/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/execa/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/execa/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "path-key": "^2.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/execa/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/execa/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "dependencies": { - "shebang-regex": "^1.0.0" + "node": ">=10" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/execa/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/execa/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" + "node": ">=10" }, - "bin": { - "which": "bin/which" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/execa/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true - }, "node_modules/executable": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", @@ -14156,12 +12904,6 @@ "node": ">=0.10.0" } }, - "node_modules/expand-range/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, "node_modules/expand-range/node_modules/isobject": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", @@ -14175,16 +12917,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -14302,12 +13044,42 @@ "ms": "2.0.0" } }, + "node_modules/express/node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, + "node_modules/express/node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/express/node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", @@ -14338,6 +13110,60 @@ "node": ">= 0.8" } }, + "node_modules/express/node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/express/node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/express/node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/express/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/ext-list": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", @@ -14458,9 +13284,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -14470,7 +13296,7 @@ "micromatch": "^4.0.4" }, "engines": { - "node": ">=8" + "node": ">=8.6.0" } }, "node_modules/fast-json-stable-stringify": { @@ -14486,9 +13312,9 @@ "dev": true }, "node_modules/fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.3.0.tgz", + "integrity": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==", "dev": true, "engines": { "node": ">=6" @@ -14501,9 +13327,9 @@ "dev": true }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -14664,17 +13490,17 @@ } }, "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", + "integrity": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==", "dev": true, "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.2", + "encodeurl": "~1.0.1", "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.3.1", "unpipe": "~1.0.0" }, "engines": { @@ -14763,12 +13589,13 @@ } }, "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "dependencies": { - "flatted": "^3.1.0", + "flatted": "^3.2.9", + "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { @@ -14776,15 +13603,15 @@ } }, "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", "dev": true, "funding": [ { @@ -14836,9 +13663,9 @@ } }, "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "engines": { "node": ">=14" @@ -14993,16 +13820,16 @@ } }, "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "engines": { "node": "*" }, "funding": { "type": "patreon", - "url": "https://www.patreon.com/infusion" + "url": "https://github.com/sponsors/rawify" } }, "node_modules/fresh": { @@ -15031,9 +13858,9 @@ "dev": true }, "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -15045,21 +13872,21 @@ } }, "node_modules/fs-minipass": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", - "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", "dev": true, "dependencies": { - "minipass": "^5.0.0" + "minipass": "^7.0.3" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/fs-monkey": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", - "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", "dev": true }, "node_modules/fs.realpath": { @@ -15069,9 +13896,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -15083,21 +13910,24 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" @@ -15106,12 +13936,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -15121,25 +13945,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -15159,15 +13964,15 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", + "function-bind": "^1.1.2", "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15182,27 +13987,18 @@ "node": ">=8.0.0" } }, - "node_modules/get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/get-symbol-description": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", @@ -15263,19 +14059,20 @@ } }, "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=12" + "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -15299,25 +14096,16 @@ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, "node_modules/glob/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" + "node": "*" } }, "node_modules/global-dirs": { @@ -15388,22 +14176,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, "node_modules/gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", @@ -15447,12 +14219,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", @@ -15509,13 +14275,13 @@ "dev": true }, "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, "dependencies": { "minimist": "^1.2.5", - "neo-async": "^2.6.0", + "neo-async": "^2.6.2", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, @@ -15538,69 +14304,12 @@ "node": ">=0.10.0" } }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dev": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/har-validator/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/har-validator/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, "node_modules/harmony-reflect": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", @@ -15619,12 +14328,12 @@ } }, "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.1" + "get-intrinsic": "^1.2.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15669,11 +14378,17 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } }, "node_modules/hdr-histogram-js": { "version": "2.0.3", @@ -15715,24 +14430,24 @@ } }, "node_modules/hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, "dependencies": { - "lru-cache": "^7.5.1" + "lru-cache": "^10.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, "engines": { - "node": ">=12" + "node": "14 || >=16.14" } }, "node_modules/hpack.js": { @@ -15781,6 +14496,25 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "node_modules/htmlparser2": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" + } + }, "node_modules/http-cache-semantics": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", @@ -15809,6 +14543,15 @@ "node": ">= 0.8" } }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/http-parser-js": { "version": "0.5.8", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", @@ -15843,6 +14586,18 @@ "node": ">= 6" } }, + "node_modules/http-proxy-agent/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, "node_modules/http-proxy-middleware": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", @@ -15867,18 +14622,6 @@ } } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/http-server": { "version": "14.1.1", "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", @@ -15940,16 +14683,16 @@ } }, "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", "dev": true, "dependencies": { - "agent-base": "6", + "agent-base": "^7.0.2", "debug": "4" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/human-signals": { @@ -15961,15 +14704,6 @@ "node": ">=10.17.0" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "dev": true, - "dependencies": { - "ms": "^2.0.0" - } - }, "node_modules/husky": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", @@ -16042,18 +14776,18 @@ ] }, "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/ignore-walk": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", - "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz", + "integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==", "dev": true, "dependencies": { "minimatch": "^9.0.0" @@ -16072,9 +14806,9 @@ } }, "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -16100,10 +14834,13 @@ } }, "node_modules/immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "dev": true + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", + "integrity": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/import-fresh": { "version": "3.3.0", @@ -16219,18 +14956,18 @@ "dev": true }, "node_modules/ini": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", - "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "version": "8.2.6", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz", + "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", @@ -16247,16 +14984,16 @@ "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "wrap-ansi": "^6.0.1" }, "engines": { "node": ">=12.0.0" } }, "node_modules/inquirer-autocomplete-prompt": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", - "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.1.tgz", + "integrity": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==", "dev": true, "dependencies": { "ansi-escapes": "^4.3.2", @@ -16273,13 +15010,13 @@ } }, "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", "side-channel": "^1.0.4" }, "engines": { @@ -16317,22 +15054,6 @@ "node": ">= 0.10" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-array-buffer": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", @@ -16424,12 +15145,12 @@ } }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -16484,15 +15205,12 @@ } }, "node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, "node_modules/is-generator-fn": { @@ -16547,15 +15265,6 @@ "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-negative-zero": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", @@ -16580,6 +15289,15 @@ "node": ">=0.10.0" } }, + "node_modules/is-number-like": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz", + "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==", + "dev": true, + "dependencies": { + "lodash.isfinite": "^3.3.2" + } + }, "node_modules/is-number-object": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", @@ -16614,12 +15332,15 @@ } }, "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-plain-object": { @@ -16662,15 +15383,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", @@ -16684,12 +15396,15 @@ } }, "node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-string": { @@ -16735,16 +15450,12 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "which-typed-array": "^1.1.11" }, "engines": { "node": ">= 0.4" @@ -16771,15 +15482,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", @@ -16792,19 +15494,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-what": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", @@ -16824,9 +15513,9 @@ } }, "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, "node_modules/isexe": { @@ -16868,63 +15557,57 @@ } }, "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=10" } }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/istanbul-lib-source-maps": { @@ -16951,9 +15634,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -16964,9 +15647,9 @@ } }, "node_modules/jackspeak": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", - "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" @@ -17022,15 +15705,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -17048,113 +15731,115 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-changed-files/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-changed-files/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/jest-circus/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", "dev": true, - "engines": { - "node": ">=10" + "optional": true, + "peer": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=10", + "npm": ">=6" } }, - "node_modules/jest-changed-files/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/jest-circus/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, - "engines": { - "node": ">=8" + "optional": true, + "peer": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=10" } }, - "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "node_modules/jest-circus/node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -17173,31 +15858,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -17217,57 +15902,25 @@ } } }, - "node_modules/jest-config/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-config/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -17277,34 +15930,34 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-jsdom": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", - "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/jsdom": "^20.0.0", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", "jsdom": "^20.0.0" }, "engines": { @@ -17320,46 +15973,46 @@ } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -17371,46 +16024,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -17419,14 +16072,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -17450,9 +16103,9 @@ } }, "node_modules/jest-preset-angular": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", - "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", + "version": "13.1.4", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.4.tgz", + "integrity": "sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==", "dev": true, "dependencies": { "bs-logger": "^0.2.6", @@ -17469,35 +16122,35 @@ "esbuild": ">=0.13.8" }, "peerDependencies": { - "@angular-devkit/build-angular": ">=13.0.0 <17.0.0", - "@angular/compiler-cli": ">=13.0.0 <17.0.0", - "@angular/core": ">=13.0.0 <17.0.0", - "@angular/platform-browser-dynamic": ">=13.0.0 <17.0.0", + "@angular-devkit/build-angular": ">=13.0.0 <18.0.0", + "@angular/compiler-cli": ">=13.0.0 <18.0.0", + "@angular/core": ">=13.0.0 <18.0.0", + "@angular/platform-browser-dynamic": ">=13.0.0 <18.0.0", "jest": "^29.0.0", "typescript": ">=4.4" } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -17507,13 +16160,13 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -17529,30 +16182,30 @@ } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -17580,31 +16233,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -17612,79 +16265,44 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runtime/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-runtime/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -17695,18 +16313,30 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-util/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -17725,18 +16355,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -17744,13 +16374,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -17758,6 +16388,30 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, "node_modules/jju": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", @@ -17834,6 +16488,18 @@ } } }, + "node_modules/jsdom/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, "node_modules/jsdom/node_modules/form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", @@ -17848,28 +16514,17 @@ "node": ">= 6" } }, - "node_modules/jsdom/node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "node_modules/jsdom/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=6" - } - }, - "node_modules/jsdom/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" + "node": ">= 6" } }, "node_modules/jsesc": { @@ -17924,9 +16579,9 @@ "dev": true }, "node_modules/json-server": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", - "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.4.tgz", + "integrity": "sha512-bGBb0WtFuAKbgI7JV3A864irWnMZSvBYRJbohaOuatHwKSRFUfqtQlrYMrB6WbalXy/cJabyjlb7JkHli6dYjQ==", "dev": true, "dependencies": { "body-parser": "^1.19.0", @@ -17947,7 +16602,6 @@ "please-upgrade-node": "^3.2.0", "pluralize": "^8.0.0", "server-destroy": "^1.0.1", - "standard": "^17.0.0", "yargs": "^17.0.1" }, "bin": { @@ -17982,9 +16636,9 @@ } }, "node_modules/jsonc-eslint-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", - "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.4.0.tgz", + "integrity": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==", "dev": true, "dependencies": { "acorn": "^8.5.0", @@ -18043,15 +16697,21 @@ } }, "node_modules/jsonwebtoken": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", + "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", "dev": true, "dependencies": { "jws": "^3.2.2", - "lodash": "^4.17.21", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", "ms": "^2.1.1", - "semver": "^7.3.8" + "semver": "^7.5.4" }, "engines": { "node": ">=12", @@ -18073,21 +16733,6 @@ "verror": "1.10.0" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", - "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, "node_modules/jwa": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", @@ -18131,9 +16776,9 @@ } }, "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { "json-buffer": "3.0.1" @@ -18170,13 +16815,13 @@ } }, "node_modules/launch-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", - "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", "dev": true, "dependencies": { "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" + "shell-quote": "^1.8.1" } }, "node_modules/lazy-ass": { @@ -18201,9 +16846,9 @@ } }, "node_modules/less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", + "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", "dev": true, "dependencies": { "copy-anything": "^2.0.1", @@ -18271,9 +16916,9 @@ } }, "node_modules/less/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "optional": true, "bin": { @@ -18330,72 +16975,99 @@ } }, "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", "dev": true, "engines": { - "node": ">=10" + "node": ">=14" } }, + "node_modules/limiter": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", + "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==", + "dev": true + }, "node_modules/lines-and-columns": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", - "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz", + "integrity": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==", "dev": true, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, "node_modules/lint-staged": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", - "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.3.0.tgz", + "integrity": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==", "dev": true, "dependencies": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", + "chalk": "5.3.0", + "commander": "11.0.0", + "debug": "4.3.4", + "execa": "7.2.0", "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.2" + "listr2": "6.6.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.1" }, "bin": { "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": "^16.14.0 || >=18.0.0" }, "funding": { "url": "https://opencollective.com/lint-staged" } }, - "node_modules/lint-staged/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/lint-staged/node_modules/ansi-escapes": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "type-fest": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/lint-staged/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" @@ -18404,37 +17076,62 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/lint-staged/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/lint-staged/node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "restore-cursor": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/lint-staged/node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/lint-staged/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", "dev": true, "engines": { - "node": ">=14" + "node": ">=16" } }, + "node_modules/lint-staged/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/lint-staged/node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, "node_modules/lint-staged/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", "dev": true, "dependencies": { "cross-spawn": "^7.0.3", @@ -18476,12 +17173,15 @@ } }, "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lint-staged/node_modules/is-stream": { @@ -18496,23 +17196,30 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/lint-staged/node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/lint-staged/node_modules/listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", + "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", "dev": true, "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", + "cli-truncate": "^3.1.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^5.0.1", "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" + "wrap-ansi": "^8.1.0" }, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": ">=16.0.0" }, "peerDependencies": { "enquirer": ">= 2.3.0 < 3" @@ -18523,17 +17230,20 @@ } } }, - "node_modules/lint-staged/node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/lint-staged/node_modules/log-update": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", + "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", "dev": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "ansi-escapes": "^5.0.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^5.0.0", + "strip-ansi": "^7.0.1", + "wrap-ansi": "^8.0.1" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -18593,18 +17303,92 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/lint-staged/node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lint-staged/node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/lint-staged/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/lint-staged/node_modules/strip-final-newline": { @@ -18619,6 +17403,35 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/lint-staged/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/lint-staged/node_modules/yaml": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", @@ -18670,76 +17483,21 @@ } } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/listr2/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/listr2/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/listr2/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/listr2/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/load-json-file": { @@ -18806,6 +17564,96 @@ "node": ">= 12.13.0" } }, + "node_modules/localtunnel": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-2.0.2.tgz", + "integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==", + "dev": true, + "dependencies": { + "axios": "0.21.4", + "debug": "4.3.2", + "openurl": "1.1.1", + "yargs": "17.1.1" + }, + "bin": { + "lt": "bin/lt.js" + }, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/localtunnel/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/localtunnel/node_modules/debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/localtunnel/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/localtunnel/node_modules/yargs": { + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz", + "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/localtunnel/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -18874,19 +17722,47 @@ "dev": true, "peer": true }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", + "dev": true + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "dev": true + }, + "node_modules/lodash.isfinite": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz", + "integrity": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==", + "dev": true + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", + "dev": true + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "dev": true + }, "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true, - "peer": true + "dev": true }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", - "dev": true, - "peer": true + "dev": true }, "node_modules/lodash.memoize": { "version": "4.1.2", @@ -18972,48 +17848,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-update/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-update/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/log-update/node_modules/slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", @@ -19031,32 +17865,6 @@ "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, "node_modules/lowdb": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", @@ -19101,12 +17909,12 @@ } }, "node_modules/magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "dev": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" + "@jridgewell/sourcemap-codec": "^1.4.15" }, "engines": { "node": ">=12" @@ -19128,9 +17936,9 @@ } }, "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -19143,38 +17951,25 @@ "dev": true }, "node_modules/make-fetch-happen": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", - "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", + "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", "dev": true, "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", + "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^0.6.3", "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", "ssri": "^10.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/makeerror": { @@ -19424,6 +18219,18 @@ "node": ">=8.6" } }, + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", @@ -19476,9 +18283,9 @@ } }, "node_modules/mini-css-extract-plugin": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", - "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", "dev": true, "dependencies": { "schema-utils": "^4.0.0" @@ -19522,51 +18329,33 @@ } }, "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "minipass": "^7.0.3" }, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/minipass-collect/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/minipass-fetch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", - "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", + "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", "dev": true, "dependencies": { - "minipass": "^5.0.0", + "minipass": "^7.0.3", "minipass-sized": "^1.0.3", "minizlib": "^2.1.2" }, @@ -19726,6 +18515,12 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/mitt": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", + "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", + "dev": true + }, "node_modules/mixin-deep": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", @@ -19794,18 +18589,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/mrmime": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", @@ -19889,9 +18672,9 @@ "dev": true }, "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", "dev": true, "funding": [ { @@ -19912,12 +18695,6 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, "node_modules/ncp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", @@ -19928,13 +18705,12 @@ } }, "node_modules/needle": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", - "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", + "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", "dev": true, "optional": true, "dependencies": { - "debug": "^3.2.6", "iconv-lite": "^0.6.3", "sax": "^1.2.4" }, @@ -19945,16 +18721,6 @@ "node": ">= 4.4.x" } }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, - "dependencies": { - "ms": "^2.1.1" - } - }, "node_modules/needle/node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -20021,7 +18787,8 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", - "dev": true + "dev": true, + "optional": true }, "node_modules/node-emoji": { "version": "2.1.3", @@ -20091,71 +18858,109 @@ } }, "node_modules/node-gyp": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", - "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", + "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", "dev": true, "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", + "glob": "^10.3.10", "graceful-fs": "^4.2.6", - "make-fetch-happen": "^11.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", "semver": "^7.3.5", "tar": "^6.1.2", - "which": "^2.0.2" + "which": "^4.0.0" }, "bin": { "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": "^12.13 || ^14.13 || >=16" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.7.1.tgz", + "integrity": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==", "dev": true, + "optional": true, "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", "node-gyp-build-test": "build-test.js" } }, + "node_modules/node-gyp/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, "node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/node-gyp/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, "node_modules/node-gyp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/node-gyp/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/node-int64": { @@ -20164,40 +18969,46 @@ "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, + "node_modules/node-machine-id": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz", + "integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==", + "dev": true + }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "node_modules/nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", + "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", "dev": true, "dependencies": { - "abbrev": "^1.0.0" + "abbrev": "^2.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", "dev": true, "dependencies": { - "hosted-git-info": "^6.0.0", + "hosted-git-info": "^7.0.0", "is-core-module": "^2.8.1", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/normalize-path": { @@ -20403,9 +19214,9 @@ } }, "node_modules/npm-install-checks": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.1.1.tgz", - "integrity": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz", + "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==", "dev": true, "dependencies": { "semver": "^7.1.1" @@ -20424,63 +19235,63 @@ } }, "node_modules/npm-package-arg": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", - "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", + "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", "dev": true, "dependencies": { - "hosted-git-info": "^6.0.0", + "hosted-git-info": "^7.0.0", "proc-log": "^3.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm-packlist": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", - "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.1.tgz", + "integrity": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==", "dev": true, "dependencies": { - "ignore-walk": "^6.0.0" + "ignore-walk": "^6.0.4" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/npm-pick-manifest": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", - "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz", + "integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==", "dev": true, "dependencies": { "npm-install-checks": "^6.0.0", "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", + "npm-package-arg": "^11.0.0", "semver": "^7.3.5" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm-registry-fetch": { - "version": "14.0.5", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", - "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.1.0.tgz", + "integrity": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==", "dev": true, "dependencies": { - "make-fetch-happen": "^11.0.0", - "minipass": "^5.0.0", + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", "minipass-json-stream": "^1.0.1", "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", + "npm-package-arg": "^11.0.0", "proc-log": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm-run-all": { @@ -20508,6 +19319,18 @@ "node": ">= 4" } }, + "node_modules/npm-run-all/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/npm-run-all/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -20522,6 +19345,21 @@ "node": ">=4" } }, + "node_modules/npm-run-all/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/npm-run-all/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, "node_modules/npm-run-all/node_modules/cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -20578,9 +19416,9 @@ } }, "node_modules/npm-run-all/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -23686,21 +22524,6 @@ "license": "ISC", "peer": true }, - "node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", @@ -23714,70 +22537,72 @@ } }, "node_modules/nwsapi": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", - "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==", + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", "dev": true }, "node_modules/nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.1.1.tgz", - "integrity": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==", + "version": "17.2.6", + "resolved": "https://registry.npmjs.org/nx/-/nx-17.2.6.tgz", + "integrity": "sha512-lBHp0e0AMBwYwpT44a8b0j29szspmYUhY1okqNctz/3ifuonNFG9WGfbzRO4YKOrVkfNsuaomHVAE6gtqo55ng==", "dev": true, "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "16.1.1", - "@parcel/watcher": "2.0.4", + "@nrwl/tao": "17.2.6", "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", + "@yarnpkg/parsers": "3.0.0-rc.46", "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", + "axios": "^1.5.1", "chalk": "^4.1.0", "cli-cursor": "3.1.0", "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "dotenv": "~10.0.0", + "cliui": "^8.0.1", + "dotenv": "~16.3.1", + "dotenv-expand": "~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.0.4", + "jest-diff": "^29.4.1", "js-yaml": "4.1.0", "jsonc-parser": "3.2.0", "lines-and-columns": "~2.0.3", "minimatch": "3.0.5", + "node-machine-id": "1.1.12", "npm-run-path": "^4.0.1", "open": "^8.4.0", - "semver": "7.3.4", + "semver": "7.5.3", "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.3.0", - "v8-compile-cache": "2.3.0", "yargs": "^17.6.2", "yargs-parser": "21.1.1" }, "bin": { - "nx": "bin/nx.js" + "nx": "bin/nx.js", + "nx-cloud": "bin/nx-cloud.js" }, "optionalDependencies": { - "@nx/nx-darwin-arm64": "16.1.1", - "@nx/nx-darwin-x64": "16.1.1", - "@nx/nx-linux-arm-gnueabihf": "16.1.1", - "@nx/nx-linux-arm64-gnu": "16.1.1", - "@nx/nx-linux-arm64-musl": "16.1.1", - "@nx/nx-linux-x64-gnu": "16.1.1", - "@nx/nx-linux-x64-musl": "16.1.1", - "@nx/nx-win32-arm64-msvc": "16.1.1", - "@nx/nx-win32-x64-msvc": "16.1.1" + "@nx/nx-darwin-arm64": "17.2.6", + "@nx/nx-darwin-x64": "17.2.6", + "@nx/nx-freebsd-x64": "17.2.6", + "@nx/nx-linux-arm-gnueabihf": "17.2.6", + "@nx/nx-linux-arm64-gnu": "17.2.6", + "@nx/nx-linux-arm64-musl": "17.2.6", + "@nx/nx-linux-x64-gnu": "17.2.6", + "@nx/nx-linux-x64-musl": "17.2.6", + "@nx/nx-win32-arm64-msvc": "17.2.6", + "@nx/nx-win32-x64-msvc": "17.2.6" }, "peerDependencies": { - "@swc-node/register": "^1.4.2", - "@swc/core": "^1.2.173" + "@swc-node/register": "^1.6.7", + "@swc/core": "^1.3.85" }, "peerDependenciesMeta": { "@swc-node/register": { @@ -23869,6 +22694,31 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, + "node_modules/nx/node_modules/axios": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/nx/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/nx/node_modules/glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -23910,10 +22760,16 @@ "node": ">=10" } }, + "node_modules/nx/node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, "node_modules/nx/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -23931,15 +22787,6 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -23950,30 +22797,14 @@ } }, "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", @@ -23984,13 +22815,13 @@ } }, "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, @@ -24001,50 +22832,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", @@ -24057,23 +22844,6 @@ "node": ">=0.10.0" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -24087,9 +22857,9 @@ "dev": true }, "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dev": true, "dependencies": { "ee-first": "1.1.1" @@ -24157,6 +22927,33 @@ "opener": "bin/opener-bin.js" } }, + "node_modules/openurl": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz", + "integrity": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==", + "dev": true + }, + "node_modules/opn": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", + "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/opn/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/optionator": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", @@ -24453,27 +23250,27 @@ } }, "node_modules/pacote": { - "version": "15.1.3", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz", - "integrity": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==", + "version": "17.0.4", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.4.tgz", + "integrity": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==", "dev": true, "dependencies": { - "@npmcli/git": "^4.0.0", + "@npmcli/git": "^5.0.0", "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", "fs-minipass": "^3.0.0", - "minipass": "^5.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0", "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", + "read-package-json": "^7.0.0", "read-package-json-fast": "^3.0.0", - "sigstore": "^1.3.0", + "sigstore": "^2.0.0", "ssri": "^10.0.0", "tar": "^6.1.11" }, @@ -24481,7 +23278,7 @@ "pacote": "lib/bin.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/pako": { @@ -24561,33 +23358,6 @@ "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/parse5-html-rewriting-stream/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", - "dev": true, - "dependencies": { - "parse5": "^6.0.1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, "node_modules/parse5-sax-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", @@ -24600,18 +23370,6 @@ "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/parse5/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "devOptional": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -24655,13 +23413,13 @@ "dev": true }, "node_modules/path-scurry": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz", - "integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", "dev": true, "dependencies": { "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2" + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -24671,9 +23429,9 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", - "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -24726,12 +23484,12 @@ "dev": true }, "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", "dev": true, "engines": { - "node": ">=8.6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" @@ -24815,20 +23573,30 @@ } }, "node_modules/pino-abstract-transport/node_modules/readable-stream": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.1.tgz", - "integrity": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==", + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.1.tgz", + "integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==", "dev": true, "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", - "process": "^0.11.10" + "process": "^0.11.10", + "string_decoder": "^1.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/pino-abstract-transport/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, "node_modules/pino-std-serializers": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", @@ -24864,9 +23632,9 @@ } }, "node_modules/piscina": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", - "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.1.0.tgz", + "integrity": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==", "dev": true, "dependencies": { "eventemitter-asyncresource": "^1.0.0", @@ -24878,95 +23646,78 @@ } }, "node_modules/pkg-conf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", - "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", "dev": true, + "peer": true, "dependencies": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, "node_modules/pkg-conf/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-conf/node_modules/load-json-file": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", - "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, + "peer": true, "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" + "locate-path": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, "node_modules/pkg-conf/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, + "peer": true, "dependencies": { - "p-locate": "^3.0.0", + "p-locate": "^2.0.0", "path-exists": "^3.0.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, "node_modules/pkg-conf/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, + "peer": true, "dependencies": { - "p-try": "^2.0.0" + "p-try": "^1.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, "node_modules/pkg-conf/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, + "peer": true, "dependencies": { - "p-limit": "^2.0.0" + "p-limit": "^1.1.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pkg-conf/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/pkg-conf/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, + "peer": true, "engines": { "node": ">=4" } @@ -24976,37 +23727,11 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, + "peer": true, "engines": { "node": ">=4" } }, - "node_modules/pkg-conf/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-conf/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/type-fest": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", - "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", @@ -25078,10 +23803,33 @@ "ms": "^2.1.1" } }, + "node_modules/portscanner": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", + "integrity": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==", + "dev": true, + "dependencies": { + "async": "^2.6.0", + "is-number-like": "^1.0.3" + }, + "engines": { + "node": ">=0.4", + "npm": ">=1.0.0" + } + }, + "node_modules/portscanner/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, "node_modules/postcss": { - "version": "8.4.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", - "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "dev": true, "funding": [ { @@ -25123,9 +23871,9 @@ } }, "node_modules/postcss-colormin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", - "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.1.tgz", + "integrity": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==", "dev": true, "dependencies": { "browserslist": "^4.21.4", @@ -25137,13 +23885,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-convert-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", - "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.1.tgz", + "integrity": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==", "dev": true, "dependencies": { "browserslist": "^4.21.4", @@ -25153,55 +23901,55 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-discard-comments": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", - "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", "dev": true, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-discard-duplicates": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", - "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", "dev": true, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-discard-empty": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", - "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", "dev": true, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-discard-overridden": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", - "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", "dev": true, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-import": { @@ -25222,14 +23970,13 @@ } }, "node_modules/postcss-loader": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.2.4.tgz", - "integrity": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==", + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.3.tgz", + "integrity": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==", "dev": true, "dependencies": { - "cosmiconfig": "^8.1.3", - "cosmiconfig-typescript-loader": "^4.3.0", - "klona": "^2.0.6", + "cosmiconfig": "^8.2.0", + "jiti": "^1.18.2", "semver": "^7.3.8" }, "engines": { @@ -25241,17 +23988,7 @@ }, "peerDependencies": { "postcss": "^7.0.0 || ^8.0.1", - "ts-node": ">=10", - "typescript": ">=4", "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - }, - "typescript": { - "optional": true - } } }, "node_modules/postcss-loader/node_modules/argparse": { @@ -25261,14 +23998,14 @@ "dev": true }, "node_modules/postcss-loader/node_modules/cosmiconfig": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", - "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, "dependencies": { - "import-fresh": "^3.2.1", + "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", + "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "engines": { @@ -25276,22 +24013,14 @@ }, "funding": { "url": "https://github.com/sponsors/d-fischer" - } - }, - "node_modules/postcss-loader/node_modules/cosmiconfig-typescript-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", - "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", - "dev": true, - "engines": { - "node": ">=12", - "npm": ">=6" }, "peerDependencies": { - "@types/node": "*", - "cosmiconfig": ">=7", - "ts-node": ">=10", - "typescript": ">=3" + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, "node_modules/postcss-loader/node_modules/js-yaml": { @@ -25307,43 +24036,43 @@ } }, "node_modules/postcss-merge-longhand": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", - "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.1.tgz", + "integrity": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.0" + "stylehacks": "^6.0.1" }, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-merge-rules": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", - "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.2.tgz", + "integrity": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==", "dev": true, "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.0", + "cssnano-utils": "^4.0.1", "postcss-selector-parser": "^6.0.5" }, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-minify-font-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", - "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25352,47 +24081,47 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-minify-gradients": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", - "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", "dev": true, "dependencies": { "colord": "^2.9.1", - "cssnano-utils": "^4.0.0", + "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-minify-params": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", - "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.1.tgz", + "integrity": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==", "dev": true, "dependencies": { "browserslist": "^4.21.4", - "cssnano-utils": "^4.0.0", + "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-minify-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", - "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.1.tgz", + "integrity": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -25401,7 +24130,7 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-modules-extract-imports": { @@ -25464,21 +24193,21 @@ } }, "node_modules/postcss-normalize-charset": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", - "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", "dev": true, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-display-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", - "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25487,13 +24216,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-positions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", - "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25502,13 +24231,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-repeat-style": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", - "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25517,13 +24246,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-string": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", - "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25532,13 +24261,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-timing-functions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", - "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25547,13 +24276,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-unicode": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", - "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.1.tgz", + "integrity": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==", "dev": true, "dependencies": { "browserslist": "^4.21.4", @@ -25563,13 +24292,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", - "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25578,13 +24307,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-normalize-whitespace": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", - "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25593,29 +24322,29 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-ordered-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", - "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", "dev": true, "dependencies": { - "cssnano-utils": "^4.0.0", + "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-reduce-initial": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", - "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.1.tgz", + "integrity": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==", "dev": true, "dependencies": { "browserslist": "^4.21.4", @@ -25625,13 +24354,13 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-reduce-transforms": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", - "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -25640,7 +24369,7 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-selector-parser": { @@ -25657,25 +24386,25 @@ } }, "node_modules/postcss-svgo": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", - "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.1.tgz", + "integrity": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0", - "svgo": "^3.0.2" + "svgo": "^3.0.5" }, "engines": { "node": "^14 || ^16 || >= 18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-unique-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", - "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.1.tgz", + "integrity": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -25684,7 +24413,7 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-value-parser": { @@ -25730,12 +24459,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -25817,27 +24546,10 @@ "node": ">= 6" } }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dev": true, - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true - }, "node_modules/property-expr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", - "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", + "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==", "dev": true }, "node_modules/proto-list": { @@ -25896,18 +24608,18 @@ } }, "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -26093,18 +24805,18 @@ } }, "node_modules/read-package-json": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", - "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz", + "integrity": "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==", "dev": true, "dependencies": { "glob": "^10.2.2", "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", + "normalize-package-data": "^6.0.0", "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/read-package-json-fast": { @@ -26121,9 +24833,9 @@ } }, "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", + "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -26139,19 +24851,19 @@ } }, "node_modules/read-package-json/node_modules/glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", + "jackspeak": "^2.3.5", "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" }, "bin": { - "glob": "dist/cjs/src/bin.js" + "glob": "dist/esm/bin.mjs" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -26161,18 +24873,18 @@ } }, "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", + "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/read-package-json/node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -26216,42 +24928,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg-up/node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", - "dev": true, - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/read-pkg-up/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/read-pkg-up/node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", - "dev": true, - "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, "node_modules/read-pkg-up/node_modules/parse-json": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", @@ -26340,9 +25016,9 @@ } }, "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -26363,12 +25039,6 @@ "util-deprecate": "~1.0.1" } }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -26417,6 +25087,18 @@ "node": ">=8.10.0" } }, + "node_modules/readdirp/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/real-require": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz", @@ -26437,9 +25119,9 @@ } }, "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "version": "0.1.14", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.14.tgz", + "integrity": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==", "dev": true }, "node_modules/regenerate": { @@ -26449,9 +25131,9 @@ "dev": true }, "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", "dev": true, "dependencies": { "regenerate": "^1.4.2" @@ -26461,15 +25143,15 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true }, "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, "dependencies": { "@babel/runtime": "^7.8.4" @@ -26482,14 +25164,14 @@ "dev": true }, "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" + "set-function-name": "^2.0.0" }, "engines": { "node": ">= 0.4" @@ -26498,18 +25180,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, "node_modules/regexpu-core": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", @@ -26637,38 +25307,6 @@ "node": ">= 4.0.0" } }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dev": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/request-progress": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", @@ -26678,55 +25316,6 @@ "throttleit": "^1.0.0" } }, - "node_modules/request/node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/request/node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dev": true, - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "dev": true, - "bin": { - "uuid": "bin/uuid" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -26752,12 +25341,12 @@ "dev": true }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -26843,6 +25432,34 @@ "node": ">=10" } }, + "node_modules/resp-modifier": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz", + "integrity": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==", + "dev": true, + "dependencies": { + "debug": "^2.2.0", + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/resp-modifier/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/resp-modifier/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, "node_modules/responselike": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", @@ -26908,42 +25525,10 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/rollup": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.0.tgz", - "integrity": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==", + "version": "3.29.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", "dev": true, "bin": { "rollup": "dist/bin/rollup" @@ -26988,6 +25573,12 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/rx": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", + "integrity": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==", + "dev": true + }, "node_modules/rxjs": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", @@ -26996,6 +25587,30 @@ "tslib": "^2.1.0" } }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -27046,9 +25661,9 @@ "dev": true }, "node_modules/sass": { - "version": "1.62.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", - "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", + "version": "1.69.5", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", + "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -27063,12 +25678,11 @@ } }, "node_modules/sass-loader": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz", - "integrity": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==", + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.2.tgz", + "integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==", "dev": true, "dependencies": { - "klona": "^2.0.6", "neo-async": "^2.6.2" }, "engines": { @@ -27080,7 +25694,7 @@ }, "peerDependencies": { "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" @@ -27100,12 +25714,19 @@ } } }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "node_modules/sass/node_modules/immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", "dev": true }, + "node_modules/sax": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", + "dev": true, + "optional": true + }, "node_modules/saxes": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", @@ -27150,11 +25771,12 @@ "dev": true }, "node_modules/selfsigned": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", - "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "dev": true, "dependencies": { + "@types/node-forge": "^1.3.0", "node-forge": "^1" }, "engines": { @@ -27361,19 +25983,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", - "dev": true, - "peer": true, - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, "node_modules/semantic-release/node_modules/human-signals": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", @@ -27436,16 +26045,6 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/semantic-release/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true, - "peer": true, - "engines": { - "node": "14 || >=16.14" - } - }, "node_modules/semantic-release/node_modules/mimic-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", @@ -27544,9 +26143,9 @@ } }, "node_modules/semver": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", - "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -27626,24 +26225,24 @@ "dev": true }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", + "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", "dev": true, "dependencies": { "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", + "depd": "~1.1.2", + "destroy": "~1.0.4", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" }, "engines": { "node": ">= 0.8.0" @@ -27658,18 +26257,72 @@ "ms": "2.0.0" } }, - "node_modules/send/node_modules/debug/node_modules/ms": { + "node_modules/send/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send/node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", + "dev": true + }, + "node_modules/send/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true, + "bin": { + "mime": "cli.js" + } + }, + "node_modules/send/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "node_modules/send/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "dev": true }, + "node_modules/send/node_modules/statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/serialize-javascript": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", @@ -27758,15 +26411,15 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", + "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", "dev": true, "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "parseurl": "~1.3.2", + "send": "0.16.2" }, "engines": { "node": ">= 0.8.0" @@ -27778,11 +26431,34 @@ "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", "dev": true }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } }, "node_modules/set-getter": { "version": "0.1.1", @@ -27888,6 +26564,19 @@ "node": ">=6" } }, + "node_modules/signale/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "peer": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/signale/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -27903,6 +26592,23 @@ "node": ">=4" } }, + "node_modules/signale/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "peer": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/signale/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "peer": true + }, "node_modules/signale/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", @@ -27926,19 +26632,6 @@ "node": ">=4" } }, - "node_modules/signale/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dev": true, - "peer": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/signale/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -27949,80 +26642,6 @@ "node": ">=4" } }, - "node_modules/signale/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "dev": true, - "peer": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/signale/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/signale/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dev": true, - "peer": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/signale/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/signale/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/signale/node_modules/pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", - "dev": true, - "peer": true, - "dependencies": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/signale/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -28037,20 +26656,18 @@ } }, "node_modules/sigstore": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", - "integrity": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.1.0.tgz", + "integrity": "sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.1.0", - "@sigstore/tuf": "^1.0.1", - "make-fetch-happen": "^11.0.1" - }, - "bin": { - "sigstore": "bin/sigstore.js" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/sisteransi": { @@ -28082,31 +26699,17 @@ } }, "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "engines": { - "node": ">=12" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=8" } }, "node_modules/smart-buffer": { @@ -28119,6 +26722,82 @@ "npm": ">= 3.0.0" } }, + "node_modules/socket.io": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.2.tgz", + "integrity": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "cors": "~2.8.5", + "debug": "~4.3.2", + "engine.io": "~6.5.2", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.2.0" + } + }, + "node_modules/socket.io-adapter": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dev": true, + "dependencies": { + "ws": "~8.11.0" + } + }, + "node_modules/socket.io-adapter/node_modules/ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/socket.io-client": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.2.tgz", + "integrity": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==", + "dev": true, + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.5.2", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", + "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", + "dev": true, + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", @@ -28145,17 +26824,17 @@ } }, "node_modules/socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", "dev": true, "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" }, "engines": { - "node": ">= 10" + "node": ">= 14" } }, "node_modules/sonic-boom": { @@ -28191,6 +26870,15 @@ "node": ">=0.10.0" } }, + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/source-map": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", @@ -28227,36 +26915,15 @@ "node": ">=12" } }, - "node_modules/source-map-explorer/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/source-map-explorer/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/source-map-explorer/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, "node_modules/source-map-explorer/node_modules/open": { @@ -28275,6 +26942,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/source-map-explorer/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/source-map-explorer/node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", @@ -28363,13 +27047,6 @@ "node": ">=0.10.0" } }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "deprecated": "Please use @jridgewell/sourcemap-codec instead", - "dev": true - }, "node_modules/spawn-error-forwarder": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", @@ -28404,9 +27081,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", "dev": true }, "node_modules/spdy": { @@ -28469,9 +27146,9 @@ "dev": true }, "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", "dev": true, "dependencies": { "asn1": "~0.2.3", @@ -28494,12 +27171,12 @@ } }, "node_modules/ssri": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.4.tgz", - "integrity": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==", + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", "dev": true, "dependencies": { - "minipass": "^5.0.0" + "minipass": "^7.0.3" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -28526,309 +27203,13 @@ "node": ">=8" } }, - "node_modules/standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", - "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "eslint": "^8.41.0", - "eslint-config-standard": "17.1.0", - "eslint-config-standard-jsx": "^11.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-n": "^15.7.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react": "^7.32.2", - "standard-engine": "^15.0.0", - "version-guard": "^1.1.1" - }, - "bin": { - "standard": "bin/cmd.cjs" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/standard-engine": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", - "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "get-stdin": "^8.0.0", - "minimist": "^1.2.6", - "pkg-conf": "^3.1.0", - "xdg-basedir": "^4.0.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/standard/node_modules/@eslint/eslintrc": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", - "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/standard/node_modules/@humanwhocodes/config-array": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", - "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/standard/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/standard/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/standard/node_modules/eslint": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", - "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.1.0", - "@eslint/js": "8.44.0", - "@humanwhocodes/config-array": "^0.11.10", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.1", - "espree": "^9.6.0", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/standard/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/standard/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/standard/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/standard/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/standard/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/standard/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/standard/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/standard/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/standard/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", + "integrity": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">= 0.6" } }, "node_modules/steno": { @@ -28840,18 +27221,6 @@ "graceful-fs": "^4.1.3" } }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "dependencies": { - "internal-slot": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, "node_modules/stream-combiner2": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", @@ -28869,6 +27238,28 @@ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "dev": true }, + "node_modules/stream-throttle": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz", + "integrity": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==", + "dev": true, + "dependencies": { + "commander": "^2.2.0", + "limiter": "^1.0.5" + }, + "bin": { + "throttleproxy": "bin/throttleproxy.js" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/stream-throttle/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -28935,52 +27326,15 @@ "node": ">=8" } }, - "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/string.prototype.padend": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", - "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz", + "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { "node": ">= 0.4" @@ -28990,14 +27344,14 @@ } }, "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { "node": ">= 0.4" @@ -29007,28 +27361,28 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -29170,9 +27524,9 @@ } }, "node_modules/stylehacks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", - "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.1.tgz", + "integrity": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==", "dev": true, "dependencies": { "browserslist": "^4.21.4", @@ -29182,7 +27536,7 @@ "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/stylus": { @@ -29228,67 +27582,21 @@ "webpack": "^5.0.0" } }, - "node_modules/stylus-loader/node_modules/fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/stylus/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/stylus/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } + "node_modules/stylus/node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true }, "node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=8" } }, "node_modules/supports-hyperlinks": { @@ -29305,19 +27613,6 @@ "node": ">=14.18" } }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", @@ -29331,16 +27626,17 @@ } }, "node_modules/svgo": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", - "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.1.0.tgz", + "integrity": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==", "dev": true, "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", "css-tree": "^2.2.1", - "csso": "^5.0.5", + "css-what": "^6.1.0", + "csso": "5.0.5", "picocolors": "^1.0.0" }, "bin": { @@ -29354,77 +27650,6 @@ "url": "https://opencollective.com/svgo" } }, - "node_modules/svgo/node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/svgo/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/svgo/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dev": true, - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/svgo/node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dev": true, - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/svgo/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, "node_modules/symbol-observable": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", @@ -29450,9 +27675,9 @@ } }, "node_modules/tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", "dev": true, "dependencies": { "chownr": "^2.0.0", @@ -29520,12 +27745,21 @@ "node": ">=8" } }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { "mkdirp": "bin/cmd.js" }, "engines": { @@ -29561,38 +27795,6 @@ "node": ">=14.16" } }, - "node_modules/temp/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/temp/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/temp/node_modules/rimraf": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", @@ -29651,13 +27853,13 @@ } }, "node_modules/terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", + "version": "5.24.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", + "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", "dev": true, "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -29765,6 +27967,21 @@ "url": "https://opencollective.com/webpack" } }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -29785,38 +28002,6 @@ "node": ">=8" } }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/test-exclude/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/text-extensions": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", @@ -29845,10 +28030,13 @@ } }, "node_modules/throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", - "dev": true + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz", + "integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/through": { "version": "2.3.8", @@ -29971,16 +28159,27 @@ "dev": true }, "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "engines": { - "node": ">=0.8" + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" } }, "node_modules/tr46": { @@ -30038,6 +28237,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, "node_modules/ts-jest": { "version": "29.1.1", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", @@ -30081,49 +28292,17 @@ } } }, - "node_modules/ts-jest/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ts-jest/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/ts-loader": { - "version": "9.4.4", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", - "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.1.tgz", + "integrity": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==", "dev": true, "dependencies": { "chalk": "^4.1.0", "enhanced-resolve": "^5.0.0", "micromatch": "^4.0.0", - "semver": "^7.3.4" + "semver": "^7.3.4", + "source-map": "^0.7.4" }, "engines": { "node": ">=12.0.0" @@ -30214,9 +28393,9 @@ } }, "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/tsscmp": { "version": "1.0.6", @@ -30227,39 +28406,18 @@ "node": ">=0.6.x" } }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, "node_modules/tuf-js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", - "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.1.0.tgz", + "integrity": "sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==", "dev": true, "dependencies": { - "@tufjs/models": "1.0.4", + "@tufjs/models": "2.0.0", "debug": "^4.3.4", - "make-fetch-happen": "^11.1.1" + "make-fetch-happen": "^13.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/tunnel-agent": { @@ -30281,9 +28439,9 @@ "dev": true }, "node_modules/typanion": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.13.0.tgz", - "integrity": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==", + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.14.0.tgz", + "integrity": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==", "dev": true }, "node_modules/type-check": { @@ -30332,6 +28490,57 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typed-array-length": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", @@ -30359,16 +28568,39 @@ "dev": true }, "node_modules/typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=12.20" + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "engines": { + "node": "*" } }, "node_modules/uglify-js": { @@ -30399,6 +28631,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/undici": { + "version": "5.27.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.27.2.tgz", + "integrity": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==", + "dev": true, + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, + "engines": { + "node": ">=14.0" + } + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -30521,9 +28765,9 @@ "peer": true }, "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "engines": { "node": ">= 10.0.0" @@ -30554,9 +28798,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "funding": [ { @@ -30632,12 +28876,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -30645,19 +28883,25 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -30681,9 +28925,9 @@ } }, "node_modules/validator": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", - "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", + "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", "dev": true, "engines": { "node": ">= 0.10" @@ -30699,38 +28943,38 @@ } }, "node_modules/verdaccio": { - "version": "5.25.0", - "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.25.0.tgz", - "integrity": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==", + "version": "5.29.0", + "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.29.0.tgz", + "integrity": "sha512-Le3MhojXDCoXIDFNp5VaAalu8FtoZAJo6YTWxEAKCOO4MFN19XzwZsu4FkLrPHc5fPhyhqerTHBsG2qtoutxQA==", "dev": true, "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", + "@cypress/request": "3.0.1", + "@verdaccio/config": "7.0.0-next.4", + "@verdaccio/core": "7.0.0-next.4", "@verdaccio/local-storage": "10.3.3", - "@verdaccio/logger-7": "6.0.0-6-next.16", - "@verdaccio/middleware": "6.0.0-6-next.50", - "@verdaccio/search": "6.0.0-6-next.2", - "@verdaccio/signature": "6.0.0-6-next.2", + "@verdaccio/logger-7": "7.0.0-next.4", + "@verdaccio/middleware": "7.0.0-next.4", + "@verdaccio/search": "7.0.0-next.2", + "@verdaccio/signature": "7.0.0-next.2", "@verdaccio/streams": "10.2.1", - "@verdaccio/tarball": "11.0.0-6-next.40", - "@verdaccio/ui-theme": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "async": "3.2.4", - "body-parser": "1.20.2", - "clipanion": "3.2.0", + "@verdaccio/tarball": "12.0.0-next.4", + "@verdaccio/ui-theme": "7.0.0-next.4", + "@verdaccio/url": "12.0.0-next.4", + "@verdaccio/utils": "7.0.0-next.4", + "async": "3.2.5", + "clipanion": "3.2.1", "compression": "1.7.4", "cookies": "0.8.0", "cors": "2.8.5", "debug": "^4.3.4", - "envinfo": "7.8.1", + "envinfo": "7.11.0", "express": "4.18.2", "express-rate-limit": "5.5.1", "fast-safe-stringify": "2.1.1", - "handlebars": "4.7.7", + "handlebars": "4.7.8", "js-yaml": "4.1.0", "JSONStream": "1.3.5", - "jsonwebtoken": "9.0.0", + "jsonwebtoken": "9.0.2", "kleur": "4.1.5", "lodash": "4.17.21", "lru-cache": "7.18.3", @@ -30738,11 +28982,10 @@ "mkdirp": "1.0.4", "mv": "2.1.1", "pkginfo": "0.4.1", - "request": "2.88.2", - "semver": "7.5.1", - "validator": "13.9.0", - "verdaccio-audit": "11.0.0-6-next.34", - "verdaccio-htpasswd": "11.0.0-6-next.41" + "semver": "7.5.4", + "validator": "13.11.0", + "verdaccio-audit": "12.0.0-next.4", + "verdaccio-htpasswd": "12.0.0-next.4" }, "bin": { "verdaccio": "bin/verdaccio" @@ -30756,13 +28999,13 @@ } }, "node_modules/verdaccio-audit": { - "version": "11.0.0-6-next.34", - "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-11.0.0-6-next.34.tgz", - "integrity": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==", + "version": "12.0.0-next.4", + "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-12.0.0-next.4.tgz", + "integrity": "sha512-X8Qe8Qv/BZPng7dQCCdot8g53eU65zM6GfLw0P1A68Hf5dzv/GJgekiPnIAXgSw5KJMKE8loNzd6+FfFLnQUSA==", "dev": true, "dependencies": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", + "@verdaccio/config": "7.0.0-next.4", + "@verdaccio/core": "7.0.0-next.4", "express": "4.18.2", "https-proxy-agent": "5.0.1", "node-fetch": "cjs" @@ -30775,14 +29018,39 @@ "url": "https://opencollective.com/verdaccio" } }, + "node_modules/verdaccio-audit/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/verdaccio-audit/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/verdaccio-htpasswd": { - "version": "11.0.0-6-next.41", - "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-11.0.0-6-next.41.tgz", - "integrity": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==", + "version": "12.0.0-next.4", + "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-12.0.0-next.4.tgz", + "integrity": "sha512-q4SxBIWMkVPUoKk2/JSPJjlTdC8treuLtVV/omRYjEgSbwJBhJlSeqwEiHlv0/idv/cfwXoDR3/WY9CWq8gieg==", "dev": true, "dependencies": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/file-locking": "11.0.0-6-next.7", + "@verdaccio/core": "7.0.0-next.4", + "@verdaccio/file-locking": "12.0.0-next.1", "apache-md5": "1.1.8", "bcryptjs": "2.4.3", "core-js": "3.30.2", @@ -30791,8 +29059,7 @@ "unix-crypt-td-js": "1.1.4" }, "engines": { - "node": ">=14", - "npm": ">=6" + "node": ">=12" }, "funding": { "type": "opencollective", @@ -30800,9 +29067,9 @@ } }, "node_modules/verdaccio-htpasswd/node_modules/@verdaccio/file-locking": { - "version": "11.0.0-6-next.7", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-11.0.0-6-next.7.tgz", - "integrity": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==", + "version": "12.0.0-next.1", + "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-12.0.0-next.1.tgz", + "integrity": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==", "dev": true, "dependencies": { "lockfile": "1.0.4" @@ -30815,6 +29082,35 @@ "url": "https://opencollective.com/verdaccio" } }, + "node_modules/verdaccio/node_modules/@cypress/request": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", + "integrity": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==", + "dev": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "http-signature": "~1.3.6", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "performance-now": "^2.1.0", + "qs": "6.10.4", + "safe-buffer": "^5.1.2", + "tough-cookie": "^4.1.3", + "tunnel-agent": "^0.6.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/verdaccio/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -30875,39 +29171,6 @@ "node": ">=10" } }, - "node_modules/verdaccio/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/verdaccio/node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/verdaccio/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", @@ -30928,24 +29191,15 @@ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, - "node_modules/version-guard": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", - "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", - "dev": true, - "engines": { - "node": ">=0.10.48" - } - }, "node_modules/vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.1.tgz", + "integrity": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==", "dev": true, "dependencies": { - "esbuild": "^0.17.5", - "postcss": "^8.4.23", - "rollup": "^3.21.0" + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" }, "bin": { "vite": "bin/vite.js" @@ -30953,12 +29207,16 @@ "engines": { "node": "^14.18.0 || >=16.0.0" }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@types/node": ">= 14", "less": "*", + "lightningcss": "^1.21.0", "sass": "*", "stylus": "*", "sugarss": "*", @@ -30971,6 +29229,9 @@ "less": { "optional": true }, + "lightningcss": { + "optional": true + }, "sass": { "optional": true }, @@ -30985,23330 +29246,472 @@ } } }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", - "dev": true, - "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dev": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "dev": true, - "dependencies": { - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { "node": ">=12" } }, - "node_modules/webpack": { - "version": "5.80.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", - "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", - "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-middleware": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz", - "integrity": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==", - "dev": true, - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.12", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server": { - "version": "4.13.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz", - "integrity": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==", - "dev": true, - "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "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-dev-middleware": "^5.3.1", - "ws": "^8.13.0" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 10" + "node": ">=12" } }, - "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "node": ">=12" } }, - "node_modules/webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10.0.0" + "node": ">=12" } }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", - "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=10.13.0" + "node": ">=12" } }, - "node_modules/webpack-subresource-integrity": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", - "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "typed-assert": "^1.0.8" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", - "webpack": "^5.12.0" - }, - "peerDependenciesMeta": { - "html-webpack-plugin": { - "optional": true - } - } - }, - "node_modules/webpack/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" + "node": ">=12" } }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8.0.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=12" } }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], "dev": true, - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.8.0" + "node": ">=12" } }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.8.0" + "node": ">=12" } }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "iconv-lite": "0.6.3" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=12" } }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=12" } }, - "node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=12" } }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wildcard": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", - "dev": true - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/yup": { - "version": "0.32.11", - "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", - "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/lodash": "^4.14.175", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "nanoclone": "^0.2.1", - "property-expr": "^2.0.4", - "toposort": "^2.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/zone.js": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.13.1.tgz", - "integrity": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==", - "dependencies": { - "tslib": "^2.3.0" - } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true - }, - "@adobe/css-tools": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", - "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", - "dev": true - }, - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@angular-devkit/architect": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1600.6.tgz", - "integrity": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==", - "dev": true, - "requires": { - "@angular-devkit/core": "16.0.6", - "rxjs": "7.8.1" - } - }, - "@angular-devkit/build-angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-16.0.6.tgz", - "integrity": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==", - "dev": true, - "requires": { - "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/build-webpack": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@babel/core": "7.21.4", - "@babel/generator": "7.21.4", - "@babel/helper-annotate-as-pure": "7.18.6", - "@babel/helper-split-export-declaration": "7.18.6", - "@babel/plugin-proposal-async-generator-functions": "7.20.7", - "@babel/plugin-transform-async-to-generator": "7.20.7", - "@babel/plugin-transform-runtime": "7.21.4", - "@babel/preset-env": "7.21.4", - "@babel/runtime": "7.21.0", - "@babel/template": "7.20.7", - "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "16.0.6", - "@vitejs/plugin-basic-ssl": "1.0.1", - "ansi-colors": "4.1.3", - "autoprefixer": "10.4.14", - "babel-loader": "9.1.2", - "babel-plugin-istanbul": "6.1.1", - "browserslist": "4.21.5", - "cacache": "17.0.6", - "chokidar": "3.5.3", - "copy-webpack-plugin": "11.0.0", - "critters": "0.0.16", - "css-loader": "6.7.3", - "esbuild": "0.17.18", - "esbuild-wasm": "0.17.18", - "glob": "8.1.0", - "https-proxy-agent": "5.0.1", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "karma-source-map-support": "1.4.0", - "less": "4.1.3", - "less-loader": "11.1.0", - "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.1", - "magic-string": "0.30.0", - "mini-css-extract-plugin": "2.7.5", - "mrmime": "1.0.1", - "open": "8.4.2", - "ora": "5.4.1", - "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "2.3.1", - "piscina": "3.2.0", - "postcss": "8.4.23", - "postcss-loader": "7.2.4", - "resolve-url-loader": "5.0.0", - "rxjs": "7.8.1", - "sass": "1.62.1", - "sass-loader": "13.2.2", - "semver": "7.4.0", - "source-map-loader": "4.0.1", - "source-map-support": "0.5.21", - "terser": "5.17.1", - "text-table": "0.2.0", - "tree-kill": "1.2.2", - "tslib": "2.5.0", - "vite": "4.3.9", - "webpack": "5.80.0", - "webpack-dev-middleware": "6.0.2", - "webpack-dev-server": "4.13.2", - "webpack-merge": "5.8.0", - "webpack-subresource-integrity": "5.1.0" - }, - "dependencies": { - "inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "dev": true - } - } - }, - "@angular-devkit/build-webpack": { - "version": "0.1600.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1600.6.tgz", - "integrity": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==", - "dev": true, - "requires": { - "@angular-devkit/architect": "0.1600.6", - "rxjs": "7.8.1" - } - }, - "@angular-devkit/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-16.0.6.tgz", - "integrity": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==", - "dev": true, - "requires": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "7.8.1", - "source-map": "0.7.4" - } - }, - "@angular-devkit/schematics": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.0.6.tgz", - "integrity": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==", - "dev": true, - "requires": { - "@angular-devkit/core": "16.0.6", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.0", - "ora": "5.4.1", - "rxjs": "7.8.1" - } - }, - "@angular-eslint/bundled-angular-compiler": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.0.3.tgz", - "integrity": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==", - "dev": true - }, - "@angular-eslint/eslint-plugin": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-16.0.3.tgz", - "integrity": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==", - "dev": true, - "requires": { - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/utils": "5.59.7" - } - }, - "@angular-eslint/eslint-plugin-template": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-16.0.3.tgz", - "integrity": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==", - "dev": true, - "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@angular-eslint/utils": "16.0.3", - "@typescript-eslint/type-utils": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "aria-query": "5.1.3", - "axobject-query": "3.1.1" - } - }, - "@angular-eslint/template-parser": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-16.0.3.tgz", - "integrity": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==", - "dev": true, - "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "eslint-scope": "^7.0.0" - } - }, - "@angular-eslint/utils": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-16.0.3.tgz", - "integrity": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==", - "dev": true, - "requires": { - "@angular-eslint/bundled-angular-compiler": "16.0.3", - "@typescript-eslint/utils": "5.59.7" - } - }, - "@angular/animations": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.6.tgz", - "integrity": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/cdk": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.1.3.tgz", - "integrity": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==", - "requires": { - "parse5": "^7.1.2", - "tslib": "^2.3.0" - } - }, - "@angular/cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.0.6.tgz", - "integrity": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==", - "dev": true, - "requires": { - "@angular-devkit/architect": "0.1600.6", - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "@schematics/angular": "16.0.6", - "@yarnpkg/lockfile": "1.1.0", - "ansi-colors": "4.1.3", - "ini": "4.0.0", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "npm-package-arg": "10.1.0", - "npm-pick-manifest": "8.0.1", - "open": "8.4.2", - "ora": "5.4.1", - "pacote": "15.1.3", - "resolve": "1.22.2", - "semver": "7.4.0", - "symbol-observable": "4.0.0", - "yargs": "17.7.2" - }, - "dependencies": { - "inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - } - } - }, - "@angular/common": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.6.tgz", - "integrity": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/compiler": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-16.0.6.tgz", - "integrity": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/compiler-cli": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-16.0.6.tgz", - "integrity": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==", - "dev": true, - "requires": { - "@babel/core": "7.21.8", - "@jridgewell/sourcemap-codec": "^1.4.14", - "chokidar": "^3.0.0", - "convert-source-map": "^1.5.1", - "reflect-metadata": "^0.1.2", - "semver": "^7.0.0", - "tslib": "^2.3.0", - "yargs": "^17.2.1" - }, - "dependencies": { - "@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - } - } - }, - "@angular/core": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.6.tgz", - "integrity": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/forms": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.6.tgz", - "integrity": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/language-service": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-16.0.6.tgz", - "integrity": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==", - "dev": true - }, - "@angular/platform-browser": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.6.tgz", - "integrity": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/platform-browser-dynamic": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.6.tgz", - "integrity": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@angular/router": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-16.0.6.tgz", - "integrity": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==", - "requires": { - "tslib": "^2.3.0" - } - }, - "@assemblyscript/loader": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", - "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", - "dev": true - }, - "@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", - "dev": true, - "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", - "dev": true - }, - "@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", - "dev": true, - "requires": { - "@babel/types": "^7.21.4", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", - "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "semver": "^6.3.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", - "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", - "dev": true - }, - "@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", - "dev": true - }, - "@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", - "dev": true - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" - } - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", - "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz", - "integrity": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/plugin-syntax-decorators": "^7.22.5" - }, - "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "dev": true, - "requires": { - "@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/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", - "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz", - "integrity": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", - "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - }, - "dependencies": { - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", - "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" - } - }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", - "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz", - "integrity": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-plugin-utils": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", - "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/preset-env": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", - "integrity": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", - "@babel/plugin-proposal-async-generator-functions": "^7.20.7", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.21.0", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.21.0", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.21.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.20.7", - "@babel/plugin-transform-async-to-generator": "^7.20.7", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.21.0", - "@babel/plugin-transform-classes": "^7.21.0", - "@babel/plugin-transform-computed-properties": "^7.20.7", - "@babel/plugin-transform-destructuring": "^7.21.3", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.21.0", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.20.11", - "@babel/plugin-transform-modules-commonjs": "^7.21.2", - "@babel/plugin-transform-modules-systemjs": "^7.20.11", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.21.3", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.20.5", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.20.7", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.21.4", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", - "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-typescript": "^7.22.5" - } - }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, - "@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - } - }, - "@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "dependencies": { - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - } - } - }, - "@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "optional": true - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@cypress/request": { - "version": "2.88.11", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", - "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "http-signature": "~1.3.6", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "performance-now": "^2.1.0", - "qs": "~6.10.3", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^8.3.2" - } - }, - "@cypress/xvfb": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", - "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", - "dev": true, - "requires": { - "debug": "^3.1.0", - "lodash.once": "^4.1.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true - }, - "@esbuild/android-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", - "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", - "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", - "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", - "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", - "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", - "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", - "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", - "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", - "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", - "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", - "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", - "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", - "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", - "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", - "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", - "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", - "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", - "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", - "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", - "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", - "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", - "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", - "dev": true, - "optional": true - }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "@eslint/js": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", - "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - } - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true - }, - "@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0" - } - }, - "@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", - "dev": true, - "requires": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0" - } - }, - "@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", - "dev": true, - "requires": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" - } - }, - "@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", - "dev": true, - "requires": { - "jest-get-type": "^29.4.3" - } - }, - "@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" - } - }, - "@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.25.16" - } - }, - "@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - } - }, - "@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", - "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "slash": "^3.0.0" - } - }, - "@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "dependencies": { - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - } - } - }, - "@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true - }, - "@jridgewell/source-map": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.4.tgz", - "integrity": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, - "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - } - } - }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", - "dev": true - }, - "@mole-inc/bin-wrapper": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@mole-inc/bin-wrapper/-/bin-wrapper-8.0.1.tgz", - "integrity": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==", - "dev": true, - "requires": { - "bin-check": "^4.1.0", - "bin-version-check": "^5.0.0", - "content-disposition": "^0.5.4", - "ext-name": "^5.0.0", - "file-type": "^17.1.6", - "filenamify": "^5.0.2", - "got": "^11.8.5", - "os-filter-obj": "^2.0.0" - } - }, - "@ngrx/store": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-16.0.1.tgz", - "integrity": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==", - "requires": { - "tslib": "^2.0.0" - } - }, - "@ngtools/webpack": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.0.6.tgz", - "integrity": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==", - "dev": true, - "requires": {} - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", - "dev": true, - "requires": { - "semver": "^7.3.5" - } - }, - "@npmcli/git": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz", - "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==", - "dev": true, - "requires": { - "@npmcli/promise-spawn": "^6.0.0", - "lru-cache": "^7.4.4", - "npm-pick-manifest": "^8.0.0", - "proc-log": "^3.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^3.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", - "dev": true, - "requires": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - } - }, - "@npmcli/node-gyp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", - "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", - "dev": true - }, - "@npmcli/promise-spawn": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz", - "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==", - "dev": true, - "requires": { - "which": "^3.0.0" - }, - "dependencies": { - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@npmcli/run-script": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz", - "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==", - "dev": true, - "requires": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^6.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^3.0.0" - }, - "dependencies": { - "which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", - "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "@nrwl/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==", - "dev": true, - "requires": { - "@nx/angular": "16.4.2", - "tslib": "^2.3.0" - } - }, - "@nrwl/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==", - "dev": true, - "requires": { - "@nx/cypress": "16.4.2" - } - }, - "@nrwl/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==", - "dev": true, - "requires": { - "@nx/devkit": "16.4.2" - } - }, - "@nrwl/eslint-plugin-nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-16.1.1.tgz", - "integrity": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==", - "dev": true, - "requires": { - "@nx/eslint-plugin": "16.1.1" - } - }, - "@nrwl/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==", - "dev": true, - "requires": { - "@nx/jest": "16.4.2" - } - }, - "@nrwl/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.4.2.tgz", - "integrity": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==", - "dev": true, - "requires": { - "@nx/js": "16.4.2" - } - }, - "@nrwl/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==", - "dev": true, - "requires": { - "@nx/linter": "16.1.1" - } - }, - "@nrwl/nx-plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/nx-plugin/-/nx-plugin-16.4.2.tgz", - "integrity": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==", - "dev": true, - "requires": { - "@nx/plugin": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.1.1.tgz", - "integrity": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==", - "dev": true, - "requires": { - "nx": "16.1.1" - } - }, - "@nrwl/web": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-16.4.2.tgz", - "integrity": "sha512-WgD6G+Cl54/RywzYTnphQCQuNdDrGGdivcyd3AZey9yA1Avvi/CI5+mU75pQAMrqsb2oxylZVk6lnN5iLJcAwA==", - "dev": true, - "requires": { - "@nx/web": "16.4.2" - } - }, - "@nrwl/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==", - "dev": true, - "requires": { - "@nx/webpack": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==", - "dev": true, - "requires": { - "@nx/workspace": "16.1.1" - } - }, - "@nx/angular": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-16.4.2.tgz", - "integrity": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==", - "dev": true, - "requires": { - "@nrwl/angular": "16.4.2", - "@nx/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@nx/webpack": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "@typescript-eslint/type-utils": "^5.36.1", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "enquirer": "^2.3.6", - "http-server": "^14.1.0", - "ignore": "^5.0.4", - "magic-string": "~0.26.2", - "minimatch": "3.0.5", - "semver": "7.5.3", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", - "tslib": "^2.3.0", - "webpack": "^5.80.0", - "webpack-merge": "5.7.3" - }, - "dependencies": { - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "requires": { - "@nx/linter": "16.4.2" - } - }, - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "requires": { - "nx": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "requires": { - "@nx/workspace": "16.4.2" - } - }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "dev": true, - "optional": true - }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "magic-string": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", - "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", - "dev": true, - "requires": { - "sourcemap-codec": "^1.4.8" - } - }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "webpack-merge": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", - "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/cypress": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-16.4.2.tgz", - "integrity": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==", - "dev": true, - "requires": { - "@nrwl/cypress": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "detect-port": "^1.5.1", - "dotenv": "~10.0.0", - "semver": "7.5.3" - }, - "dependencies": { - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "requires": { - "@nx/linter": "16.4.2" - } - }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/devkit": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.4.2.tgz", - "integrity": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.4.2", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/eslint-plugin": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-16.1.1.tgz", - "integrity": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==", - "dev": true, - "requires": { - "@nrwl/eslint-plugin-nx": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@typescript-eslint/type-utils": "^5.58.0", - "@typescript-eslint/utils": "^5.58.0", - "chalk": "^4.1.0", - "confusing-browser-globals": "^1.0.9", - "semver": "7.3.4" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "requires": { - "@nx/js": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/jest": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-16.4.2.tgz", - "integrity": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==", - "dev": true, - "requires": { - "@jest/reporters": "^29.4.1", - "@jest/test-result": "^29.4.1", - "@nrwl/jest": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "chalk": "^4.1.0", - "dotenv": "~10.0.0", - "identity-obj-proxy": "3.0.0", - "jest-config": "^29.4.1", - "jest-resolve": "^29.4.1", - "jest-util": "^29.4.1", - "resolve.exports": "1.1.0", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.4.2.tgz", - "integrity": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/workspace": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "detect-port": "^1.5.1", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "semver": "7.5.3", - "source-map-support": "0.5.19", - "tslib": "^2.3.0" - }, - "dependencies": { - "@nrwl/tao": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-16.4.2.tgz", - "integrity": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==", - "dev": true, - "requires": { - "nx": "16.4.2" - } - }, - "@nrwl/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==", - "dev": true, - "requires": { - "@nx/workspace": "16.4.2" - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.4.2.tgz", - "integrity": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.4.2.tgz", - "integrity": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.4.2.tgz", - "integrity": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.4.2.tgz", - "integrity": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.4.2.tgz", - "integrity": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.4.2.tgz", - "integrity": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.4.2.tgz", - "integrity": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.4.2.tgz", - "integrity": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.4.2.tgz", - "integrity": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==", - "dev": true, - "optional": true - }, - "@nx/workspace": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.4.2.tgz", - "integrity": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.4.2", - "@nx/devkit": "16.4.2", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.4.2", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - } - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "nx": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.4.2.tgz", - "integrity": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==", - "dev": true, - "requires": { - "@nrwl/tao": "16.4.2", - "@nx/nx-darwin-arm64": "16.4.2", - "@nx/nx-darwin-x64": "16.4.2", - "@nx/nx-freebsd-x64": "16.4.2", - "@nx/nx-linux-arm-gnueabihf": "16.4.2", - "@nx/nx-linux-arm64-gnu": "16.4.2", - "@nx/nx-linux-arm64-musl": "16.4.2", - "@nx/nx-linux-x64-gnu": "16.4.2", - "@nx/nx-linux-x64-musl": "16.4.2", - "@nx/nx-win32-arm64-msvc": "16.4.2", - "@nx/nx-win32-x64-msvc": "16.4.2", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "semver": "7.5.3", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/linter": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.1.1.tgz", - "integrity": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==", - "dev": true, - "requires": { - "@nrwl/linter": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/js": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nrwl/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-16.1.1.tgz", - "integrity": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==", - "dev": true, - "requires": { - "@nx/js": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "@nx/js": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-16.1.1.tgz", - "integrity": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-decorators": "^7.14.5", - "@babel/plugin-transform-runtime": "^7.15.0", - "@babel/preset-env": "^7.15.0", - "@babel/preset-typescript": "^7.15.0", - "@babel/runtime": "^7.14.8", - "@nrwl/js": "16.1.1", - "@nx/devkit": "16.1.1", - "@nx/workspace": "16.1.1", - "@phenomnomnominal/tsquery": "~5.0.1", - "babel-plugin-const-enum": "^1.0.1", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-transform-typescript-metadata": "^0.3.1", - "chalk": "^4.1.0", - "fast-glob": "3.2.7", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "js-tokens": "^4.0.0", - "minimatch": "3.0.5", - "source-map-support": "0.5.19", - "tree-kill": "1.2.2", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/nx-darwin-arm64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.1.1.tgz", - "integrity": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==", - "dev": true, - "optional": true - }, - "@nx/nx-darwin-x64": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-16.1.1.tgz", - "integrity": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==", - "dev": true, - "optional": true - }, - "@nx/nx-freebsd-x64": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-16.4.2.tgz", - "integrity": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm-gnueabihf": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-16.1.1.tgz", - "integrity": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-16.1.1.tgz", - "integrity": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-arm64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-16.1.1.tgz", - "integrity": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-gnu": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-16.1.1.tgz", - "integrity": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==", - "dev": true, - "optional": true - }, - "@nx/nx-linux-x64-musl": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-16.1.1.tgz", - "integrity": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-arm64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-16.1.1.tgz", - "integrity": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==", - "dev": true, - "optional": true - }, - "@nx/nx-win32-x64-msvc": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-16.1.1.tgz", - "integrity": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==", - "dev": true, - "optional": true - }, - "@nx/plugin": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/plugin/-/plugin-16.4.2.tgz", - "integrity": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==", - "dev": true, - "requires": { - "@nrwl/nx-plugin": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/jest": "16.4.2", - "@nx/js": "16.4.2", - "@nx/linter": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "dotenv": "~10.0.0", - "fs-extra": "^11.1.0", - "tslib": "^2.3.0" - }, - "dependencies": { - "@nrwl/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nrwl/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==", - "dev": true, - "requires": { - "@nx/linter": "16.4.2" - } - }, - "@nx/linter": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-16.4.2.tgz", - "integrity": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==", - "dev": true, - "requires": { - "@nrwl/linter": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "@phenomnomnominal/tsquery": "~5.0.1", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - } - } - }, - "@nx/web": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/web/-/web-16.4.2.tgz", - "integrity": "sha512-rjARmJESboplfa3kI0ncUMBKJGJO1cV9Rsp1HzIeAAq7Zo614lPnUA/lE6Q+lD+GbfJu0y5t7ENmQv2E/61Rxw==", - "dev": true, - "requires": { - "@nrwl/web": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "detect-port": "^1.5.1", - "http-server": "^14.1.0", - "ignore": "^5.0.4", - "tslib": "^2.3.0" - } - }, - "@nx/webpack": { - "version": "16.4.2", - "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-16.4.2.tgz", - "integrity": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==", - "dev": true, - "requires": { - "@babel/core": "^7.15.0", - "@nrwl/webpack": "16.4.2", - "@nx/devkit": "16.4.2", - "@nx/js": "16.4.2", - "autoprefixer": "^10.4.9", - "babel-loader": "^9.1.2", - "browserslist": "^4.21.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "copy-webpack-plugin": "^10.2.4", - "css-loader": "^6.4.0", - "css-minimizer-webpack-plugin": "^5.0.0", - "dotenv": "~10.0.0", - "fork-ts-checker-webpack-plugin": "7.2.13", - "ignore": "^5.0.4", - "less": "4.1.3", - "less-loader": "11.1.0", - "license-webpack-plugin": "^4.0.2", - "loader-utils": "^2.0.3", - "mini-css-extract-plugin": "~2.4.7", - "parse5": "4.0.0", - "postcss": "^8.4.14", - "postcss-import": "~14.1.0", - "postcss-loader": "^6.1.1", - "rxjs": "^7.8.0", - "sass": "^1.42.1", - "sass-loader": "^12.2.0", - "source-map-loader": "^3.0.0", - "style-loader": "^3.3.0", - "stylus": "^0.59.0", - "stylus-loader": "^7.1.0", - "terser-webpack-plugin": "^5.3.3", - "ts-loader": "^9.3.1", - "ts-node": "10.9.1", - "tsconfig-paths": "^4.1.2", - "tsconfig-paths-webpack-plugin": "4.0.0", - "tslib": "^2.3.0", - "webpack": "^5.80.0", - "webpack-dev-server": "^4.9.3", - "webpack-node-externals": "^3.0.0", - "webpack-subresource-integrity": "^5.1.0" - }, - "dependencies": { - "array-union": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", - "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", - "dev": true - }, - "copy-webpack-plugin": { - "version": "10.2.4", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", - "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", - "dev": true, - "requires": { - "fast-glob": "^3.2.7", - "glob-parent": "^6.0.1", - "globby": "^12.0.2", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - } - }, - "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globby": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", - "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", - "dev": true, - "requires": { - "array-union": "^3.0.1", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.7", - "ignore": "^5.1.9", - "merge2": "^1.4.1", - "slash": "^4.0.0" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "mini-css-extract-plugin": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.7.tgz", - "integrity": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==", - "dev": true, - "requires": { - "schema-utils": "^4.0.0" - } - }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", - "dev": true - }, - "postcss-loader": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", - "dev": true, - "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.5" - } - }, - "sass-loader": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", - "dev": true, - "requires": { - "klona": "^2.0.4", - "neo-async": "^2.6.2" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true - }, - "source-map-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", - "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", - "dev": true, - "requires": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@nx/workspace": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-16.1.1.tgz", - "integrity": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==", - "dev": true, - "requires": { - "@nrwl/workspace": "16.1.1", - "@nx/devkit": "16.1.1", - "@parcel/watcher": "2.0.4", - "chalk": "^4.1.0", - "chokidar": "^3.5.1", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "dotenv": "~10.0.0", - "figures": "3.2.0", - "flat": "^5.0.2", - "ignore": "^5.0.4", - "minimatch": "3.0.5", - "npm-run-path": "^4.0.1", - "nx": "16.1.1", - "open": "^8.4.0", - "rxjs": "^7.8.0", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==", - "dev": true, - "requires": { - "@nx/devkit": "16.1.1" - } - }, - "@nx/devkit": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.1.1.tgz", - "integrity": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.1.1", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.3.4", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@octokit/auth-token": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", - "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", - "dev": true, - "peer": true - }, - "@octokit/core": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", - "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", - "dev": true, - "peer": true, - "requires": { - "@octokit/auth-token": "^4.0.0", - "@octokit/graphql": "^7.0.0", - "@octokit/request": "^8.0.2", - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^12.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/endpoint": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", - "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", - "dev": true, - "peer": true, - "requires": { - "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/graphql": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", - "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", - "dev": true, - "peer": true, - "requires": { - "@octokit/request": "^8.0.1", - "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/openapi-types": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", - "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", - "dev": true, - "peer": true - }, - "@octokit/plugin-paginate-rest": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", - "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", - "dev": true, - "peer": true, - "requires": { - "@octokit/types": "^12.4.0" - } - }, - "@octokit/plugin-retry": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", - "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", - "dev": true, - "peer": true, - "requires": { - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^12.0.0", - "bottleneck": "^2.15.3" - } - }, - "@octokit/plugin-throttling": { - "version": "8.1.3", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", - "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", - "dev": true, - "peer": true, - "requires": { - "@octokit/types": "^12.2.0", - "bottleneck": "^2.15.3" - } - }, - "@octokit/request": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", - "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", - "dev": true, - "peer": true, - "requires": { - "@octokit/endpoint": "^9.0.0", - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/request-error": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", - "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", - "dev": true, - "peer": true, - "requires": { - "@octokit/types": "^12.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" - } - }, - "@octokit/types": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", - "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", - "dev": true, - "peer": true, - "requires": { - "@octokit/openapi-types": "^19.1.0" - } - }, - "@parcel/watcher": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", - "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", - "dev": true, - "requires": { - "node-addon-api": "^3.2.1", - "node-gyp-build": "^4.3.0" - } - }, - "@phenomnomnominal/tsquery": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-5.0.1.tgz", - "integrity": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==", - "dev": true, - "requires": { - "esquery": "^1.4.0" - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true - }, - "@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", - "dev": true, - "peer": true - }, - "@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", - "dev": true, - "peer": true, - "requires": { - "graceful-fs": "4.2.10" - }, - "dependencies": { - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true, - "peer": true - } - } - }, - "@pnpm/npm-conf": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", - "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==", - "dev": true, - "peer": true, - "requires": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - } - }, - "@schematics/angular": { - "version": "16.0.6", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-16.0.6.tgz", - "integrity": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==", - "dev": true, - "requires": { - "@angular-devkit/core": "16.0.6", - "@angular-devkit/schematics": "16.0.6", - "jsonc-parser": "3.2.0" - } - }, - "@semantic-release/changelog": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", - "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", - "dev": true, - "requires": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "fs-extra": "^11.0.0", - "lodash": "^4.17.4" - } - }, - "@semantic-release/commit-analyzer": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", - "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", - "dev": true, - "requires": { - "conventional-changelog-angular": "^7.0.0", - "conventional-commits-filter": "^4.0.0", - "conventional-commits-parser": "^5.0.0", - "debug": "^4.0.0", - "import-from-esm": "^1.0.3", - "lodash-es": "^4.17.21", - "micromatch": "^4.0.2" - } - }, - "@semantic-release/error": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", - "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", - "dev": true - }, - "@semantic-release/exec": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/exec/-/exec-6.0.3.tgz", - "integrity": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==", - "dev": true, - "requires": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "parse-json": "^5.0.0" - }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } - } - }, - "@semantic-release/git": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", - "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", - "dev": true, - "requires": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.0", - "p-reduce": "^2.0.0" - }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } - } - }, - "@semantic-release/github": { - "version": "9.2.5", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", - "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", - "dev": true, - "peer": true, - "requires": { - "@octokit/core": "^5.0.0", - "@octokit/plugin-paginate-rest": "^9.0.0", - "@octokit/plugin-retry": "^6.0.0", - "@octokit/plugin-throttling": "^8.0.0", - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "debug": "^4.3.4", - "dir-glob": "^3.0.1", - "globby": "^14.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "issue-parser": "^6.0.0", - "lodash-es": "^4.17.21", - "mime": "^4.0.0", - "p-filter": "^3.0.0", - "url-join": "^5.0.0" - }, - "dependencies": { - "@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "peer": true - }, - "agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "peer": true, - "requires": { - "debug": "^4.3.4" - } - }, - "aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "peer": true, - "requires": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - } - }, - "clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "5.0.0" - } - }, - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "peer": true - }, - "fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "peer": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "globby": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", - "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", - "dev": true, - "peer": true, - "requires": { - "@sindresorhus/merge-streams": "^1.0.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - } - }, - "http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dev": true, - "peer": true, - "requires": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - } - }, - "https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, - "peer": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, - "indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "peer": true - }, - "mime": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.1.tgz", - "integrity": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==", - "dev": true, - "peer": true - }, - "path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, - "peer": true - }, - "slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, - "peer": true - }, - "url-join": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", - "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", - "dev": true, - "peer": true - } - } - }, - "@semantic-release/npm": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", - "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", - "dev": true, - "peer": true, - "requires": { - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "execa": "^8.0.0", - "fs-extra": "^11.0.0", - "lodash-es": "^4.17.21", - "nerf-dart": "^1.0.0", - "normalize-url": "^8.0.0", - "npm": "^10.0.0", - "rc": "^1.2.8", - "read-pkg": "^9.0.0", - "registry-auth-token": "^5.0.0", - "semver": "^7.1.2", - "tempy": "^3.0.0" - }, - "dependencies": { - "@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "peer": true - }, - "aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "peer": true, - "requires": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - } - }, - "clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "5.0.0" - } - }, - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "peer": true - }, - "execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "peer": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - } - }, - "get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "peer": true - }, - "hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", - "dev": true, - "peer": true, - "requires": { - "lru-cache": "^10.0.1" - } - }, - "human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "peer": true - }, - "indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "peer": true - }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "peer": true - }, - "lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true, - "peer": true - }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "peer": true - }, - "normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", - "dev": true, - "peer": true, - "requires": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - }, - "normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", - "dev": true, - "peer": true - }, - "npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "peer": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "peer": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "parse-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", - "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", - "dev": true, - "peer": true, - "requires": { - "@babel/code-frame": "^7.22.13", - "index-to-position": "^0.1.2", - "type-fest": "^4.7.1" - } - }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "peer": true - }, - "read-pkg": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", - "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", - "dev": true, - "peer": true, - "requires": { - "@types/normalize-package-data": "^2.4.3", - "normalize-package-data": "^6.0.0", - "parse-json": "^8.0.0", - "type-fest": "^4.6.0", - "unicorn-magic": "^0.1.0" - } - }, - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "peer": true - }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "peer": true - }, - "type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", - "dev": true, - "peer": true - } - } - }, - "@semantic-release/release-notes-generator": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", - "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", - "dev": true, - "requires": { - "conventional-changelog-angular": "^7.0.0", - "conventional-changelog-writer": "^7.0.0", - "conventional-commits-filter": "^4.0.0", - "conventional-commits-parser": "^5.0.0", - "debug": "^4.0.0", - "get-stream": "^7.0.0", - "import-from-esm": "^1.0.3", - "into-stream": "^7.0.0", - "lodash-es": "^4.17.21", - "read-pkg-up": "^11.0.0" - }, - "dependencies": { - "get-stream": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", - "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", - "dev": true - } - } - }, - "@sigstore/protobuf-specs": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz", - "integrity": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==", - "dev": true - }, - "@sigstore/tuf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz", - "integrity": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==", - "dev": true, - "requires": { - "@sigstore/protobuf-specs": "^0.1.0", - "tuf-js": "^1.1.7" - } - }, - "@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "dev": true - }, - "@sindresorhus/merge-streams": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", - "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", - "dev": true, - "peer": true - }, - "@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", - "dev": true, - "requires": { - "@sinonjs/commons": "^3.0.0" - } - }, - "@swc-node/core": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/@swc-node/core/-/core-1.10.4.tgz", - "integrity": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==", - "dev": true, - "requires": {} - }, - "@swc-node/register": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@swc-node/register/-/register-1.4.2.tgz", - "integrity": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==", - "dev": true, - "requires": { - "@swc-node/core": "^1.8.2", - "@swc-node/sourcemap-support": "^0.1.11", - "chalk": "4", - "debug": "^4.3.3", - "pirates": "^4.0.4", - "tslib": "^2.3.1", - "typescript": "^4.5.3" - }, - "dependencies": { - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true - } - } - }, - "@swc-node/sourcemap-support": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.1.11.tgz", - "integrity": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==", - "dev": true, - "requires": { - "source-map-support": "^0.5.21" - } - }, - "@swc/cli": { - "version": "0.1.62", - "resolved": "https://registry.npmjs.org/@swc/cli/-/cli-0.1.62.tgz", - "integrity": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==", - "dev": true, - "requires": { - "@mole-inc/bin-wrapper": "^8.0.1", - "commander": "^7.1.0", - "fast-glob": "^3.2.5", - "semver": "^7.3.8", - "slash": "3.0.0", - "source-map": "^0.7.3" - } - }, - "@swc/core": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.67.tgz", - "integrity": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==", - "dev": true, - "requires": { - "@swc/core-darwin-arm64": "1.3.67", - "@swc/core-darwin-x64": "1.3.67", - "@swc/core-linux-arm-gnueabihf": "1.3.67", - "@swc/core-linux-arm64-gnu": "1.3.67", - "@swc/core-linux-arm64-musl": "1.3.67", - "@swc/core-linux-x64-gnu": "1.3.67", - "@swc/core-linux-x64-musl": "1.3.67", - "@swc/core-win32-arm64-msvc": "1.3.67", - "@swc/core-win32-ia32-msvc": "1.3.67", - "@swc/core-win32-x64-msvc": "1.3.67" - } - }, - "@swc/core-darwin-arm64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.67.tgz", - "integrity": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==", - "dev": true, - "optional": true - }, - "@swc/core-darwin-x64": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.67.tgz", - "integrity": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm-gnueabihf": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.67.tgz", - "integrity": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.67.tgz", - "integrity": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.67.tgz", - "integrity": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==", - "dev": true, - "optional": true - }, - "@swc/core-linux-x64-gnu": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.67.tgz", - "integrity": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==", - "dev": true, - "optional": true - }, - "@swc/core-linux-x64-musl": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.67.tgz", - "integrity": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==", - "dev": true, - "optional": true - }, - "@swc/core-win32-arm64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.67.tgz", - "integrity": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==", - "dev": true, - "optional": true - }, - "@swc/core-win32-ia32-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.67.tgz", - "integrity": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==", - "dev": true, - "optional": true - }, - "@swc/core-win32-x64-msvc": { - "version": "1.3.67", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.67.tgz", - "integrity": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==", - "dev": true, - "optional": true - }, - "@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "dev": true, - "requires": { - "tslib": "^2.4.0" - } - }, - "@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "dev": true, - "requires": { - "defer-to-connect": "^2.0.0" - } - }, - "@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", - "dev": true - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true - }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "@tufjs/canonical-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz", - "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==", - "dev": true - }, - "@tufjs/models": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz", - "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==", - "dev": true, - "requires": { - "@tufjs/canonical-json": "1.0.0", - "minimatch": "^9.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", - "dev": true, - "requires": { - "@babel/types": "^7.20.7" - } - }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dev": true, - "requires": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", - "dev": true, - "requires": { - "@types/express-serve-static-core": "*", - "@types/node": "*" - } - }, - "@types/eslint": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", - "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", - "dev": true, - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "dev": true, - "requires": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "dev": true - }, - "@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "@types/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", - "dev": true - }, - "@types/http-proxy": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", - "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/inquirer": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz", - "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==", - "requires": { - "@types/through": "*", - "rxjs": "^7.2.0" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "29.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", - "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", - "dev": true, - "requires": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" - } - }, - "@types/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" - } - }, - "@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/lodash": { - "version": "4.14.195", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", - "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", - "dev": true - }, - "@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "dev": true - }, - "@types/node": { - "version": "18.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.1.tgz", - "integrity": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" - }, - "@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true - }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true - }, - "@types/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==", - "dev": true - }, - "@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", - "dev": true, - "requires": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", - "dev": true, - "requires": { - "@types/express": "*" - } - }, - "@types/serve-static": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", - "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", - "dev": true, - "requires": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/sinonjs__fake-timers": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", - "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", - "dev": true - }, - "@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", - "dev": true - }, - "@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", - "requires": { - "@types/node": "*" - } - }, - "@types/tough-cookie": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", - "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", - "dev": true - }, - "@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", - "dev": true, - "optional": true, - "requires": { - "@types/node": "*" - } - }, - "@typescript-eslint/eslint-plugin": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz", - "integrity": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==", - "dev": true, - "requires": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/type-utils": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "dependencies": { - "@typescript-eslint/type-utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.60.1.tgz", - "integrity": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==", - "dev": true, - "requires": { - "@typescript-eslint/typescript-estree": "5.60.1", - "@typescript-eslint/utils": "5.60.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/utils": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.60.1.tgz", - "integrity": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - } - }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - } - } - }, - "@typescript-eslint/parser": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", - "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", - "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "5.60.1", - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/typescript-estree": "5.60.1", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", - "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1" - } - }, - "@typescript-eslint/type-utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", - "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", - "dev": true, - "requires": { - "@typescript-eslint/typescript-estree": "5.59.7", - "@typescript-eslint/utils": "5.59.7", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, - "dependencies": { - "@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" - } - } - } - }, - "@typescript-eslint/types": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", - "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", - "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.60.1", - "@typescript-eslint/visitor-keys": "5.60.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/utils": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", - "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.7", - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/typescript-estree": "5.59.7", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "dependencies": { - "@typescript-eslint/scope-manager": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", - "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7" - } - }, - "@typescript-eslint/types": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", - "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", - "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "@typescript-eslint/visitor-keys": "5.59.7", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.59.7", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", - "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.7", - "eslint-visitor-keys": "^3.3.0" - } - }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - } - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.60.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", - "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.60.1", - "eslint-visitor-keys": "^3.3.0" - } - }, - "@verdaccio/commons-api": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@verdaccio/commons-api/-/commons-api-10.2.0.tgz", - "integrity": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==", - "dev": true, - "requires": { - "http-errors": "2.0.0", - "http-status-codes": "2.2.0" - } - }, - "@verdaccio/config": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/config/-/config-6.0.0-6-next.71.tgz", - "integrity": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "js-yaml": "4.1.0", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "yup": "0.32.11" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "@verdaccio/core": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/core/-/core-6.0.0-6-next.71.tgz", - "integrity": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==", - "dev": true, - "requires": { - "ajv": "8.12.0", - "core-js": "3.30.2", - "http-errors": "2.0.0", - "http-status-codes": "2.2.0", - "process-warning": "1.0.0", - "semver": "7.5.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@verdaccio/file-locking": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-10.3.1.tgz", - "integrity": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==", - "dev": true, - "requires": { - "lockfile": "1.0.4" - } - }, - "@verdaccio/local-storage": { - "version": "10.3.3", - "resolved": "https://registry.npmjs.org/@verdaccio/local-storage/-/local-storage-10.3.3.tgz", - "integrity": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==", - "dev": true, - "requires": { - "@verdaccio/commons-api": "10.2.0", - "@verdaccio/file-locking": "10.3.1", - "@verdaccio/streams": "10.2.1", - "async": "3.2.4", - "debug": "4.3.4", - "lodash": "4.17.21", - "lowdb": "1.0.0", - "mkdirp": "1.0.4" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - } - } - }, - "@verdaccio/logger-7": { - "version": "6.0.0-6-next.16", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-7/-/logger-7-6.0.0-6-next.16.tgz", - "integrity": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==", - "dev": true, - "requires": { - "@verdaccio/logger-commons": "6.0.0-6-next.39", - "pino": "7.11.0" - } - }, - "@verdaccio/logger-commons": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-commons/-/logger-commons-6.0.0-6-next.39.tgz", - "integrity": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/logger-prettify": "6.0.0-6-next.10", - "colorette": "2.0.20", - "debug": "4.3.4" - } - }, - "@verdaccio/logger-prettify": { - "version": "6.0.0-6-next.10", - "resolved": "https://registry.npmjs.org/@verdaccio/logger-prettify/-/logger-prettify-6.0.0-6-next.10.tgz", - "integrity": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==", - "dev": true, - "requires": { - "colorette": "2.0.20", - "dayjs": "1.11.7", - "lodash": "4.17.21", - "pino-abstract-transport": "1.0.0", - "sonic-boom": "3.3.0" - }, - "dependencies": { - "dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", - "dev": true - } - } - }, - "@verdaccio/middleware": { - "version": "6.0.0-6-next.50", - "resolved": "https://registry.npmjs.org/@verdaccio/middleware/-/middleware-6.0.0-6-next.50.tgz", - "integrity": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==", - "dev": true, - "requires": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "2.6.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true - } - } - }, - "@verdaccio/search": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/search/-/search-6.0.0-6-next.2.tgz", - "integrity": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==", - "dev": true - }, - "@verdaccio/signature": { - "version": "6.0.0-6-next.2", - "resolved": "https://registry.npmjs.org/@verdaccio/signature/-/signature-6.0.0-6-next.2.tgz", - "integrity": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==", - "dev": true, - "requires": { - "debug": "4.3.4", - "jsonwebtoken": "9.0.0", - "lodash": "4.17.21" - } - }, - "@verdaccio/streams": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/@verdaccio/streams/-/streams-10.2.1.tgz", - "integrity": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==", - "dev": true - }, - "@verdaccio/tarball": { - "version": "11.0.0-6-next.40", - "resolved": "https://registry.npmjs.org/@verdaccio/tarball/-/tarball-11.0.0-6-next.40.tgz", - "integrity": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "debug": "4.3.4", - "lodash": "4.17.21" - } - }, - "@verdaccio/ui-theme": { - "version": "6.0.0-6-next.71", - "resolved": "https://registry.npmjs.org/@verdaccio/ui-theme/-/ui-theme-6.0.0-6-next.71.tgz", - "integrity": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==", - "dev": true - }, - "@verdaccio/url": { - "version": "11.0.0-6-next.37", - "resolved": "https://registry.npmjs.org/@verdaccio/url/-/url-11.0.0-6-next.37.tgz", - "integrity": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "debug": "4.3.4", - "lodash": "4.17.21", - "validator": "13.9.0" - } - }, - "@verdaccio/utils": { - "version": "6.0.0-6-next.39", - "resolved": "https://registry.npmjs.org/@verdaccio/utils/-/utils-6.0.0-6-next.39.tgz", - "integrity": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==", - "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "lodash": "4.17.21", - "minimatch": "3.1.2", - "semver": "7.5.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "@vitejs/plugin-basic-ssl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", - "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", - "dev": true, - "requires": {} - }, - "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", - "dev": true, - "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", - "dev": true - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "dev": true, - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "@yarnpkg/lockfile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", - "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", - "dev": true - }, - "@yarnpkg/parsers": { - "version": "3.0.0-rc.48", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.48.tgz", - "integrity": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==", - "dev": true, - "requires": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - } - }, - "@zkochan/js-yaml": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", - "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - } - } - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "dev": true, - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true - }, - "acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "dev": true, - "requires": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" - } - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "dev": true, - "requires": {} - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - }, - "address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", - "dev": true - }, - "adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "dependencies": { - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - } - } - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dev": true, - "requires": { - "ajv": "^8.0.0" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true - }, - "ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", - "dev": true, - "requires": { - "ansi-wrap": "0.1.0" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "dev": true - }, - "ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", - "dev": true, - "peer": true - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "apache-md5": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.8.tgz", - "integrity": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==", - "dev": true - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "argv-formatter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", - "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", - "dev": true, - "peer": true - }, - "aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "array-ify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", - "dev": true - }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", - "dev": true - }, - "autolinker": { - "version": "0.28.1", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", - "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", - "dev": true, - "requires": { - "gulp-header": "^1.7.1" - } - }, - "autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", - "dev": true, - "requires": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true - }, - "aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true - }, - "axios": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", - "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", - "dev": true, - "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - }, - "dependencies": { - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - } - } - }, - "axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", - "dev": true, - "requires": { - "@jest/transform": "^29.5.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - } - }, - "babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.2", - "schema-utils": "^4.0.0" - } - }, - "babel-plugin-const-enum": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-const-enum/-/babel-plugin-const-enum-1.2.0.tgz", - "integrity": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-typescript": "^7.3.3", - "@babel/traverse": "^7.16.0" - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - } - }, - "babel-plugin-transform-typescript-metadata": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-typescript-metadata/-/babel-plugin-transform-typescript-metadata-0.3.2.tgz", - "integrity": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^29.5.0", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dev": true, - "requires": { - "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bcryptjs": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", - "dev": true - }, - "before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true, - "peer": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "bin-check": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", - "dev": true, - "requires": { - "execa": "^0.7.0", - "executable": "^4.1.0" - } - }, - "bin-version": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-6.0.0.tgz", - "integrity": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==", - "dev": true, - "requires": { - "execa": "^5.0.0", - "find-versions": "^5.0.0" - }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } - } - }, - "bin-version-check": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-5.1.0.tgz", - "integrity": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==", - "dev": true, - "requires": { - "bin-version": "^6.0.0", - "semver": "^7.5.3", - "semver-truncate": "^3.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "blob-util": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", - "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } - } - }, - "bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", - "dev": true, - "requires": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" - }, - "dependencies": { - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - } - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "bottleneck": { - "version": "2.19.5", - "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", - "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", - "dev": true, - "peer": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - } - }, - "bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "btoa": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", - "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", - "dev": true - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true - }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", - "dev": true - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "requires": { - "semver": "^7.0.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "cacache": { - "version": "17.0.6", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.0.6.tgz", - "integrity": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==", - "dev": true, - "requires": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "dev": true - }, - "cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - } - } - }, - "cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", - "dev": true - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001511", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001511.tgz", - "integrity": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==", - "dev": true - }, - "cardinal": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", - "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", - "dev": true, - "peer": true, - "requires": { - "ansicolors": "~0.3.2", - "redeyed": "~2.1.0" - } - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "check-more-types": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true - }, - "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true - }, - "cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", - "dev": true - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", - "dev": true - }, - "cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", - "dev": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", - "dev": true, - "requires": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "clipanion": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-3.2.0.tgz", - "integrity": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==", - "dev": true, - "requires": { - "typanion": "^3.8.0" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "coffee-script": { - "version": "1.12.7", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", - "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - }, - "common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "compare-func": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", - "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", - "dev": true, - "requires": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" - } - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", - "dev": true, - "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "peer": true, - "requires": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "peer": true - } - } - }, - "confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", - "dev": true - }, - "connect-pause": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", - "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "conventional-changelog-angular": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", - "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", - "dev": true, - "requires": { - "compare-func": "^2.0.0" - } - }, - "conventional-changelog-conventionalcommits": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", - "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", - "dev": true, - "requires": { - "compare-func": "^2.0.0" - } - }, - "conventional-changelog-writer": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-7.0.1.tgz", - "integrity": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==", - "dev": true, - "requires": { - "conventional-commits-filter": "^4.0.0", - "handlebars": "^4.7.7", - "json-stringify-safe": "^5.0.1", - "meow": "^12.0.1", - "semver": "^7.5.2", - "split2": "^4.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "conventional-commits-filter": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-4.0.0.tgz", - "integrity": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==", - "dev": true - }, - "conventional-commits-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", - "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==", - "dev": true, - "requires": { - "is-text-path": "^2.0.0", - "JSONStream": "^1.3.5", - "meow": "^12.0.1", - "split2": "^4.0.0" - } - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "cookies": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", - "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", - "dev": true, - "requires": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" - } - }, - "copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "requires": { - "is-what": "^3.14.1" - } - }, - "copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", - "dev": true, - "requires": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - }, - "dependencies": { - "fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globby": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", - "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", - "dev": true, - "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - } - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true - } - } - }, - "core-js": { - "version": "3.30.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", - "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", - "dev": true - }, - "core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", - "dev": true, - "requires": { - "browserslist": "^4.21.5" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dev": true, - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "corser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", - "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", - "dev": true - }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" - }, - "dependencies": { - "parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - } - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dev": true, - "peer": true, - "requires": { - "type-fest": "^1.0.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "peer": true - } - } - }, - "css-declaration-sorter": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", - "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", - "dev": true, - "requires": {} - }, - "css-loader": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", - "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", - "dev": true, - "requires": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.19", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" - } - }, - "css-minimizer-webpack-plugin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", - "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.18", - "cssnano": "^6.0.1", - "jest-worker": "^29.4.3", - "postcss": "^8.4.24", - "schema-utils": "^4.0.1", - "serialize-javascript": "^6.0.1" - }, - "dependencies": { - "postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - } - } - }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dev": true, - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, - "css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dev": true, - "requires": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true - }, - "cssnano": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", - "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", - "dev": true, - "requires": { - "cssnano-preset-default": "^6.0.1", - "lilconfig": "^2.1.0" - } - }, - "cssnano-preset-default": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", - "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", - "dev": true, - "requires": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^4.0.0", - "postcss-calc": "^9.0.0", - "postcss-colormin": "^6.0.0", - "postcss-convert-values": "^6.0.0", - "postcss-discard-comments": "^6.0.0", - "postcss-discard-duplicates": "^6.0.0", - "postcss-discard-empty": "^6.0.0", - "postcss-discard-overridden": "^6.0.0", - "postcss-merge-longhand": "^6.0.0", - "postcss-merge-rules": "^6.0.1", - "postcss-minify-font-values": "^6.0.0", - "postcss-minify-gradients": "^6.0.0", - "postcss-minify-params": "^6.0.0", - "postcss-minify-selectors": "^6.0.0", - "postcss-normalize-charset": "^6.0.0", - "postcss-normalize-display-values": "^6.0.0", - "postcss-normalize-positions": "^6.0.0", - "postcss-normalize-repeat-style": "^6.0.0", - "postcss-normalize-string": "^6.0.0", - "postcss-normalize-timing-functions": "^6.0.0", - "postcss-normalize-unicode": "^6.0.0", - "postcss-normalize-url": "^6.0.0", - "postcss-normalize-whitespace": "^6.0.0", - "postcss-ordered-values": "^6.0.0", - "postcss-reduce-initial": "^6.0.0", - "postcss-reduce-transforms": "^6.0.0", - "postcss-svgo": "^6.0.0", - "postcss-unique-selectors": "^6.0.0" - } - }, - "cssnano-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", - "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", - "dev": true, - "requires": {} - }, - "csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", - "dev": true, - "requires": { - "css-tree": "~2.2.0" - }, - "dependencies": { - "css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", - "dev": true, - "requires": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - } - }, - "mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true - } - } - }, - "cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "dev": true - }, - "cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "requires": { - "cssom": "~0.3.6" - }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - } - } - }, - "cypress": { - "version": "12.16.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.16.0.tgz", - "integrity": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==", - "dev": true, - "requires": { - "@cypress/request": "^2.88.10", - "@cypress/xvfb": "^1.2.4", - "@types/node": "^14.14.31", - "@types/sinonjs__fake-timers": "8.1.1", - "@types/sizzle": "^2.3.2", - "arch": "^2.2.0", - "blob-util": "^2.0.2", - "bluebird": "^3.7.2", - "buffer": "^5.6.0", - "cachedir": "^2.3.0", - "chalk": "^4.1.0", - "check-more-types": "^2.24.0", - "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.1", - "commander": "^6.2.1", - "common-tags": "^1.8.0", - "dayjs": "^1.10.4", - "debug": "^4.3.4", - "enquirer": "^2.3.6", - "eventemitter2": "6.4.7", - "execa": "4.1.0", - "executable": "^4.1.1", - "extract-zip": "2.0.1", - "figures": "^3.2.0", - "fs-extra": "^9.1.0", - "getos": "^3.2.1", - "is-ci": "^3.0.0", - "is-installed-globally": "~0.4.0", - "lazy-ass": "^1.6.0", - "listr2": "^3.8.3", - "lodash": "^4.17.21", - "log-symbols": "^4.0.0", - "minimist": "^1.2.8", - "ospath": "^1.2.2", - "pretty-bytes": "^5.6.0", - "proxy-from-env": "1.0.0", - "request-progress": "^3.0.0", - "semver": "^7.3.2", - "supports-color": "^8.1.1", - "tmp": "~0.2.1", - "untildify": "^4.0.0", - "yauzl": "^2.10.0" - }, - "dependencies": { - "@types/node": { - "version": "14.18.53", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.53.tgz", - "integrity": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", - "dev": true, - "requires": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - } - }, - "dayjs": { - "version": "1.11.9", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz", - "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==", - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true - } - } - }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "deep-equal": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", - "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", - "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.0", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "peer": true - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true - }, - "default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", - "dev": true, - "requires": { - "execa": "^5.0.0" - }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } - } - }, - "defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true - }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true - }, - "define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true, - "peer": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true - }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "dev": true - }, - "detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", - "dev": true, - "requires": { - "address": "^1.0.1", - "debug": "4" - } - }, - "diacritics-map": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", - "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", - "dev": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, - "dns-packet": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", - "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", - "dev": true, - "requires": { - "@leichtgewicht/ip-codec": "^2.0.1" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dev": true, - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true - }, - "domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "dev": true, - "requires": { - "webidl-conversions": "^7.0.0" - } - }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "dev": true, - "requires": { - "domelementtype": "^2.2.0" - } - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dev": true, - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", - "dev": true - }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "dev": true, - "peer": true, - "requires": { - "readable-stream": "^2.0.2" - } - }, - "duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", - "dev": true, - "requires": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", - "dev": true, - "requires": { - "jake": "^10.8.5" - } - }, - "electron-to-chromium": { - "version": "1.4.447", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.447.tgz", - "integrity": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==", - "dev": true - }, - "emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "emojilib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", - "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", - "dev": true, - "peer": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "requires": { - "ansi-colors": "^4.1.1" - } - }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true - }, - "env-ci": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", - "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", - "dev": true, - "peer": true, - "requires": { - "execa": "^8.0.0", - "java-properties": "^1.0.2" - }, - "dependencies": { - "execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "peer": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - } - }, - "get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "peer": true - }, - "human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "peer": true - }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "peer": true - }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "peer": true - }, - "npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "peer": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "peer": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "peer": true - }, - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "peer": true - }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "peer": true - } - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "optional": true, - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "errorhandler": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", - "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", - "dev": true, - "requires": { - "accepts": "~1.3.7", - "escape-html": "~1.0.3" - } - }, - "es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", - "dev": true, - "requires": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - } - }, - "es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - } - }, - "es-module-lexer": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", - "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", - "dev": true - }, - "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" - } - }, - "esbuild-wasm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.17.18.tgz", - "integrity": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==", - "dev": true - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, - "eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", - "dev": true, - "requires": { - "@eslint/eslintrc": "^1.2.3", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.6.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "eslint-config-prettier": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", - "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", - "dev": true, - "requires": {} - }, - "eslint-config-standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", - "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", - "dev": true, - "requires": {} - }, - "eslint-config-standard-jsx": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", - "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", - "dev": true, - "requires": {} - }, - "eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-plugin-cypress": { - "version": "2.13.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.13.3.tgz", - "integrity": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==", - "dev": true, - "requires": { - "globals": "^11.12.0" - } - }, - "eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", - "dev": true, - "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", - "dev": true, - "requires": { - "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-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "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.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - } - } - }, - "eslint-plugin-n": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", - "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", - "dev": true, - "requires": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" - }, - "dependencies": { - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", - "dev": true, - "requires": {} - }, - "eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - } - } - }, - "eslint-visitor-keys": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", - "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", - "dev": true - }, - "espree": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", - "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", - "dev": true, - "requires": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true - }, - "event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "dev": true - }, - "eventemitter-asyncresource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", - "dev": true - }, - "eventemitter2": { - "version": "6.4.7", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", - "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dev": true, - "requires": { - "path-key": "^2.0.0" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true - } - } - }, - "executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", - "dev": true, - "requires": { - "pify": "^2.2.0" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", - "dev": true, - "requires": { - "fill-range": "^2.1.0" - }, - "dependencies": { - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "dev": true, - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", - "dev": true, - "requires": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", - "dev": true - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - } - } - }, - "express-rate-limit": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.1.tgz", - "integrity": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==", - "dev": true - }, - "express-urlrewrite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", - "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", - "dev": true, - "requires": { - "debug": "*", - "path-to-regexp": "^1.0.3" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", - "dev": true, - "requires": { - "isarray": "0.0.1" - } - } - } - }, - "ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", - "dev": true, - "requires": { - "mime-db": "^1.28.0" - } - }, - "ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", - "dev": true, - "requires": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - } - } - }, - "extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dev": true, - "requires": { - "@types/yauzl": "^2.9.1", - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", - "dev": true - }, - "fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", - "dev": true - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "requires": { - "pend": "~1.2.0" - } - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - }, - "dependencies": { - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - } - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "file-type": { - "version": "17.1.6", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-17.1.6.tgz", - "integrity": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==", - "dev": true, - "requires": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0-alpha.9", - "token-types": "^5.0.0-alpha.2" - } - }, - "filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "requires": { - "minimatch": "^5.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "filename-reserved-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-3.0.0.tgz", - "integrity": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==", - "dev": true - }, - "filenamify": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-5.1.1.tgz", - "integrity": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==", - "dev": true, - "requires": { - "filename-reserved-regex": "^3.0.0", - "strip-outer": "^2.0.0", - "trim-repeated": "^2.0.0" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "find-up-simple": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", - "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", - "dev": true - }, - "find-versions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", - "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", - "dev": true, - "requires": { - "semver-regex": "^4.0.5" - } - }, - "flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "dev": true - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "dev": true - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "requires": { - "is-callable": "^1.1.3" - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true - }, - "foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "dependencies": { - "signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", - "dev": true - } - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true - }, - "fork-ts-checker-webpack-plugin": { - "version": "7.2.13", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz", - "integrity": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "requires": {} - }, - "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "dev": true - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs-minipass": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.2.tgz", - "integrity": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==", - "dev": true, - "requires": { - "minipass": "^5.0.0" - } - }, - "fs-monkey": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", - "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - } - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true - }, - "get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "getos": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", - "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", - "dev": true, - "requires": { - "async": "^3.2.0" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "git-log-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz", - "integrity": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==", - "dev": true, - "peer": true, - "requires": { - "argv-formatter": "~1.0.0", - "spawn-error-forwarder": "~1.0.0", - "split2": "~1.0.0", - "stream-combiner2": "~1.1.1", - "through2": "~2.0.0", - "traverse": "~0.6.6" - }, - "dependencies": { - "split2": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", - "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", - "dev": true, - "peer": true, - "requires": { - "through2": "~2.0.0" - } - } - } - }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "requires": { - "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "dependencies": { - "fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - } - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dev": true, - "requires": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "gray-matter": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", - "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", - "dev": true, - "requires": { - "ansi-red": "^0.1.1", - "coffee-script": "^1.12.4", - "extend-shallow": "^2.0.1", - "js-yaml": "^3.8.1", - "toml": "^2.3.2" - } - }, - "gulp-header": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "dev": true, - "requires": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" - } - }, - "gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "dev": true, - "requires": { - "duplexer": "^0.1.2" - } - }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", - "dev": true, - "requires": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4", - "wordwrap": "^1.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "dev": true - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dev": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - } - } - }, - "harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "hdr-histogram-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", - "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", - "dev": true, - "requires": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" - } - }, - "hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", - "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", - "dev": true - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true - }, - "hook-std": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", - "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", - "dev": true, - "peer": true - }, - "hosted-git-info": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz", - "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==", - "dev": true, - "requires": { - "lru-cache": "^7.5.1" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - } - } - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "dev": true, - "requires": { - "whatwg-encoding": "^2.0.0" - } - }, - "html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "dev": true - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "dev": true - }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "dev": true, - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", - "dev": true, - "requires": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" - }, - "dependencies": { - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true - } - } - }, - "http-server": { - "version": "14.1.1", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", - "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", - "dev": true, - "requires": { - "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.6", - "opener": "^1.5.1", - "portfinder": "^1.0.28", - "secure-compare": "3.0.1", - "union": "~0.5.0", - "url-join": "^4.0.1" - } - }, - "http-signature": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", - "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^2.0.2", - "sshpk": "^1.14.1" - } - }, - "http-status-codes": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.2.0.tgz", - "integrity": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==", - "dev": true - }, - "http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dev": true, - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "requires": {} - }, - "identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", - "dev": true, - "requires": { - "harmony-reflect": "^1.4.6" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "ignore-walk": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", - "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", - "dev": true, - "requires": { - "minimatch": "^9.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true - }, - "immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "import-from-esm": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", - "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", - "dev": true, - "requires": { - "debug": "^4.3.4", - "import-meta-resolve": "^4.0.0" - } - }, - "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - } - }, - "import-meta-resolve": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", - "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "index-to-position": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", - "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "ini": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.0.0.tgz", - "integrity": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==", - "dev": true - }, - "inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "inquirer-autocomplete-prompt": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.0.tgz", - "integrity": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==", - "dev": true, - "requires": { - "ansi-escapes": "^4.3.2", - "figures": "^3.2.0", - "picocolors": "^1.0.0", - "run-async": "^2.4.1", - "rxjs": "^7.5.4" - } - }, - "internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "into-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", - "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", - "dev": true, - "requires": { - "from2": "^2.3.0", - "p-is-promise": "^3.0.0" - } - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true - }, - "is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "requires": { - "ci-info": "^3.2.0" - } - }, - "is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - } - }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, - "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", - "dev": true - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-text-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", - "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==", - "dev": true, - "requires": { - "text-extensions": "^2.0.0" - } - }, - "is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true - }, - "is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, - "issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", - "dev": true, - "peer": true, - "requires": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - } - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "jackspeak": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz", - "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==", - "dev": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, - "jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", - "dev": true, - "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "dependencies": { - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "java-properties": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", - "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", - "dev": true, - "peer": true - }, - "jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", - "dev": true, - "requires": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", - "import-local": "^3.0.2", - "jest-cli": "^29.5.0" - } - }, - "jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", - "dev": true, - "requires": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - } - } - }, - "jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", - "dev": true, - "requires": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - } - }, - "jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - } - }, - "jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", - "dev": true, - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" - } - }, - "jest-environment-jsdom": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.5.0.tgz", - "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/jsdom": "^20.0.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0", - "jsdom": "^20.0.0" - } - }, - "jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", - "dev": true - }, - "jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", - "dev": true, - "requires": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - } - }, - "jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - } - }, - "jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "requires": {} - }, - "jest-preset-angular": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-13.1.1.tgz", - "integrity": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==", - "dev": true, - "requires": { - "bs-logger": "^0.2.6", - "esbuild": ">=0.13.8", - "esbuild-wasm": ">=0.13.8", - "jest-environment-jsdom": "^29.0.0", - "jest-util": "^29.0.0", - "pretty-format": "^29.0.0", - "ts-jest": "^29.0.0" - } - }, - "jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", - "dev": true - }, - "jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "dependencies": { - "resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true - } - } - }, - "jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", - "dev": true, - "requires": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" - } - }, - "jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - } - } - }, - "jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" - } - }, - "jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "leven": "^3.1.0", - "pretty-format": "^29.5.0" - }, - "dependencies": { - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - } - } - }, - "jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", - "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.5.0", - "string-length": "^4.0.1" - } - }, - "jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", - "dev": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - } - }, - "jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, - "jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "dev": true, - "requires": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - }, - "dependencies": { - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "dev": true, - "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - } - }, - "universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true - } - } - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-parse-helpfulerror": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", - "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", - "dev": true, - "requires": { - "jju": "^1.1.0" - } - }, - "json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "json-server": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.3.tgz", - "integrity": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==", - "dev": true, - "requires": { - "body-parser": "^1.19.0", - "chalk": "^4.1.2", - "compression": "^1.7.4", - "connect-pause": "^0.1.1", - "cors": "^2.8.5", - "errorhandler": "^1.5.1", - "express": "^4.17.1", - "express-urlrewrite": "^1.4.0", - "json-parse-helpfulerror": "^1.0.3", - "lodash": "^4.17.21", - "lodash-id": "^0.14.1", - "lowdb": "^1.0.0", - "method-override": "^3.0.0", - "morgan": "^1.10.0", - "nanoid": "^3.1.23", - "please-upgrade-node": "^3.2.0", - "pluralize": "^8.0.0", - "server-destroy": "^1.0.1", - "standard": "^17.0.0", - "yargs": "^17.0.1" - } - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsonc-eslint-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.3.0.tgz", - "integrity": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==", - "dev": true, - "requires": { - "acorn": "^8.5.0", - "eslint-visitor-keys": "^3.0.0", - "espree": "^9.0.0", - "semver": "^7.3.5" - } - }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true - }, - "JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", - "dev": true, - "requires": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - } - }, - "jsonwebtoken": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", - "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", - "dev": true, - "requires": { - "jws": "^3.2.2", - "lodash": "^4.17.21", - "ms": "^2.1.1", - "semver": "^7.3.8" - } - }, - "jsprim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", - "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "jsx-ast-utils": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", - "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - } - }, - "jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "dev": true, - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dev": true, - "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "karma-source-map-support": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", - "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", - "dev": true, - "requires": { - "source-map-support": "^0.5.5" - } - }, - "keygrip": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", - "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", - "dev": true, - "requires": { - "tsscmp": "1.0.6" - } - }, - "keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true - }, - "launch-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", - "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", - "dev": true, - "requires": { - "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" - } - }, - "lazy-ass": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", - "dev": true - }, - "lazy-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", - "dev": true, - "requires": { - "set-getter": "^0.1.0" - } - }, - "less": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", - "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", - "dev": true, - "requires": { - "copy-anything": "^2.0.1", - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "parse-node-version": "^1.0.1", - "source-map": "~0.6.0", - "tslib": "^2.3.0" - }, - "dependencies": { - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "optional": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, - "less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", - "dev": true, - "requires": { - "klona": "^2.0.4" - } - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "license-webpack-plugin": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", - "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", - "dev": true, - "requires": { - "webpack-sources": "^3.0.0" - } - }, - "lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true - }, - "lines-and-columns": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", - "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", - "dev": true - }, - "lint-staged": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.3.tgz", - "integrity": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==", - "dev": true, - "requires": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", - "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true - }, - "execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true - }, - "listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", - "dev": true, - "requires": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "requires": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - } - } - } - }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true - }, - "npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true - }, - "slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true - }, - "yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true - } - } - }, - "list-item": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", - "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", - "dev": true, - "requires": { - "expand-range": "^1.8.1", - "extend-shallow": "^2.0.1", - "is-number": "^2.1.0", - "repeat-string": "^1.5.2" - } - }, - "listr2": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", - "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", - "dev": true, - "requires": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.1", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "requires": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - } - } - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - } - } - }, - "loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true - }, - "loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lockfile": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz", - "integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==", - "dev": true, - "requires": { - "signal-exit": "^3.0.2" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true - }, - "lodash-id": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", - "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", - "dev": true - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", - "dev": true, - "peer": true - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", - "dev": true, - "peer": true - }, - "lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true, - "peer": true - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", - "dev": true, - "peer": true - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true - }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dev": true, - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dev": true, - "requires": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", - "dev": true, - "peer": true - }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - } - }, - "log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } - } - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lowdb": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", - "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.3", - "is-promise": "^2.1.0", - "lodash": "4", - "pify": "^3.0.0", - "steno": "^0.4.1" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true - } - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "make-fetch-happen": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz", - "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==", - "dev": true, - "requires": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - } - } - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "requires": { - "tmpl": "1.0.5" - } - }, - "markdown-link": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", - "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", - "dev": true - }, - "markdown-toc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", - "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", - "dev": true, - "requires": { - "concat-stream": "^1.5.2", - "diacritics-map": "^0.1.0", - "gray-matter": "^2.1.0", - "lazy-cache": "^2.0.2", - "list-item": "^1.1.1", - "markdown-link": "^0.1.1", - "minimist": "^1.2.0", - "mixin-deep": "^1.1.3", - "object.pick": "^1.2.0", - "remarkable": "^1.7.1", - "repeat-string": "^1.6.1", - "strip-color": "^0.1.0" - } - }, - "marked": { - "version": "9.1.6", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", - "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", - "dev": true, - "peer": true - }, - "marked-terminal": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", - "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", - "dev": true, - "peer": true, - "requires": { - "ansi-escapes": "^6.2.0", - "cardinal": "^2.1.1", - "chalk": "^5.3.0", - "cli-table3": "^0.6.3", - "node-emoji": "^2.1.3", - "supports-hyperlinks": "^3.0.0" - }, - "dependencies": { - "ansi-escapes": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", - "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", - "dev": true, - "peer": true, - "requires": { - "type-fest": "^3.0.0" - } - }, - "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "peer": true - }, - "type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", - "dev": true, - "peer": true - } - } - }, - "math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", - "dev": true - }, - "mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true - }, - "memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", - "dev": true, - "requires": { - "fs-monkey": "^1.0.4" - } - }, - "memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "dev": true - }, - "meow": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz", - "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==", - "dev": true - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "method-override": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", - "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", - "dev": true, - "requires": { - "debug": "3.1.0", - "methods": "~1.1.2", - "parseurl": "~1.3.2", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true - }, - "mini-css-extract-plugin": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz", - "integrity": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==", - "dev": true, - "requires": { - "schema-utils": "^4.0.0" - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true - }, - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-fetch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.3.tgz", - "integrity": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==", - "dev": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^5.0.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", - "dev": true, - "requires": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "requires": { - "minimist": "^1.2.6" - } - }, - "morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "requires": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - } - } - }, - "mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", - "dev": true, - "requires": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - } - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", - "dev": true, - "requires": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" - }, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", - "dev": true, - "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", - "dev": true, - "requires": { - "glob": "^6.0.1" - } - } - } - }, - "nanoclone": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", - "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==", - "dev": true - }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", - "dev": true - }, - "needle": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", - "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", - "dev": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "nerf-dart": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", - "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", - "dev": true, - "peer": true - }, - "nice-napi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", - "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", - "dev": true, - "optional": true, - "requires": { - "node-addon-api": "^3.0.0", - "node-gyp-build": "^4.2.2" - } - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", - "dev": true - }, - "node-addon-api": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", - "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", - "dev": true - }, - "node-emoji": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", - "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", - "dev": true, - "peer": true, - "requires": { - "@sindresorhus/is": "^4.6.0", - "char-regex": "^1.0.2", - "emojilib": "^2.4.0", - "skin-tone": "^2.0.0" - } - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - }, - "dependencies": { - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - } - } - }, - "node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true - }, - "node-gyp": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz", - "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^11.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", - "dev": true - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, - "nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", - "dev": true, - "requires": { - "abbrev": "^1.0.0" - } - }, - "normalize-package-data": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz", - "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==", - "dev": true, - "requires": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true - }, - "npm": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", - "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", - "dev": true, - "peer": true, - "requires": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^7.2.1", - "@npmcli/config": "^8.0.2", - "@npmcli/fs": "^3.1.0", - "@npmcli/map-workspaces": "^3.0.4", - "@npmcli/package-json": "^5.0.0", - "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.2", - "@sigstore/tuf": "^2.2.0", - "abbrev": "^2.0.0", - "archy": "~1.0.0", - "cacache": "^18.0.1", - "chalk": "^5.3.0", - "ci-info": "^4.0.0", - "cli-columns": "^4.0.0", - "cli-table3": "^0.6.3", - "columnify": "^1.6.0", - "fastest-levenshtein": "^1.0.16", - "fs-minipass": "^3.0.3", - "glob": "^10.3.10", - "graceful-fs": "^4.2.11", - "hosted-git-info": "^7.0.1", - "ini": "^4.1.1", - "init-package-json": "^6.0.0", - "is-cidr": "^5.0.3", - "json-parse-even-better-errors": "^3.0.1", - "libnpmaccess": "^8.0.1", - "libnpmdiff": "^6.0.3", - "libnpmexec": "^7.0.4", - "libnpmfund": "^5.0.1", - "libnpmhook": "^10.0.0", - "libnpmorg": "^6.0.1", - "libnpmpack": "^6.0.3", - "libnpmpublish": "^9.0.2", - "libnpmsearch": "^7.0.0", - "libnpmteam": "^6.0.0", - "libnpmversion": "^5.0.1", - "make-fetch-happen": "^13.0.0", - "minimatch": "^9.0.3", - "minipass": "^7.0.4", - "minipass-pipeline": "^1.2.4", - "ms": "^2.1.2", - "node-gyp": "^10.0.1", - "nopt": "^7.2.0", - "normalize-package-data": "^6.0.0", - "npm-audit-report": "^5.0.0", - "npm-install-checks": "^6.3.0", - "npm-package-arg": "^11.0.1", - "npm-pick-manifest": "^9.0.0", - "npm-profile": "^9.0.0", - "npm-registry-fetch": "^16.1.0", - "npm-user-validate": "^2.0.0", - "npmlog": "^7.0.1", - "p-map": "^4.0.0", - "pacote": "^17.0.5", - "parse-conflict-json": "^3.0.1", - "proc-log": "^3.0.0", - "qrcode-terminal": "^0.12.0", - "read": "^2.1.0", - "semver": "^7.5.4", - "spdx-expression-parse": "^3.0.1", - "ssri": "^10.0.5", - "strip-ansi": "^7.1.0", - "supports-color": "^9.4.0", - "tar": "^6.2.0", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "treeverse": "^3.0.0", - "validate-npm-package-name": "^5.0.0", - "which": "^4.0.0", - "write-file-atomic": "^5.0.1" - }, - "dependencies": { - "@colors/colors": { - "version": "1.5.0", - "bundled": true, - "dev": true, - "optional": true, - "peer": true - }, - "@isaacs/cliui": { - "version": "8.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "emoji-regex": { - "version": "9.2.2", - "bundled": true, - "dev": true, - "peer": true - }, - "string-width": { - "version": "5.1.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - } - } - }, - "@isaacs/string-locale-compare": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "peer": true - }, - "@npmcli/agent": { - "version": "2.2.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "agent-base": "^7.1.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" - } - }, - "@npmcli/arborist": { - "version": "7.2.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/fs": "^3.1.0", - "@npmcli/installed-package-contents": "^2.0.2", - "@npmcli/map-workspaces": "^3.0.2", - "@npmcli/metavuln-calculator": "^7.0.0", - "@npmcli/name-from-folder": "^2.0.0", - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/package-json": "^5.0.0", - "@npmcli/query": "^3.0.1", - "@npmcli/run-script": "^7.0.2", - "bin-links": "^4.0.1", - "cacache": "^18.0.0", - "common-ancestor-path": "^1.0.1", - "hosted-git-info": "^7.0.1", - "json-parse-even-better-errors": "^3.0.0", - "json-stringify-nice": "^1.1.4", - "minimatch": "^9.0.0", - "nopt": "^7.0.0", - "npm-install-checks": "^6.2.0", - "npm-package-arg": "^11.0.1", - "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", - "npmlog": "^7.0.1", - "pacote": "^17.0.4", - "parse-conflict-json": "^3.0.0", - "proc-log": "^3.0.0", - "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^1.0.2", - "read-package-json-fast": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^10.0.5", - "treeverse": "^3.0.0", - "walk-up-path": "^3.0.1" - } - }, - "@npmcli/config": { - "version": "8.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/map-workspaces": "^3.0.2", - "ci-info": "^4.0.0", - "ini": "^4.1.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", - "read-package-json-fast": "^3.0.2", - "semver": "^7.3.5", - "walk-up-path": "^3.0.1" - } - }, - "@npmcli/disparity-colors": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^4.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "color-convert": "^2.0.1" - } - } - } - }, - "@npmcli/fs": { - "version": "3.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "semver": "^7.3.5" - } - }, - "@npmcli/git": { - "version": "5.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/promise-spawn": "^7.0.0", - "lru-cache": "^10.0.1", - "npm-pick-manifest": "^9.0.0", - "proc-log": "^3.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^4.0.0" - } - }, - "@npmcli/installed-package-contents": { - "version": "2.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - } - }, - "@npmcli/map-workspaces": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/name-from-folder": "^2.0.0", - "glob": "^10.2.2", - "minimatch": "^9.0.0", - "read-package-json-fast": "^3.0.0" - } - }, - "@npmcli/metavuln-calculator": { - "version": "7.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "cacache": "^18.0.0", - "json-parse-even-better-errors": "^3.0.0", - "pacote": "^17.0.0", - "semver": "^7.3.5" - } - }, - "@npmcli/name-from-folder": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "@npmcli/node-gyp": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "@npmcli/package-json": { - "version": "5.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/git": "^5.0.0", - "glob": "^10.2.2", - "hosted-git-info": "^7.0.0", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.5.3" - } - }, - "@npmcli/promise-spawn": { - "version": "7.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "which": "^4.0.0" - } - }, - "@npmcli/query": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "postcss-selector-parser": "^6.0.10" - } - }, - "@npmcli/run-script": { - "version": "7.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^7.0.0", - "node-gyp": "^10.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^4.0.0" - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "bundled": true, - "dev": true, - "optional": true, - "peer": true - }, - "@sigstore/bundle": { - "version": "2.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@sigstore/protobuf-specs": "^0.2.1" - } - }, - "@sigstore/protobuf-specs": { - "version": "0.2.1", - "bundled": true, - "dev": true, - "peer": true - }, - "@sigstore/sign": { - "version": "2.2.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@sigstore/bundle": "^2.1.0", - "@sigstore/protobuf-specs": "^0.2.1", - "make-fetch-happen": "^13.0.0" - } - }, - "@sigstore/tuf": { - "version": "2.2.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@sigstore/protobuf-specs": "^0.2.1", - "tuf-js": "^2.1.0" - } - }, - "@tufjs/canonical-json": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "@tufjs/models": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.3" - } - }, - "abbrev": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "abort-controller": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "agent-base": { - "version": "7.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "debug": "^4.3.4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ansi-regex": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "ansi-styles": { - "version": "6.2.1", - "bundled": true, - "dev": true, - "peer": true - }, - "aproba": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "archy": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "are-we-there-yet": { - "version": "4.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^4.1.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "peer": true - }, - "base64-js": { - "version": "1.5.1", - "bundled": true, - "dev": true, - "peer": true - }, - "bin-links": { - "version": "4.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "cmd-shim": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "read-cmd-shim": "^4.0.0", - "write-file-atomic": "^5.0.0" - } - }, - "binary-extensions": { - "version": "2.2.0", - "bundled": true, - "dev": true, - "peer": true - }, - "brace-expansion": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "buffer": { - "version": "6.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "builtins": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "semver": "^7.0.0" - } - }, - "cacache": { - "version": "18.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", - "minipass": "^7.0.3", - "minipass-collect": "^2.0.1", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - } - }, - "chalk": { - "version": "5.3.0", - "bundled": true, - "dev": true, - "peer": true - }, - "chownr": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "ci-info": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "cidr-regex": { - "version": "4.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ip-regex": "^5.0.0" - } - }, - "clean-stack": { - "version": "2.2.0", - "bundled": true, - "dev": true, - "peer": true - }, - "cli-columns": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "strip-ansi": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "cli-table3": { - "version": "0.6.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@colors/colors": "1.5.0", - "string-width": "^4.2.0" - } - }, - "clone": { - "version": "1.0.4", - "bundled": true, - "dev": true, - "peer": true - }, - "cmd-shim": { - "version": "6.0.2", - "bundled": true, - "dev": true, - "peer": true - }, - "color-convert": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "bundled": true, - "dev": true, - "peer": true - }, - "color-support": { - "version": "1.1.3", - "bundled": true, - "dev": true, - "peer": true - }, - "columnify": { - "version": "1.6.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "strip-ansi": "^6.0.1", - "wcwidth": "^1.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "strip-ansi": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "common-ancestor-path": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "peer": true - }, - "cross-spawn": { - "version": "7.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "dependencies": { - "which": { - "version": "2.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "cssesc": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "debug": { - "version": "4.3.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ms": "2.1.2" - }, - "dependencies": { - "ms": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "peer": true - } - } - }, - "defaults": { - "version": "1.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "clone": "^1.0.2" - } - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "diff": { - "version": "5.1.0", - "bundled": true, - "dev": true, - "peer": true - }, - "eastasianwidth": { - "version": "0.2.0", - "bundled": true, - "dev": true, - "peer": true - }, - "emoji-regex": { - "version": "8.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "encoding": { - "version": "0.1.13", - "bundled": true, - "dev": true, - "optional": true, - "peer": true, - "requires": { - "iconv-lite": "^0.6.2" - } - }, - "env-paths": { - "version": "2.2.1", - "bundled": true, - "dev": true, - "peer": true - }, - "err-code": { - "version": "2.0.3", - "bundled": true, - "dev": true, - "peer": true - }, - "event-target-shim": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "events": { - "version": "3.3.0", - "bundled": true, - "dev": true, - "peer": true - }, - "exponential-backoff": { - "version": "3.1.1", - "bundled": true, - "dev": true, - "peer": true - }, - "fastest-levenshtein": { - "version": "1.0.16", - "bundled": true, - "dev": true, - "peer": true - }, - "foreground-child": { - "version": "3.1.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - } - }, - "fs-minipass": { - "version": "3.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^7.0.3" - } - }, - "function-bind": { - "version": "1.1.2", - "bundled": true, - "dev": true, - "peer": true - }, - "gauge": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^4.0.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "strip-ansi": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "glob": { - "version": "10.3.10", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - } - }, - "graceful-fs": { - "version": "4.2.11", - "bundled": true, - "dev": true, - "peer": true - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "hasown": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "function-bind": "^1.1.2" - } - }, - "hosted-git-info": { - "version": "7.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "lru-cache": "^10.0.1" - } - }, - "http-cache-semantics": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "peer": true - }, - "http-proxy-agent": { - "version": "7.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - } - }, - "https-proxy-agent": { - "version": "7.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, - "iconv-lite": { - "version": "0.6.3", - "bundled": true, - "dev": true, - "optional": true, - "peer": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "ieee754": { - "version": "1.2.1", - "bundled": true, - "dev": true, - "peer": true - }, - "ignore-walk": { - "version": "6.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minimatch": "^9.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "bundled": true, - "dev": true, - "peer": true - }, - "indent-string": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "ini": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "peer": true - }, - "init-package-json": { - "version": "6.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-package-arg": "^11.0.0", - "promzard": "^1.0.0", - "read": "^2.0.0", - "read-package-json": "^7.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "^5.0.0" - } - }, - "ip": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "ip-regex": { - "version": "5.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "is-cidr": { - "version": "5.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "cidr-regex": "4.0.3" - } - }, - "is-core-module": { - "version": "2.13.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "hasown": "^2.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "is-lambda": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "isexe": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "jackspeak": { - "version": "2.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, - "json-parse-even-better-errors": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "json-stringify-nice": { - "version": "1.1.4", - "bundled": true, - "dev": true, - "peer": true - }, - "jsonparse": { - "version": "1.3.1", - "bundled": true, - "dev": true, - "peer": true - }, - "just-diff": { - "version": "6.0.2", - "bundled": true, - "dev": true, - "peer": true - }, - "just-diff-apply": { - "version": "5.5.0", - "bundled": true, - "dev": true, - "peer": true - }, - "libnpmaccess": { - "version": "8.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-package-arg": "^11.0.1", - "npm-registry-fetch": "^16.0.0" - } - }, - "libnpmdiff": { - "version": "6.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/arborist": "^7.2.1", - "@npmcli/disparity-colors": "^3.0.0", - "@npmcli/installed-package-contents": "^2.0.2", - "binary-extensions": "^2.2.0", - "diff": "^5.1.0", - "minimatch": "^9.0.0", - "npm-package-arg": "^11.0.1", - "pacote": "^17.0.4", - "tar": "^6.2.0" - } - }, - "libnpmexec": { - "version": "7.0.5", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/arborist": "^7.2.1", - "@npmcli/run-script": "^7.0.2", - "ci-info": "^4.0.0", - "npm-package-arg": "^11.0.1", - "npmlog": "^7.0.1", - "pacote": "^17.0.4", - "proc-log": "^3.0.0", - "read": "^2.0.0", - "read-package-json-fast": "^3.0.2", - "semver": "^7.3.7", - "walk-up-path": "^3.0.1" - } - }, - "libnpmfund": { - "version": "5.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/arborist": "^7.2.1" - } - }, - "libnpmhook": { - "version": "10.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" - } - }, - "libnpmorg": { - "version": "6.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" - } - }, - "libnpmpack": { - "version": "6.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/arborist": "^7.2.1", - "@npmcli/run-script": "^7.0.2", - "npm-package-arg": "^11.0.1", - "pacote": "^17.0.4" - } - }, - "libnpmpublish": { - "version": "9.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ci-info": "^4.0.0", - "normalize-package-data": "^6.0.0", - "npm-package-arg": "^11.0.1", - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.7", - "sigstore": "^2.1.0", - "ssri": "^10.0.5" - } - }, - "libnpmsearch": { - "version": "7.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-registry-fetch": "^16.0.0" - } - }, - "libnpmteam": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" - } - }, - "libnpmversion": { - "version": "5.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/git": "^5.0.3", - "@npmcli/run-script": "^7.0.2", - "json-parse-even-better-errors": "^3.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.7" - } - }, - "lru-cache": { - "version": "10.1.0", - "bundled": true, - "dev": true, - "peer": true - }, - "make-fetch-happen": { - "version": "13.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/agent": "^2.0.0", - "cacache": "^18.0.0", - "http-cache-semantics": "^4.1.1", - "is-lambda": "^1.0.1", - "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "ssri": "^10.0.0" - } - }, - "minimatch": { - "version": "9.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minipass": { - "version": "7.0.4", - "bundled": true, - "dev": true, - "peer": true - }, - "minipass-collect": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^7.0.3" - } - }, - "minipass-fetch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "encoding": "^0.1.13", - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - } - }, - "minipass-flush": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-json-stream": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass-sized": { - "version": "1.0.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minizlib": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mkdirp": { - "version": "1.0.4", - "bundled": true, - "dev": true, - "peer": true - }, - "ms": { - "version": "2.1.3", - "bundled": true, - "dev": true, - "peer": true - }, - "mute-stream": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "negotiator": { - "version": "0.6.3", - "bundled": true, - "dev": true, - "peer": true - }, - "node-gyp": { - "version": "10.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^10.3.10", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^13.0.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^4.0.0" - } - }, - "nopt": { - "version": "7.2.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "abbrev": "^2.0.0" - } - }, - "normalize-package-data": { - "version": "6.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - }, - "npm-audit-report": { - "version": "5.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "npm-bundled": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-normalize-package-bin": "^3.0.0" - } - }, - "npm-install-checks": { - "version": "6.3.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "semver": "^7.1.1" - } - }, - "npm-normalize-package-bin": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "npm-package-arg": { - "version": "11.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "hosted-git-info": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" - } - }, - "npm-packlist": { - "version": "8.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ignore-walk": "^6.0.4" - } - }, - "npm-pick-manifest": { - "version": "9.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^11.0.0", - "semver": "^7.3.5" - } - }, - "npm-profile": { - "version": "9.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0" - } - }, - "npm-registry-fetch": { - "version": "16.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "make-fetch-happen": "^13.0.0", - "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^11.0.0", - "proc-log": "^3.0.0" - } - }, - "npm-user-validate": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "npmlog": { - "version": "7.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "are-we-there-yet": "^4.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^5.0.0", - "set-blocking": "^2.0.0" - } - }, - "p-map": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "pacote": { - "version": "17.0.5", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@npmcli/git": "^5.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.0", - "cacache": "^18.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^7.0.2", - "npm-package-arg": "^11.0.0", - "npm-packlist": "^8.0.0", - "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^7.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^2.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - } - }, - "parse-conflict-json": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "json-parse-even-better-errors": "^3.0.0", - "just-diff": "^6.0.0", - "just-diff-apply": "^5.2.0" - } - }, - "path-key": { - "version": "3.1.1", - "bundled": true, - "dev": true, - "peer": true - }, - "path-scurry": { - "version": "1.10.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - } - }, - "postcss-selector-parser": { - "version": "6.0.13", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "proc-log": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "process": { - "version": "0.11.10", - "bundled": true, - "dev": true, - "peer": true - }, - "promise-all-reject-late": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "promise-call-limit": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "peer": true - }, - "promise-inflight": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "promise-retry": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "promzard": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "read": "^2.0.0" - } - }, - "qrcode-terminal": { - "version": "0.12.0", - "bundled": true, - "dev": true, - "peer": true - }, - "read": { - "version": "2.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "mute-stream": "~1.0.0" - } - }, - "read-cmd-shim": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "read-package-json": { - "version": "7.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0" - } - }, - "read-package-json-fast": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - } - }, - "readable-stream": { - "version": "4.4.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - } - }, - "retry": { - "version": "0.12.0", - "bundled": true, - "dev": true, - "peer": true - }, - "safe-buffer": { - "version": "5.2.1", - "bundled": true, - "dev": true, - "peer": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "optional": true, - "peer": true - }, - "semver": { - "version": "7.5.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "shebang-command": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "signal-exit": { - "version": "4.1.0", - "bundled": true, - "dev": true, - "peer": true - }, - "sigstore": { - "version": "2.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@sigstore/bundle": "^2.1.0", - "@sigstore/protobuf-specs": "^0.2.1", - "@sigstore/sign": "^2.1.0", - "@sigstore/tuf": "^2.1.0" - } - }, - "smart-buffer": { - "version": "4.2.0", - "bundled": true, - "dev": true, - "peer": true - }, - "socks": { - "version": "2.7.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "8.0.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - } - }, - "spdx-correct": { - "version": "3.2.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "bundled": true, - "dev": true, - "peer": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.16", - "bundled": true, - "dev": true, - "peer": true - }, - "ssri": { - "version": "10.0.5", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^7.0.3" - } - }, - "string_decoder": { - "version": "1.3.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-width": { - "version": "4.2.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "strip-ansi": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "string-width-cjs": { - "version": "npm:string-width@4.2.3", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "strip-ansi": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "strip-ansi": { - "version": "7.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - } - } - }, - "supports-color": { - "version": "9.4.0", - "bundled": true, - "dev": true, - "peer": true - }, - "tar": { - "version": "6.2.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "fs-minipass": { - "version": "2.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "minipass": { - "version": "5.0.0", - "bundled": true, - "dev": true, - "peer": true - } - } - }, - "text-table": { - "version": "0.2.0", - "bundled": true, - "dev": true, - "peer": true - }, - "tiny-relative-date": { - "version": "1.3.0", - "bundled": true, - "dev": true, - "peer": true - }, - "treeverse": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true - }, - "tuf-js": { - "version": "2.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "@tufjs/models": "2.0.0", - "debug": "^4.3.4", - "make-fetch-happen": "^13.0.0" - } - }, - "unique-filename": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "unique-slug": "^4.0.0" - } - }, - "unique-slug": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "peer": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "validate-npm-package-name": { - "version": "5.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "builtins": "^5.0.0" - } - }, - "walk-up-path": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "wcwidth": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "which": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "isexe": "^3.1.1" - }, - "dependencies": { - "isexe": { - "version": "3.1.1", - "bundled": true, - "dev": true, - "peer": true - } - } - }, - "wide-align": { - "version": "1.1.5", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "wrap-ansi": { - "version": "8.1.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "dependencies": { - "emoji-regex": { - "version": "9.2.2", - "bundled": true, - "dev": true, - "peer": true - }, - "string-width": { - "version": "5.1.2", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - } - } - }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@7.0.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true - }, - "ansi-styles": { - "version": "4.3.0", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "write-file-atomic": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "peer": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" - } - }, - "yallist": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "peer": true - } - } - }, - "npm-bundled": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", - "dev": true, - "requires": { - "npm-normalize-package-bin": "^3.0.0" - } - }, - "npm-install-checks": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.1.1.tgz", - "integrity": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==", - "dev": true, - "requires": { - "semver": "^7.1.1" - } - }, - "npm-normalize-package-bin": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", - "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", - "dev": true - }, - "npm-package-arg": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz", - "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==", - "dev": true, - "requires": { - "hosted-git-info": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" - } - }, - "npm-packlist": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz", - "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==", - "dev": true, - "requires": { - "ignore-walk": "^6.0.0" - } - }, - "npm-pick-manifest": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz", - "integrity": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==", - "dev": true, - "requires": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", - "semver": "^7.3.5" - } - }, - "npm-registry-fetch": { - "version": "14.0.5", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz", - "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==", - "dev": true, - "requires": { - "make-fetch-happen": "^11.0.0", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", - "proc-log": "^3.0.0" - } - }, - "npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true - }, - "pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", - "dev": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", - "dev": true, - "requires": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - } - }, - "nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dev": true, - "requires": { - "boolbase": "^1.0.0" - } - }, - "nwsapi": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.5.tgz", - "integrity": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==", - "dev": true - }, - "nx": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/nx/-/nx-16.1.1.tgz", - "integrity": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==", - "dev": true, - "requires": { - "@nrwl/tao": "16.1.1", - "@nx/nx-darwin-arm64": "16.1.1", - "@nx/nx-darwin-x64": "16.1.1", - "@nx/nx-linux-arm-gnueabihf": "16.1.1", - "@nx/nx-linux-arm64-gnu": "16.1.1", - "@nx/nx-linux-arm64-musl": "16.1.1", - "@nx/nx-linux-x64-gnu": "16.1.1", - "@nx/nx-linux-x64-musl": "16.1.1", - "@nx/nx-win32-arm64-msvc": "16.1.1", - "@nx/nx-win32-x64-msvc": "16.1.1", - "@parcel/watcher": "2.0.4", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "^3.0.0-rc.18", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.0.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^7.0.2", - "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.0.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.0", - "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.3.0", - "v8-compile-cache": "2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "nx-release": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/nx-release/-/nx-release-3.1.6.tgz", - "integrity": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==", - "dev": true, - "requires": { - "@nx/devkit": "16.5.0", - "chalk": "^4.1.2", - "inquirer": "^8.2.5", - "ora": "^5.4.1", - "process": "0.11.10" - }, - "dependencies": { - "@nrwl/devkit": { - "version": "16.5.0", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.5.0.tgz", - "integrity": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==", - "dev": true, - "requires": { - "@nx/devkit": "16.5.0" - } - }, - "@nx/devkit": { - "version": "16.5.0", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-16.5.0.tgz", - "integrity": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==", - "dev": true, - "requires": { - "@nrwl/devkit": "16.5.0", - "ejs": "^3.1.7", - "ignore": "^5.0.4", - "semver": "7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true - }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "requires": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "on-exit-leak-free": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", - "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - } - }, - "opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", - "dev": true - }, - "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - } - }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - } - }, - "os-filter-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", - "dev": true, - "requires": { - "arch": "^2.1.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true - }, - "ospath": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", - "dev": true - }, - "p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "dev": true - }, - "p-each-series": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", - "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", - "dev": true, - "peer": true - }, - "p-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", - "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", - "dev": true, - "peer": true, - "requires": { - "p-map": "^5.1.0" - }, - "dependencies": { - "aggregate-error": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", - "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", - "dev": true, - "peer": true, - "requires": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - } - }, - "clean-stack": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", - "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "5.0.0" - } - }, - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "peer": true - }, - "indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "peer": true - }, - "p-map": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", - "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", - "dev": true, - "peer": true, - "requires": { - "aggregate-error": "^4.0.0" - } - } - } - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true - }, - "p-is-promise": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", - "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - }, - "dependencies": { - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - } - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-reduce": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", - "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", - "dev": true - }, - "p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", - "dev": true, - "requires": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "dependencies": { - "retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true - } - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "pacote": { - "version": "15.1.3", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz", - "integrity": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==", - "dev": true, - "requires": { - "@npmcli/git": "^4.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^5.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^1.3.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - } - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "dependencies": { - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - } - } - }, - "parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true - }, - "parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "devOptional": true, - "requires": { - "entities": "^4.4.0" - }, - "dependencies": { - "entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "devOptional": true - } - } - }, - "parse5-html-rewriting-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz", - "integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==", - "dev": true, - "requires": { - "entities": "^4.3.0", - "parse5": "^7.0.0", - "parse5-sax-parser": "^7.0.0" - }, - "dependencies": { - "entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true - } - } - }, - "parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", - "dev": true, - "requires": { - "parse5": "^6.0.1" - }, - "dependencies": { - "parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - } - } - }, - "parse5-sax-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", - "integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==", - "dev": true, - "requires": { - "parse5": "^7.0.0" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "path-scurry": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz", - "integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==", - "dev": true, - "requires": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2" - }, - "dependencies": { - "lru-cache": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz", - "integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==", - "dev": true - } - } - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "peek-readable": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", - "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==", - "dev": true - }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", - "dev": true - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true - }, - "pino": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", - "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==", - "dev": true, - "requires": { - "atomic-sleep": "^1.0.0", - "fast-redact": "^3.0.0", - "on-exit-leak-free": "^0.2.0", - "pino-abstract-transport": "v0.5.0", - "pino-std-serializers": "^4.0.0", - "process-warning": "^1.0.0", - "quick-format-unescaped": "^4.0.3", - "real-require": "^0.1.0", - "safe-stable-stringify": "^2.1.0", - "sonic-boom": "^2.2.1", - "thread-stream": "^0.15.1" - }, - "dependencies": { - "pino-abstract-transport": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz", - "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==", - "dev": true, - "requires": { - "duplexify": "^4.1.2", - "split2": "^4.0.0" - } - }, - "sonic-boom": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz", - "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==", - "dev": true, - "requires": { - "atomic-sleep": "^1.0.0" - } - } - } - }, - "pino-abstract-transport": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", - "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", - "dev": true, - "requires": { - "readable-stream": "^4.0.0", - "split2": "^4.0.0" - }, - "dependencies": { - "buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "readable-stream": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.4.1.tgz", - "integrity": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==", - "dev": true, - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10" - } - } - } - }, - "pino-std-serializers": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", - "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==", - "dev": true - }, - "pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true - }, - "piscina": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", - "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", - "dev": true, - "requires": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0", - "nice-napi": "^1.0.2" - } - }, - "pkg-conf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", - "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", - "dev": true, - "requires": { - "find-up": "^3.0.0", - "load-json-file": "^5.2.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "load-json-file": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", - "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.15", - "parse-json": "^4.0.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0", - "type-fest": "^0.3.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "type-fest": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", - "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", - "dev": true - } - } - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "pkginfo": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", - "integrity": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==", - "dev": true - }, - "please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", - "dev": true, - "requires": { - "semver-compare": "^1.0.0" - } - }, - "pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", - "dev": true - }, - "portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", - "dev": true, - "requires": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, - "dependencies": { - "async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - } - }, - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "postcss": { - "version": "8.4.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", - "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-calc": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", - "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-colormin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", - "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-convert-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", - "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-discard-comments": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", - "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", - "dev": true, - "requires": {} - }, - "postcss-discard-duplicates": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", - "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", - "dev": true, - "requires": {} - }, - "postcss-discard-empty": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", - "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", - "dev": true, - "requires": {} - }, - "postcss-discard-overridden": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", - "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", - "dev": true, - "requires": {} - }, - "postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - } - }, - "postcss-loader": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.2.4.tgz", - "integrity": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==", - "dev": true, - "requires": { - "cosmiconfig": "^8.1.3", - "cosmiconfig-typescript-loader": "^4.3.0", - "klona": "^2.0.6", - "semver": "^7.3.8" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "cosmiconfig": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", - "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", - "dev": true, - "requires": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" - } - }, - "cosmiconfig-typescript-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", - "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", - "dev": true, - "requires": {} - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } - } - }, - "postcss-merge-longhand": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", - "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.0" - } - }, - "postcss-merge-rules": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", - "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.0", - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-minify-font-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", - "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-gradients": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", - "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", - "dev": true, - "requires": { - "colord": "^2.9.1", - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-params": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", - "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", - "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true, - "requires": {} - }, - "postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.4" - } - }, - "postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0" - } - }, - "postcss-normalize-charset": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", - "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", - "dev": true, - "requires": {} - }, - "postcss-normalize-display-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", - "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-positions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", - "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-repeat-style": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", - "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-string": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", - "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-timing-functions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", - "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-unicode": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", - "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", - "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-whitespace": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", - "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-ordered-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", - "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", - "dev": true, - "requires": { - "cssnano-utils": "^4.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-reduce-initial": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", - "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" - } - }, - "postcss-reduce-transforms": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", - "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "postcss-svgo": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", - "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0", - "svgo": "^3.0.2" - } - }, - "postcss-unique-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", - "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true - }, - "pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true - }, - "pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - } - } - }, - "proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", - "dev": true - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "process-warning": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz", - "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dev": true, - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - }, - "dependencies": { - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true - } - } - }, - "property-expr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", - "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==", - "dev": true - }, - "proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true, - "peer": true - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "proxy-from-env": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", - "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", - "dev": true - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "dev": true - }, - "psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", - "dev": true - }, - "qs": { - "version": "6.10.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", - "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", - "dev": true - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true - }, - "randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", - "dev": true, - "requires": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "peer": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "peer": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "peer": true - } - } - }, - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "requires": { - "pify": "^2.3.0" - } - }, - "read-package-json": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz", - "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==", - "dev": true, - "requires": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", - "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2", - "path-scurry": "^1.10.0" - } - }, - "json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true - }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", - "dev": true, - "requires": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "dependencies": { - "json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true - } - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "dependencies": { - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "read-pkg-up": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", - "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", - "dev": true, - "requires": { - "find-up-simple": "^1.0.0", - "read-pkg": "^9.0.0", - "type-fest": "^4.6.0" - }, - "dependencies": { - "hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", - "dev": true, - "requires": { - "lru-cache": "^10.0.1" - } - }, - "lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true - }, - "normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", - "dev": true, - "requires": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - } - }, - "parse-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", - "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.13", - "index-to-position": "^0.1.2", - "type-fest": "^4.7.1" - } - }, - "read-pkg": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", - "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", - "dev": true, - "requires": { - "@types/normalize-package-data": "^2.4.3", - "normalize-package-data": "^6.0.0", - "parse-json": "^8.0.0", - "type-fest": "^4.6.0", - "unicorn-magic": "^0.1.0" - } - }, - "type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", - "dev": true - } - } - }, - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", - "dev": true, - "requires": { - "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "real-require": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz", - "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==", - "dev": true - }, - "redeyed": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", - "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", - "dev": true, - "peer": true, - "requires": { - "esprima": "~4.0.0" - } - }, - "reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", - "dev": true - }, - "regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dev": true, - "requires": { - "regenerate": "^1.4.2" - } - }, - "regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.8.4" - } - }, - "regex-parser": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", - "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", - "dev": true - }, - "regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - } - }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, - "requires": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - } - }, - "registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", - "dev": true, - "peer": true, - "requires": { - "@pnpm/npm-conf": "^2.1.0" - } - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true - } - } - }, - "remarkable": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", - "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", - "dev": true, - "requires": { - "argparse": "^1.0.10", - "autolinker": "~0.28.0" - } - }, - "repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "dev": true - }, - "replace-json-property": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/replace-json-property/-/replace-json-property-1.9.0.tgz", - "integrity": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "commander": "^2.19.0", - "jsonfile": "^5.0.0" - }, - "dependencies": { - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "jsonfile": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz", - "integrity": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^0.1.2" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - } - } - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "dev": true - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true - } - } - }, - "request-progress": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", - "dev": true, - "requires": { - "throttleit": "^1.0.0" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, - "resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "requires": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, - "resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "resolve-url-loader": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", - "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", - "dev": true, - "requires": { - "adjust-sourcemap-loader": "^4.0.0", - "convert-source-map": "^1.7.0", - "loader-utils": "^2.0.0", - "postcss": "^8.2.14", - "source-map": "0.6.1" - }, - "dependencies": { - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", - "dev": true - }, - "responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dev": true, - "requires": { - "lowercase-keys": "^2.0.0" - } - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "rollup": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.26.0.tgz", - "integrity": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==", - "dev": true, - "requires": { - "fsevents": "~2.3.2" - } - }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "requires": { - "tslib": "^2.1.0" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - } - }, - "safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "sass": { - "version": "1.62.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", - "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", - "dev": true, - "requires": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - } - }, - "sass-loader": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.2.tgz", - "integrity": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==", - "dev": true, - "requires": { - "klona": "^2.0.6", - "neo-async": "^2.6.2" - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "dev": true, - "requires": { - "xmlchars": "^2.2.0" - } - }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } - }, - "secure-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", - "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", - "dev": true - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "dev": true - }, - "selfsigned": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", - "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", - "dev": true, - "requires": { - "node-forge": "^1" - } - }, - "semantic-release": { - "version": "22.0.12", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", - "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", - "dev": true, - "peer": true, - "requires": { - "@semantic-release/commit-analyzer": "^11.0.0", - "@semantic-release/error": "^4.0.0", - "@semantic-release/github": "^9.0.0", - "@semantic-release/npm": "^11.0.0", - "@semantic-release/release-notes-generator": "^12.0.0", - "aggregate-error": "^5.0.0", - "cosmiconfig": "^8.0.0", - "debug": "^4.0.0", - "env-ci": "^10.0.0", - "execa": "^8.0.0", - "figures": "^6.0.0", - "find-versions": "^5.1.0", - "get-stream": "^6.0.0", - "git-log-parser": "^1.2.0", - "hook-std": "^3.0.0", - "hosted-git-info": "^7.0.0", - "import-from-esm": "^1.3.1", - "lodash-es": "^4.17.21", - "marked": "^9.0.0", - "marked-terminal": "^6.0.0", - "micromatch": "^4.0.2", - "p-each-series": "^3.0.0", - "p-reduce": "^3.0.0", - "read-pkg-up": "^11.0.0", - "resolve-from": "^5.0.0", - "semver": "^7.3.2", - "semver-diff": "^4.0.0", - "signale": "^1.2.1", - "yargs": "^17.5.1" - }, - "dependencies": { - "@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "peer": true - }, - "aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "peer": true, - "requires": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "peer": true - }, - "clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "5.0.0" - } - }, - "cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "peer": true, - "requires": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - } - }, - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "peer": true - }, - "execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "peer": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "dependencies": { - "get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "peer": true - } - } - }, - "figures": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", - "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", - "dev": true, - "peer": true, - "requires": { - "is-unicode-supported": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "peer": true - }, - "hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", - "dev": true, - "peer": true, - "requires": { - "lru-cache": "^10.0.1" - } - }, - "human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "peer": true - }, - "indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "peer": true - }, - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "peer": true - }, - "is-unicode-supported": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", - "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", - "dev": true, - "peer": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "peer": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", - "dev": true, - "peer": true - }, - "mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "peer": true - }, - "npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "peer": true, - "requires": { - "path-key": "^4.0.0" - } - }, - "onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "peer": true, - "requires": { - "mimic-fn": "^4.0.0" - } - }, - "p-reduce": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", - "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", - "dev": true, - "peer": true - }, - "path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "peer": true - }, - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "peer": true - }, - "strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "peer": true - } - } - }, - "semver": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", - "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "dev": true - }, - "semver-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", - "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", - "dev": true, - "peer": true, - "requires": { - "semver": "^7.3.5" - } - }, - "semver-regex": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", - "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", - "dev": true - }, - "semver-truncate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-3.0.0.tgz", - "integrity": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==", - "dev": true, - "requires": { - "semver": "^7.3.5" - } - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", - "dev": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "dev": true, - "requires": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "server-destroy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", - "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", - "dev": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "set-getter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", - "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", - "dev": true, - "requires": { - "to-object-path": "^0.3.0" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "signale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", - "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", - "dev": true, - "peer": true, - "requires": { - "chalk": "^2.3.2", - "figures": "^2.0.0", - "pkg-conf": "^2.1.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "peer": true - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", - "dev": true, - "peer": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dev": true, - "peer": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "peer": true - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "dev": true, - "peer": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "peer": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dev": true, - "peer": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "dev": true, - "peer": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "peer": true - }, - "pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", - "dev": true, - "peer": true, - "requires": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "peer": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "sigstore": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.7.0.tgz", - "integrity": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==", - "dev": true, - "requires": { - "@sigstore/protobuf-specs": "^0.1.0", - "@sigstore/tuf": "^1.0.1", - "make-fetch-happen": "^11.0.1" - } - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "skin-tone": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", - "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", - "dev": true, - "peer": true, - "requires": { - "unicode-emoji-modifier-base": "^1.0.0" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - } - } - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", - "dev": true, - "requires": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" - } - }, - "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", - "dev": true, - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - } - }, - "sonic-boom": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", - "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", - "dev": true, - "requires": { - "atomic-sleep": "^1.0.0" - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", - "dev": true, - "requires": { - "is-plain-obj": "^1.0.0" - } - }, - "sort-keys-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", - "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", - "dev": true, - "requires": { - "sort-keys": "^1.0.0" - } - }, - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - }, - "source-map-explorer": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/source-map-explorer/-/source-map-explorer-2.5.3.tgz", - "integrity": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==", - "dev": true, - "requires": { - "btoa": "^1.2.1", - "chalk": "^4.1.0", - "convert-source-map": "^1.7.0", - "ejs": "^3.1.5", - "escape-html": "^1.0.3", - "glob": "^7.1.6", - "gzip-size": "^6.0.0", - "lodash": "^4.17.20", - "open": "^7.3.1", - "source-map": "^0.7.4", - "temp": "^0.9.4", - "yargs": "^16.2.0" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "dev": true, - "requires": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - } - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } - } - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true - }, - "source-map-loader": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", - "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", - "dev": true, - "requires": { - "abab": "^2.0.6", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "dev": true - }, - "spawn-error-forwarder": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", - "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", - "dev": true, - "peer": true - }, - "spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true - }, - "spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - } - }, - "spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "dev": true - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.4.tgz", - "integrity": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==", - "dev": true, - "requires": { - "minipass": "^5.0.0" - } - }, - "stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", - "dev": true, - "requires": { - "escape-string-regexp": "^2.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true - } - } - }, - "standard": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", - "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", - "dev": true, - "requires": { - "eslint": "^8.41.0", - "eslint-config-standard": "17.1.0", - "eslint-config-standard-jsx": "^11.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-n": "^15.7.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react": "^7.32.2", - "standard-engine": "^15.0.0", - "version-guard": "^1.1.1" - }, - "dependencies": { - "@eslint/eslintrc": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", - "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@humanwhocodes/config-array": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", - "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "eslint": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", - "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.1.0", - "@eslint/js": "8.44.0", - "@humanwhocodes/config-array": "^0.11.10", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.1", - "espree": "^9.6.0", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, - "standard-engine": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", - "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", - "dev": true, - "requires": { - "get-stdin": "^8.0.0", - "minimist": "^1.2.6", - "pkg-conf": "^3.1.0", - "xdg-basedir": "^4.0.0" - } - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "steno": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", - "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.3" - } - }, - "stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "requires": { - "internal-slot": "^1.0.4" - } - }, - "stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", - "dev": true, - "peer": true, - "requires": { - "duplexer2": "~0.1.0", - "readable-stream": "^2.0.2" - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true - }, - "string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - } - } - }, - "string-width-cjs": { - "version": "npm:string-width@4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - } - } - }, - "string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - } - }, - "string.prototype.padend": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz", - "integrity": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true - }, - "strip-color": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", - "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", - "dev": true - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "strip-outer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-2.0.0.tgz", - "integrity": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==", - "dev": true - }, - "strong-log-transformer": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", - "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", - "dev": true, - "requires": { - "duplexer": "^0.1.1", - "minimist": "^1.2.0", - "through": "^2.3.4" - } - }, - "strtok3": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", - "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", - "dev": true, - "requires": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - } - }, - "style-loader": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", - "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", - "dev": true, - "requires": {} - }, - "stylehacks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", - "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - } - }, - "stylus": { - "version": "0.59.0", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.59.0.tgz", - "integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==", - "dev": true, - "requires": { - "@adobe/css-tools": "^4.0.1", - "debug": "^4.3.2", - "glob": "^7.1.6", - "sax": "~1.2.4", - "source-map": "^0.7.3" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "stylus-loader": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.1.3.tgz", - "integrity": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==", - "dev": true, - "requires": { - "fast-glob": "^3.2.12", - "normalize-path": "^3.0.0" - }, - "dependencies": { - "fast-glob": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz", - "integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - } - } - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-hyperlinks": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", - "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", - "dev": true, - "peer": true, - "requires": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "dependencies": { - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "peer": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "svgo": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", - "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", - "dev": true, - "requires": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^5.1.0", - "css-tree": "^2.2.1", - "csso": "^5.0.5", - "picocolors": "^1.0.0" - }, - "dependencies": { - "css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - } - }, - "dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "requires": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - } - }, - "domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dev": true, - "requires": { - "domelementtype": "^2.3.0" - } - }, - "domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dev": true, - "requires": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - } - }, - "entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true - } - } - }, - "symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", - "dev": true - }, - "symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - }, - "tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "temp": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", - "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", - "dev": true, - "requires": { - "mkdirp": "^0.5.1", - "rimraf": "~2.6.2" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "dev": true, - "peer": true - }, - "tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dev": true, - "peer": true, - "requires": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "dependencies": { - "is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "peer": true - }, - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "peer": true - } - } - }, - "terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", - "dev": true, - "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "dependencies": { - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - } - } - }, - "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "requires": {} - }, - "jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "text-extensions": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", - "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==", - "dev": true - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "thread-stream": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", - "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==", - "dev": true, - "requires": { - "real-require": "^0.1.0" - } - }, - "throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "dev": true - }, - "tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "requires": { - "rimraf": "^3.0.0" - } - }, - "tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - }, - "dependencies": { - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - } - } - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true - }, - "token-types": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", - "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", - "dev": true, - "requires": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - } - }, - "toml": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", - "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", - "dev": true - }, - "toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", - "dev": true - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - }, - "traverse": { - "version": "0.6.7", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", - "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", - "dev": true, - "peer": true - }, - "tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true - }, - "trim-repeated": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-2.0.0.tgz", - "integrity": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==", - "dev": true, - "requires": { - "escape-string-regexp": "^5.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true - } - } - }, - "ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", - "dev": true, - "requires": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "^7.5.3", - "yargs-parser": "^21.0.1" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "ts-loader": { - "version": "9.4.4", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", - "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - } - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - } - }, - "tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dev": true, - "requires": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - } - } - }, - "tsconfig-paths-webpack-plugin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.0.tgz", - "integrity": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.0.0" - } - }, - "tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" - }, - "tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "dev": true - }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } - } - }, - "tuf-js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz", - "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==", - "dev": true, - "requires": { - "@tufjs/models": "1.0.4", - "debug": "^4.3.4", - "make-fetch-happen": "^11.1.1" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, - "typanion": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.13.0.tgz", - "integrity": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==", - "dev": true - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true - }, - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - } - }, - "typed-assert": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", - "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", - "dev": true - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", - "dev": true - }, - "uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "dev": true, - "optional": true - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - } - }, - "unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true - }, - "unicode-emoji-modifier-base": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", - "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", - "dev": true, - "peer": true - }, - "unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "requires": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true - }, - "unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true - }, - "unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "dev": true - }, - "union": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", - "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", - "dev": true, - "requires": { - "qs": "^6.4.0" - } - }, - "unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", - "dev": true, - "requires": { - "unique-slug": "^4.0.0" - } - }, - "unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dev": true, - "peer": true, - "requires": { - "crypto-random-string": "^4.0.0" - } - }, - "universal-user-agent": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", - "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", - "dev": true, - "peer": true - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "unix-crypt-td-js": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", - "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", - "dev": true - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true - }, - "untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", - "dev": true - }, - "url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - } - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", - "dev": true, - "requires": { - "builtins": "^5.0.0" - } - }, - "validator": { - "version": "13.9.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz", - "integrity": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==", - "dev": true - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true - }, - "verdaccio": { - "version": "5.25.0", - "resolved": "https://registry.npmjs.org/verdaccio/-/verdaccio-5.25.0.tgz", - "integrity": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==", - "dev": true, - "requires": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/local-storage": "10.3.3", - "@verdaccio/logger-7": "6.0.0-6-next.16", - "@verdaccio/middleware": "6.0.0-6-next.50", - "@verdaccio/search": "6.0.0-6-next.2", - "@verdaccio/signature": "6.0.0-6-next.2", - "@verdaccio/streams": "10.2.1", - "@verdaccio/tarball": "11.0.0-6-next.40", - "@verdaccio/ui-theme": "6.0.0-6-next.71", - "@verdaccio/url": "11.0.0-6-next.37", - "@verdaccio/utils": "6.0.0-6-next.39", - "async": "3.2.4", - "body-parser": "1.20.2", - "clipanion": "3.2.0", - "compression": "1.7.4", - "cookies": "0.8.0", - "cors": "2.8.5", - "debug": "^4.3.4", - "envinfo": "7.8.1", - "express": "4.18.2", - "express-rate-limit": "5.5.1", - "fast-safe-stringify": "2.1.1", - "handlebars": "4.7.7", - "js-yaml": "4.1.0", - "JSONStream": "1.3.5", - "jsonwebtoken": "9.0.0", - "kleur": "4.1.5", - "lodash": "4.17.21", - "lru-cache": "7.18.3", - "mime": "3.0.0", - "mkdirp": "1.0.4", - "mv": "2.1.1", - "pkginfo": "0.4.1", - "request": "2.88.2", - "semver": "7.5.1", - "validator": "13.9.0", - "verdaccio-audit": "11.0.0-6-next.34", - "verdaccio-htpasswd": "11.0.0-6-next.41" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "verdaccio-audit": { - "version": "11.0.0-6-next.34", - "resolved": "https://registry.npmjs.org/verdaccio-audit/-/verdaccio-audit-11.0.0-6-next.34.tgz", - "integrity": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==", + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], "dev": true, - "requires": { - "@verdaccio/config": "6.0.0-6-next.71", - "@verdaccio/core": "6.0.0-6-next.71", - "express": "4.18.2", - "https-proxy-agent": "5.0.1", - "node-fetch": "cjs" + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "verdaccio-htpasswd": { - "version": "11.0.0-6-next.41", - "resolved": "https://registry.npmjs.org/verdaccio-htpasswd/-/verdaccio-htpasswd-11.0.0-6-next.41.tgz", - "integrity": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==", + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], "dev": true, - "requires": { - "@verdaccio/core": "6.0.0-6-next.71", - "@verdaccio/file-locking": "11.0.0-6-next.7", - "apache-md5": "1.1.8", - "bcryptjs": "2.4.3", - "core-js": "3.30.2", - "debug": "4.3.4", - "http-errors": "2.0.0", - "unix-crypt-td-js": "1.1.4" - }, - "dependencies": { - "@verdaccio/file-locking": { - "version": "11.0.0-6-next.7", - "resolved": "https://registry.npmjs.org/@verdaccio/file-locking/-/file-locking-11.0.0-6-next.7.tgz", - "integrity": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==", - "dev": true, - "requires": { - "lockfile": "1.0.4" - } - } + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" } }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true - } + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "version-guard": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", - "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", - "dev": true + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], "dev": true, - "requires": { - "esbuild": "^0.17.5", - "fsevents": "~2.3.2", - "postcss": "^8.4.23", - "rollup": "^3.21.0" + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, - "w3c-xmlserializer": { + "node_modules/w3c-xmlserializer": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dev": true, - "requires": { + "dependencies": { "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" } }, - "walker": { + "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "requires": { + "dependencies": { "makeerror": "1.0.12" } }, - "watchpack": { + "node_modules/watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, - "requires": { + "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "wbuf": { + "node_modules/wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, - "requires": { + "dependencies": { "minimalistic-assert": "^1.0.0" } }, - "wcwidth": { + "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, - "requires": { + "dependencies": { "defaults": "^1.0.3" } }, - "webidl-conversions": { + "node_modules/webidl-conversions": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true + "dev": true, + "engines": { + "node": ">=12" + } }, - "webpack": { - "version": "5.80.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", - "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", + "node_modules/webpack": { + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", "dev": true, - "requires": { + "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.0", "@webassemblyjs/ast": "^1.11.5", "@webassemblyjs/wasm-edit": "^1.11.5", "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", + "enhanced-resolve": "^5.15.0", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", @@ -54318,93 +29721,69 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "requires": {} - }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true } } }, - "webpack-dev-middleware": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz", - "integrity": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==", + "node_modules/webpack-dev-middleware": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.1.tgz", + "integrity": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==", "dev": true, - "requires": { + "dependencies": { "colorette": "^2.0.10", "memfs": "^3.4.12", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } } }, - "webpack-dev-server": { - "version": "4.13.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.13.2.tgz", - "integrity": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==", + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", "dev": true, - "requires": { + "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", "@types/serve-static": "^1.13.10", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", + "@types/ws": "^8.5.5", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.0.11", "chokidar": "^3.5.3", @@ -54429,326 +29808,459 @@ "webpack-dev-middleware": "^5.3.1", "ws": "^8.13.0" }, - "dependencies": { - "ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", - "dev": true + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true }, - "webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", - "dev": true, - "requires": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - } + "webpack-cli": { + "optional": true } } }, - "webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "node_modules/webpack-dev-server/node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", "dev": true, - "requires": { + "dependencies": { "clone-deep": "^4.0.1", + "flat": "^5.0.2", "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" } }, - "webpack-node-externals": { + "node_modules/webpack-node-externals": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "webpack-sources": { + "node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true + "dev": true, + "engines": { + "node": ">=10.13.0" + } }, - "webpack-subresource-integrity": { + "node_modules/webpack-subresource-integrity": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", "dev": true, - "requires": { + "dependencies": { "typed-assert": "^1.0.8" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "html-webpack-plugin": ">= 5.0.0-beta.1 < 6", + "webpack": "^5.12.0" + }, + "peerDependenciesMeta": { + "html-webpack-plugin": { + "optional": true + } + } + }, + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "websocket-driver": { + "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, - "requires": { + "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "websocket-extensions": { + "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, - "whatwg-encoding": { + "node_modules/whatwg-encoding": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", "dev": true, - "requires": { + "dependencies": { "iconv-lite": "0.6.3" }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "whatwg-mimetype": { + "node_modules/whatwg-mimetype": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=12" + } }, - "whatwg-url": { + "node_modules/whatwg-url": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "dev": true, - "requires": { + "dependencies": { "tr46": "^3.0.0", "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, - "which": { + "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { + "node_modules/which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, - "requires": { + "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "requires": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - } - }, - "which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", "dev": true, - "requires": { + "dependencies": { "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", + "call-bind": "^1.0.4", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - } - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "wildcard": { + "node_modules/wildcard": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, - "wordwrap": { + "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, - "requires": { + "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@7.0.0", + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "requires": { + "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "write-file-atomic": { + "node_modules/write-file-atomic": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "requires": { + "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "node_modules/ws": { + "version": "8.15.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.1.tgz", + "integrity": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==", "dev": true, - "requires": {} - }, - "xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } }, - "xml-name-validator": { + "node_modules/xml-name-validator": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true + "dev": true, + "engines": { + "node": ">=12" + } }, - "xmlchars": { + "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, - "xtend": { + "node_modules/xmlhttprequest-ssl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", + "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4" + } }, - "y18n": { + "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + } }, - "yallist": { + "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true }, - "yaml": { + "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 6" + } }, - "yargs": { + "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "requires": { + "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", @@ -54757,54 +30269,56 @@ "y18n": "^5.0.5", "yargs-parser": "^21.1.1" }, - "dependencies": { - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - } + "engines": { + "node": ">=12" } }, - "yargs-parser": { + "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true + "dev": true, + "engines": { + "node": ">=12" + } }, - "yauzl": { + "node_modules/yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, - "requires": { + "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, - "yn": { + "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "yocto-queue": { + "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "yup": { + "node_modules/yup": { "version": "0.32.11", "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", "dev": true, - "requires": { + "dependencies": { "@babel/runtime": "^7.15.4", "@types/lodash": "^4.14.175", "lodash": "^4.17.21", @@ -54812,13 +30326,16 @@ "nanoclone": "^0.2.1", "property-expr": "^2.0.4", "toposort": "^2.0.2" + }, + "engines": { + "node": ">=10" } }, - "zone.js": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.13.1.tgz", - "integrity": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==", - "requires": { + "node_modules/zone.js": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.2.tgz", + "integrity": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==", + "dependencies": { "tslib": "^2.3.0" } } diff --git a/package.json b/package.json index 0c56591..7b9ee78 100644 --- a/package.json +++ b/package.json @@ -34,32 +34,32 @@ }, "private": true, "dependencies": { - "@angular/animations": "~16.0.0", - "@angular/cdk": "^16.0.2", - "@angular/common": "~16.0.0", - "@angular/compiler": "~16.0.0", - "@angular/core": "~16.0.0", - "@angular/forms": "~16.0.0", - "@angular/platform-browser": "~16.0.0", - "@angular/platform-browser-dynamic": "~16.0.0", - "@angular/router": "~16.0.0", - "@ngrx/store": "^16.0.1", + "@angular/core": "^17.0.7", + "@angular/animations": "^17.0.7", + "@angular/cdk": "^17.0.4", + "@angular/common": "^17.0.7", + "@angular/compiler": "^17.0.7", + "@angular/forms": "^17.0.7", + "@angular/platform-browser": "^17.0.7", + "@angular/platform-browser-dynamic": "^17.0.7", + "@angular/router": "^17.0.7", + "@ngrx/store": "^17.0.1", "@types/inquirer": "^9.0.3", "chalk": "^4.1.2", "rxjs": "~7.8.0", "tslib": "^2.3.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.0" }, "devDependencies": { - "@angular-devkit/build-angular": "~16.0.0", - "@angular-devkit/core": "~16.0.0", - "@angular-devkit/schematics": "~16.0.0", - "@angular-eslint/eslint-plugin": "~16.0.0", - "@angular-eslint/eslint-plugin-template": "~16.0.0", - "@angular-eslint/template-parser": "~16.0.0", - "@angular/cli": "~16.0.0", - "@angular/compiler-cli": "~16.0.0", - "@angular/language-service": "~16.0.0", + "@angular-devkit/build-angular": "^17.0.7", + "@angular-devkit/core": "^17.0.7", + "@angular-devkit/schematics": "^17.0.7", + "@angular-eslint/eslint-plugin": "^17.0.7", + "@angular-eslint/eslint-plugin-template": "^17.0.7", + "@angular-eslint/template-parser": "^17.0.7", + "@angular/cli": "^17.0.7", + "@angular/compiler-cli": "^17.0.7", + "@angular/language-service": "^17.0.7", "@nx/angular": "17.2.6", "@nx/cypress": "17.2.6", "@nx/devkit": "17.2.6", @@ -113,4 +113,3 @@ "verdaccio": "^5.0.4" } } - From 0c2fbd315f0fda2c19287c5b896dd31b09c9e0e1 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:18:48 +0100 Subject: [PATCH 07/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20remove=20cached?= =?UTF-8?q?=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 + .gitignore | 1 + .nx/cache/5787663384972380094.commit | 1 + .nx/cache/5787663384972380094/code | 1 + .nx/cache/5787663384972380094/source | 1 + .nx/cache/5787663384972380094/terminalOutput | 4 + .nx/cache/7564716918858913555.commit | 1 + .nx/cache/7564716918858913555/code | 1 + .nx/cache/7564716918858913555/source | 1 + .nx/cache/7564716918858913555/terminalOutput | 5 + .nx/cache/9370696602342275563.commit | 1 + .nx/cache/9370696602342275563/code | 1 + .nx/cache/9370696602342275563/source | 1 + .nx/cache/9370696602342275563/terminalOutput | 5 + .nx/cache/9419033249203670814.commit | 1 + .nx/cache/9419033249203670814/code | 1 + .nx/cache/9419033249203670814/source | 1 + .nx/cache/9419033249203670814/terminalOutput | 5 + .nx/cache/d/daemon.log | 4229 ++ .nx/cache/file-map.json | 447 +- .nx/cache/lockfile.hash | 2 +- .nx/cache/nx_files.nxt | Bin 13492 -> 13556 bytes .nx/cache/parsed-lock-file.json | 17314 +++---- .nx/cache/project-graph.json | 40778 +++++++++++++++- .../terminalOutputs/15540792699947906079 | Bin 0 -> 59284 bytes .../terminalOutputs/16651601155166550751 | 0 .../terminalOutputs/18361336782960755279 | 38 + .nx/cache/terminalOutputs/2274324271490405785 | 1 + .nx/cache/terminalOutputs/5787663384972380094 | 4 + .nx/cache/terminalOutputs/7564716918858913555 | 5 + .nx/cache/terminalOutputs/9370696602342275563 | 5 + .nx/cache/terminalOutputs/9419033249203670814 | 5 + 32 files changed, 52701 insertions(+), 10161 deletions(-) create mode 100644 .nx/cache/5787663384972380094.commit create mode 100644 .nx/cache/5787663384972380094/code create mode 100644 .nx/cache/5787663384972380094/source create mode 100644 .nx/cache/5787663384972380094/terminalOutput create mode 100644 .nx/cache/7564716918858913555.commit create mode 100644 .nx/cache/7564716918858913555/code create mode 100644 .nx/cache/7564716918858913555/source create mode 100644 .nx/cache/7564716918858913555/terminalOutput create mode 100644 .nx/cache/9370696602342275563.commit create mode 100644 .nx/cache/9370696602342275563/code create mode 100644 .nx/cache/9370696602342275563/source create mode 100644 .nx/cache/9370696602342275563/terminalOutput create mode 100644 .nx/cache/9419033249203670814.commit create mode 100644 .nx/cache/9419033249203670814/code create mode 100644 .nx/cache/9419033249203670814/source create mode 100644 .nx/cache/9419033249203670814/terminalOutput create mode 100644 .nx/cache/d/daemon.log create mode 100644 .nx/cache/terminalOutputs/15540792699947906079 create mode 100644 .nx/cache/terminalOutputs/16651601155166550751 create mode 100644 .nx/cache/terminalOutputs/18361336782960755279 create mode 100644 .nx/cache/terminalOutputs/2274324271490405785 create mode 100644 .nx/cache/terminalOutputs/5787663384972380094 create mode 100644 .nx/cache/terminalOutputs/7564716918858913555 create mode 100644 .nx/cache/terminalOutputs/9370696602342275563 create mode 100644 .nx/cache/terminalOutputs/9419033249203670814 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4960a8..3e1a4c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: - uses: nrwl/nx-set-shas@v3 - name: Install deps run: npm ci + - name: Lint affected + run: npx nx affected -t lint - name: Test affected run: npx nx affected -t test --configuration=ci - name: Build affected diff --git a/.gitignore b/.gitignore index d3f41aa..b036bb5 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ dist tmp /out-tsc /dv-example/ +.nx # dependencies node_modules diff --git a/.nx/cache/5787663384972380094.commit b/.nx/cache/5787663384972380094.commit new file mode 100644 index 0000000..f32a580 --- /dev/null +++ b/.nx/cache/5787663384972380094.commit @@ -0,0 +1 @@ +true \ No newline at end of file diff --git a/.nx/cache/5787663384972380094/code b/.nx/cache/5787663384972380094/code new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/.nx/cache/5787663384972380094/code @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/.nx/cache/5787663384972380094/source b/.nx/cache/5787663384972380094/source new file mode 100644 index 0000000..9f267a1 --- /dev/null +++ b/.nx/cache/5787663384972380094/source @@ -0,0 +1 @@ +0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/5787663384972380094/terminalOutput b/.nx/cache/5787663384972380094/terminalOutput new file mode 100644 index 0000000..8aebc01 --- /dev/null +++ b/.nx/cache/5787663384972380094/terminalOutput @@ -0,0 +1,4 @@ +Determining test suites to run...No tests found, exiting with code 0 + +   +   \ No newline at end of file diff --git a/.nx/cache/7564716918858913555.commit b/.nx/cache/7564716918858913555.commit new file mode 100644 index 0000000..f32a580 --- /dev/null +++ b/.nx/cache/7564716918858913555.commit @@ -0,0 +1 @@ +true \ No newline at end of file diff --git a/.nx/cache/7564716918858913555/code b/.nx/cache/7564716918858913555/code new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/.nx/cache/7564716918858913555/code @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/.nx/cache/7564716918858913555/source b/.nx/cache/7564716918858913555/source new file mode 100644 index 0000000..9f267a1 --- /dev/null +++ b/.nx/cache/7564716918858913555/source @@ -0,0 +1 @@ +0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/7564716918858913555/terminalOutput b/.nx/cache/7564716918858913555/terminalOutput new file mode 100644 index 0000000..c23f201 --- /dev/null +++ b/.nx/cache/7564716918858913555/terminalOutput @@ -0,0 +1,5 @@ + +Linting "tooling-nx-plugin-validators"... + +All files pass linting. + diff --git a/.nx/cache/9370696602342275563.commit b/.nx/cache/9370696602342275563.commit new file mode 100644 index 0000000..f32a580 --- /dev/null +++ b/.nx/cache/9370696602342275563.commit @@ -0,0 +1 @@ +true \ No newline at end of file diff --git a/.nx/cache/9370696602342275563/code b/.nx/cache/9370696602342275563/code new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/.nx/cache/9370696602342275563/code @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/.nx/cache/9370696602342275563/source b/.nx/cache/9370696602342275563/source new file mode 100644 index 0000000..9f267a1 --- /dev/null +++ b/.nx/cache/9370696602342275563/source @@ -0,0 +1 @@ +0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/9370696602342275563/terminalOutput b/.nx/cache/9370696602342275563/terminalOutput new file mode 100644 index 0000000..8923344 --- /dev/null +++ b/.nx/cache/9370696602342275563/terminalOutput @@ -0,0 +1,5 @@ + +Linting "tooling-nx-plugin-generators"... + +All files pass linting. + diff --git a/.nx/cache/9419033249203670814.commit b/.nx/cache/9419033249203670814.commit new file mode 100644 index 0000000..f32a580 --- /dev/null +++ b/.nx/cache/9419033249203670814.commit @@ -0,0 +1 @@ +true \ No newline at end of file diff --git a/.nx/cache/9419033249203670814/code b/.nx/cache/9419033249203670814/code new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/.nx/cache/9419033249203670814/code @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/.nx/cache/9419033249203670814/source b/.nx/cache/9419033249203670814/source new file mode 100644 index 0000000..9f267a1 --- /dev/null +++ b/.nx/cache/9419033249203670814/source @@ -0,0 +1 @@ +0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/9419033249203670814/terminalOutput b/.nx/cache/9419033249203670814/terminalOutput new file mode 100644 index 0000000..47fffd0 --- /dev/null +++ b/.nx/cache/9419033249203670814/terminalOutput @@ -0,0 +1,5 @@ + +Linting "tooling-nx-plugin-config"... + +All files pass linting. + diff --git a/.nx/cache/d/daemon.log b/.nx/cache/d/daemon.log new file mode 100644 index 0000000..9cd0606 --- /dev/null +++ b/.nx/cache/d/daemon.log @@ -0,0 +1,4229 @@ +[NX Daemon Server] - 2023-12-20T16:15:41.691Z - Started listening on: /var/folders/d7/ljr6pb8s55gb1j56y1s4_f3m0000gn/T/cb69d6535d6f1276b079/d.sock +[NX Daemon Server] - 2023-12-20T16:15:41.692Z - [WATCHER]: Subscribed to changes within: /Users/kiwi/Documents/code/private/nx-plugin (native) +[NX Daemon Server] - 2023-12-20T16:15:41.694Z - Established a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:15:41.694Z - Established a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:15:41.695Z - Closed a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:15:41.696Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:41.697Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX Daemon Server] - 2023-12-20T16:15:41.697Z - [REQUEST]: +[NX Daemon Server] - 2023-12-20T16:15:41.697Z - [REQUEST]: +[NX Daemon Server] - 2023-12-20T16:15:41.919Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:41.921Z - Time taken for 'total for creating and serializing project graph' 222.43412494659424ms +[NX Daemon Server] - 2023-12-20T16:15:41.927Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:41.927Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 222. Response time: 9. +[NX Daemon Server] - 2023-12-20T16:15:41.980Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.980Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.980Z - Handled HASH_TASKS. Handling time: 8. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:41.989Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.989Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.989Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:41.992Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.992Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.992Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:41.995Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.995Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:41.995Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:43.078Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.078Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.078Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:43.170Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.170Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.170Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:43.268Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.268Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.268Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:43.619Z - Established a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:15:43.619Z - Closed a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:15:43.620Z - Established a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:15:43.620Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:43.621Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:43.622Z - Time taken for 'total for creating and serializing project graph' 0.1762077808380127ms +[NX Daemon Server] - 2023-12-20T16:15:43.628Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:43.628Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:43.658Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.659Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.659Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:43.667Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.668Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.668Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:43.670Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.671Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.671Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:43.674Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.675Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:43.675Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:43.699Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:43.699Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:43.700Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.700Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:43.700Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.147Z - Established a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:15:44.147Z - Closed a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:15:44.148Z - Established a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:15:44.149Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:44.149Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:44.151Z - Time taken for 'total for creating and serializing project graph' 0.07854199409484863ms +[NX Daemon Server] - 2023-12-20T16:15:44.156Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:44.156Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:44.186Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.187Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.187Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:44.195Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.195Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.195Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.198Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.198Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.198Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.203Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.203Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.203Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.223Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.223Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.223Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.224Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.224Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.224Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.227Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.227Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.227Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.673Z - Established a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:15:44.674Z - Closed a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:15:44.674Z - Established a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:15:44.675Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:44.675Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:44.677Z - Time taken for 'total for creating and serializing project graph' 0.06283378601074219ms +[NX Daemon Server] - 2023-12-20T16:15:44.682Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:44.682Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:44.713Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.713Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.713Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.722Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.722Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.722Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.725Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.725Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.725Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.729Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.729Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:44.729Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.750Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.750Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.750Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.753Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.753Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.753Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:44.755Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.755Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:44.755Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.203Z - Established a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:15:45.203Z - Closed a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:15:45.204Z - Established a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:15:45.205Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:45.205Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:45.206Z - Time taken for 'total for creating and serializing project graph' 0.08425021171569824ms +[NX Daemon Server] - 2023-12-20T16:15:45.211Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:45.212Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:45.241Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.241Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.241Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.250Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.250Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.250Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.254Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.254Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.254Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.257Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.257Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.257Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.279Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.279Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.279Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.280Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.280Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.280Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.282Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.282Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.282Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.735Z - Established a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:15:45.736Z - Closed a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:15:45.736Z - Established a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:15:45.737Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:45.737Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:45.739Z - Time taken for 'total for creating and serializing project graph' 0.05320882797241211ms +[NX Daemon Server] - 2023-12-20T16:15:45.744Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:45.744Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:45.774Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.774Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.774Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.783Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.783Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.783Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.786Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.786Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.786Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.790Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.790Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:45.790Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.811Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.811Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.811Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.814Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:45.814Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.270Z - Established a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:15:46.270Z - Closed a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:15:46.270Z - Established a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:15:46.271Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:46.271Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:46.273Z - Time taken for 'total for creating and serializing project graph' 0.08745908737182617ms +[NX Daemon Server] - 2023-12-20T16:15:46.278Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:46.278Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:46.308Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.308Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.308Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.317Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.317Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.317Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.321Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.321Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.321Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.324Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.324Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.324Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.348Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.348Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.349Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.349Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.349Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.821Z - Established a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:15:46.821Z - Closed a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:15:46.821Z - Established a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:15:46.822Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:46.823Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:46.824Z - Time taken for 'total for creating and serializing project graph' 0.06541609764099121ms +[NX Daemon Server] - 2023-12-20T16:15:46.829Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:46.830Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:46.857Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.857Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.857Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.867Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.867Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.867Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.870Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.870Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.870Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.873Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.873Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:46.873Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.894Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.894Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.894Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.898Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.898Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.898Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:46.899Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.899Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:46.899Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.361Z - Established a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:15:47.361Z - Closed a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:15:47.361Z - Established a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:15:47.362Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:47.363Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:47.364Z - Time taken for 'total for creating and serializing project graph' 0.10233378410339355ms +[NX Daemon Server] - 2023-12-20T16:15:47.370Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:47.370Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:47.401Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.401Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.401Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.409Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.409Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.409Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.412Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.412Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.412Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.416Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.416Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.416Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.436Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.436Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.436Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.437Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.437Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.437Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.438Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.438Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.438Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.897Z - Established a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:15:47.897Z - Closed a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:15:47.897Z - Established a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:15:47.898Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:47.898Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:47.900Z - Time taken for 'total for creating and serializing project graph' 0.06516599655151367ms +[NX Daemon Server] - 2023-12-20T16:15:47.905Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:47.905Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:47.935Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.935Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.935Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.944Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.944Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.944Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.948Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.948Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.948Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.951Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.952Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:47.952Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:47.973Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.973Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:47.976Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.976Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:47.976Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.439Z - Established a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:15:48.439Z - Closed a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:15:48.439Z - Established a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:15:48.440Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:48.440Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:48.443Z - Time taken for 'total for creating and serializing project graph' 0.06099987030029297ms +[NX Daemon Server] - 2023-12-20T16:15:48.448Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:48.448Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:15:48.479Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.479Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.479Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.487Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.488Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.488Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:48.491Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.491Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.491Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.495Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.495Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:48.495Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.516Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:48.516Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:48.516Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.517Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:48.517Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:48.517Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.519Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:48.519Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:48.519Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:48.995Z - Established a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:15:48.995Z - Closed a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:15:48.996Z - Established a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:15:48.997Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:48.997Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:48.999Z - Time taken for 'total for creating and serializing project graph' 0.07066607475280762ms +[NX Daemon Server] - 2023-12-20T16:15:49.004Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:49.004Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:49.034Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.034Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.034Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.043Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.044Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.044Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:49.048Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.048Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.048Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.052Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.052Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.052Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.072Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.072Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.076Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.076Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.076Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.575Z - Established a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:15:49.576Z - Closed a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:15:49.576Z - Established a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:15:49.577Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:49.577Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:49.579Z - Time taken for 'total for creating and serializing project graph' 0.07737517356872559ms +[NX Daemon Server] - 2023-12-20T16:15:49.586Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:49.586Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. +[NX Daemon Server] - 2023-12-20T16:15:49.617Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.617Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.617Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.626Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.626Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.626Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.629Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.629Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.629Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.632Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.632Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:49.632Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.653Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.653Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.653Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:49.655Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:49.656Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.138Z - Established a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:15:50.138Z - Closed a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:15:50.138Z - Established a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:15:50.139Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:50.140Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:50.141Z - Time taken for 'total for creating and serializing project graph' 0.08762478828430176ms +[NX Daemon Server] - 2023-12-20T16:15:50.146Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:50.147Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:50.177Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.178Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.178Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:50.186Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.187Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.187Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:50.190Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.190Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.190Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.193Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.193Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.194Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:50.213Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.213Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.213Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.217Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.217Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.700Z - Established a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:15:50.700Z - Closed a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:15:50.701Z - Established a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:15:50.701Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:50.702Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:50.703Z - Time taken for 'total for creating and serializing project graph' 0.10866594314575195ms +[NX Daemon Server] - 2023-12-20T16:15:50.709Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:50.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:50.744Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.744Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.744Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.753Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.753Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.753Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.757Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.757Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.757Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.765Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.765Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:50.765Z - Handled HASH_TASKS. Handling time: 7. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.783Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.783Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.783Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.784Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.784Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.784Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:50.789Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.789Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:50.789Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.330Z - Established a connection. Number of open connections: 16 +[NX Daemon Server] - 2023-12-20T16:15:51.331Z - Closed a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:15:51.331Z - Established a connection. Number of open connections: 16 +[NX Daemon Server] - 2023-12-20T16:15:51.332Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:51.332Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:51.334Z - Time taken for 'total for creating and serializing project graph' 0.11941695213317871ms +[NX Daemon Server] - 2023-12-20T16:15:51.339Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:51.339Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:51.374Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.374Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.374Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.384Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.384Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.384Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.388Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.388Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.388Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.393Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.394Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.394Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:51.415Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.415Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.415Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.417Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.417Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.417Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.418Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.418Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.418Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.913Z - Established a connection. Number of open connections: 17 +[NX Daemon Server] - 2023-12-20T16:15:51.913Z - Closed a connection. Number of open connections: 16 +[NX Daemon Server] - 2023-12-20T16:15:51.913Z - Established a connection. Number of open connections: 17 +[NX Daemon Server] - 2023-12-20T16:15:51.914Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:51.915Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:51.917Z - Time taken for 'total for creating and serializing project graph' 0.06999993324279785ms +[NX Daemon Server] - 2023-12-20T16:15:51.922Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:51.922Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:15:51.953Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.953Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.953Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.963Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.963Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.963Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.966Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.966Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.966Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.970Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.970Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:51.970Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.993Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.993Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:51.995Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.995Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:51.995Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.467Z - Established a connection. Number of open connections: 18 +[NX Daemon Server] - 2023-12-20T16:15:52.467Z - Closed a connection. Number of open connections: 17 +[NX Daemon Server] - 2023-12-20T16:15:52.467Z - Established a connection. Number of open connections: 18 +[NX Daemon Server] - 2023-12-20T16:15:52.468Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:52.468Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:52.470Z - Time taken for 'total for creating and serializing project graph' 0.04808402061462402ms +[NX Daemon Server] - 2023-12-20T16:15:52.475Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:52.475Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:52.504Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.504Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.504Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.512Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.512Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.512Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.515Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.515Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.515Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.519Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.519Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:52.519Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.538Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:52.538Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:52.538Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.540Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:52.540Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.085Z - Established a connection. Number of open connections: 19 +[NX Daemon Server] - 2023-12-20T16:15:53.085Z - Closed a connection. Number of open connections: 18 +[NX Daemon Server] - 2023-12-20T16:15:53.086Z - Established a connection. Number of open connections: 19 +[NX Daemon Server] - 2023-12-20T16:15:53.087Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:53.087Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:53.089Z - Time taken for 'total for creating and serializing project graph' 0.06183314323425293ms +[NX Daemon Server] - 2023-12-20T16:15:53.094Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:53.094Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:53.130Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.130Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.130Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.139Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.139Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.139Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.142Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.142Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.142Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.146Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.146Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.146Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.170Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.170Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.170Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.171Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.171Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.723Z - Established a connection. Number of open connections: 20 +[NX Daemon Server] - 2023-12-20T16:15:53.724Z - Closed a connection. Number of open connections: 19 +[NX Daemon Server] - 2023-12-20T16:15:53.724Z - Established a connection. Number of open connections: 20 +[NX Daemon Server] - 2023-12-20T16:15:53.725Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:53.725Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:53.727Z - Time taken for 'total for creating and serializing project graph' 0.06491684913635254ms +[NX Daemon Server] - 2023-12-20T16:15:53.732Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:53.732Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:15:53.768Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.768Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.768Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.781Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.781Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.781Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.787Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.788Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.788Z - Handled HASH_TASKS. Handling time: 3. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:53.795Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.795Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:53.795Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.823Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.823Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:53.832Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.832Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:53.832Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.220Z - [WATCHER]: Processing file changes in outputs +[NX Daemon Server] - 2023-12-20T16:15:54.457Z - Established a connection. Number of open connections: 21 +[NX Daemon Server] - 2023-12-20T16:15:54.457Z - Closed a connection. Number of open connections: 20 +[NX Daemon Server] - 2023-12-20T16:15:54.458Z - Established a connection. Number of open connections: 21 +[NX Daemon Server] - 2023-12-20T16:15:54.459Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:54.459Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:54.461Z - Time taken for 'total for creating and serializing project graph' 0.06720805168151855ms +[NX Daemon Server] - 2023-12-20T16:15:54.467Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:54.467Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:15:54.503Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.503Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.503Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.516Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.516Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.516Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.520Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.520Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.520Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.524Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.524Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:54.524Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.546Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:54.546Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:54.546Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.549Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:54.549Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:55.404Z - Established a connection. Number of open connections: 22 +[NX Daemon Server] - 2023-12-20T16:15:55.404Z - Closed a connection. Number of open connections: 21 +[NX Daemon Server] - 2023-12-20T16:15:55.405Z - Established a connection. Number of open connections: 22 +[NX Daemon Server] - 2023-12-20T16:15:55.406Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:55.406Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:55.412Z - Time taken for 'total for creating and serializing project graph' 0.3987081050872803ms +[NX Daemon Server] - 2023-12-20T16:15:55.420Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:55.420Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. +[NX Daemon Server] - 2023-12-20T16:15:55.463Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.463Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.464Z - Handled HASH_TASKS. Handling time: 5. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:55.477Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.477Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.477Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:55.486Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.486Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.486Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:55.494Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.494Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:55.494Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:55.556Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:55.556Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:55.556Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:55.568Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:55.568Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:55.568Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:55.569Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:55.569Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:55.569Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:56.246Z - Established a connection. Number of open connections: 23 +[NX Daemon Server] - 2023-12-20T16:15:56.246Z - Closed a connection. Number of open connections: 22 +[NX Daemon Server] - 2023-12-20T16:15:56.246Z - Established a connection. Number of open connections: 23 +[NX Daemon Server] - 2023-12-20T16:15:56.248Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:56.248Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:56.250Z - Time taken for 'total for creating and serializing project graph' 0.19412493705749512ms +[NX Daemon Server] - 2023-12-20T16:15:56.258Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:56.258Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 10. +[NX Daemon Server] - 2023-12-20T16:15:56.295Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.295Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.295Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:56.330Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.330Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.330Z - Handled HASH_TASKS. Handling time: 25. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:56.341Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.341Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.341Z - Handled HASH_TASKS. Handling time: 7. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:56.348Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.348Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:56.348Z - Handled HASH_TASKS. Handling time: 6. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:56.369Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:56.369Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:56.369Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:56.372Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:56.372Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:56.372Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:56.374Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:56.374Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:56.374Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:57.177Z - Established a connection. Number of open connections: 24 +[NX Daemon Server] - 2023-12-20T16:15:57.177Z - Established a connection. Number of open connections: 25 +[NX Daemon Server] - 2023-12-20T16:15:57.177Z - Closed a connection. Number of open connections: 24 +[NX Daemon Server] - 2023-12-20T16:15:57.178Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:57.178Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:57.182Z - Time taken for 'total for creating and serializing project graph' 0.08304190635681152ms +[NX Daemon Server] - 2023-12-20T16:15:57.220Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:57.220Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 42. +[NX Daemon Server] - 2023-12-20T16:15:57.280Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.280Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.280Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:57.303Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.303Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.303Z - Handled HASH_TASKS. Handling time: 11. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:57.310Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.310Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.310Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:57.344Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.345Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:57.345Z - Handled HASH_TASKS. Handling time: 31. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:57.346Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:57.346Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:57.346Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:57.352Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:57.352Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:57.352Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:57.353Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:57.353Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:57.353Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:58.156Z - Established a connection. Number of open connections: 25 +[NX Daemon Server] - 2023-12-20T16:15:58.157Z - Established a connection. Number of open connections: 26 +[NX Daemon Server] - 2023-12-20T16:15:58.157Z - Closed a connection. Number of open connections: 25 +[NX Daemon Server] - 2023-12-20T16:15:58.158Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:58.158Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:58.161Z - Time taken for 'total for creating and serializing project graph' 0.1471250057220459ms +[NX Daemon Server] - 2023-12-20T16:15:58.169Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:58.169Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. +[NX Daemon Server] - 2023-12-20T16:15:58.220Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.220Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.220Z - Handled HASH_TASKS. Handling time: 13. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:58.269Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.269Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.269Z - Handled HASH_TASKS. Handling time: 19. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:58.280Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.280Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.280Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:58.294Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.295Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:58.295Z - Handled HASH_TASKS. Handling time: 9. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:58.327Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:58.327Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:58.327Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:58.333Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:58.334Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:58.334Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:58.348Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:58.348Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:58.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:59.184Z - Established a connection. Number of open connections: 26 +[NX Daemon Server] - 2023-12-20T16:15:59.185Z - Closed a connection. Number of open connections: 25 +[NX Daemon Server] - 2023-12-20T16:15:59.187Z - Established a connection. Number of open connections: 26 +[NX Daemon Server] - 2023-12-20T16:15:59.189Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:15:59.191Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:15:59.201Z - Time taken for 'total for creating and serializing project graph' 1.5952918529510498ms +[NX Daemon Server] - 2023-12-20T16:15:59.235Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:15:59.235Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 45. +[NX Daemon Server] - 2023-12-20T16:15:59.283Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.283Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.283Z - Handled HASH_TASKS. Handling time: 8. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:59.305Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.311Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.311Z - Handled HASH_TASKS. Handling time: 11. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:15:59.324Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.324Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.324Z - Handled HASH_TASKS. Handling time: 6. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:59.357Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.357Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:15:59.357Z - Handled HASH_TASKS. Handling time: 29. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:15:59.379Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:59.380Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:59.380Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:59.388Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:59.389Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:59.389Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:15:59.390Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:59.390Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:15:59.390Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.170Z - Established a connection. Number of open connections: 27 +[NX Daemon Server] - 2023-12-20T16:16:00.171Z - Closed a connection. Number of open connections: 26 +[NX Daemon Server] - 2023-12-20T16:16:00.172Z - Established a connection. Number of open connections: 27 +[NX Daemon Server] - 2023-12-20T16:16:00.174Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:00.174Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:00.177Z - Time taken for 'total for creating and serializing project graph' 0.11925005912780762ms +[NX Daemon Server] - 2023-12-20T16:16:00.188Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:00.188Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. +[NX Daemon Server] - 2023-12-20T16:16:00.232Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.232Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.232Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.245Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.246Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.246Z - Handled HASH_TASKS. Handling time: 3. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:00.252Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.252Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.252Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.264Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.264Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.264Z - Handled HASH_TASKS. Handling time: 8. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.281Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.283Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.283Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 2. +[NX Daemon Server] - 2023-12-20T16:16:00.286Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.286Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.286Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.302Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.302Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.302Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.880Z - Established a connection. Number of open connections: 28 +[NX Daemon Server] - 2023-12-20T16:16:00.880Z - Closed a connection. Number of open connections: 27 +[NX Daemon Server] - 2023-12-20T16:16:00.881Z - Established a connection. Number of open connections: 28 +[NX Daemon Server] - 2023-12-20T16:16:00.882Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:00.882Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:00.884Z - Time taken for 'total for creating and serializing project graph' 0.07908296585083008ms +[NX Daemon Server] - 2023-12-20T16:16:00.890Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:00.890Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:00.922Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.922Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.922Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.932Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.933Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.933Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:00.937Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.937Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.937Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.941Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.941Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:00.941Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.964Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.964Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.964Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.966Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.966Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.966Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:00.967Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.967Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:00.967Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.522Z - Established a connection. Number of open connections: 29 +[NX Daemon Server] - 2023-12-20T16:16:01.522Z - Closed a connection. Number of open connections: 28 +[NX Daemon Server] - 2023-12-20T16:16:01.523Z - Established a connection. Number of open connections: 29 +[NX Daemon Server] - 2023-12-20T16:16:01.524Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:01.524Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:01.526Z - Time taken for 'total for creating and serializing project graph' 0.06491684913635254ms +[NX Daemon Server] - 2023-12-20T16:16:01.531Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:01.531Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:01.561Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.561Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.561Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.571Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.571Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.571Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.574Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.574Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.574Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.578Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.578Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:01.578Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.603Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:01.603Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:01.603Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.604Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:01.604Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:01.604Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:01.605Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:01.605Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:01.605Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.238Z - Established a connection. Number of open connections: 30 +[NX Daemon Server] - 2023-12-20T16:16:02.238Z - Established a connection. Number of open connections: 31 +[NX Daemon Server] - 2023-12-20T16:16:02.239Z - Closed a connection. Number of open connections: 30 +[NX Daemon Server] - 2023-12-20T16:16:02.240Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:02.240Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:02.242Z - Time taken for 'total for creating and serializing project graph' 0.09370803833007812ms +[NX Daemon Server] - 2023-12-20T16:16:02.247Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:02.247Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:02.283Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.283Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.283Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.293Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.293Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.293Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.296Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.297Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.297Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:02.299Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.299Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.299Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.321Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.321Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.321Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.324Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.324Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.324Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.325Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.325Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.325Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.804Z - Established a connection. Number of open connections: 31 +[NX Daemon Server] - 2023-12-20T16:16:02.804Z - Closed a connection. Number of open connections: 30 +[NX Daemon Server] - 2023-12-20T16:16:02.804Z - Established a connection. Number of open connections: 31 +[NX Daemon Server] - 2023-12-20T16:16:02.805Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:02.805Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:02.807Z - Time taken for 'total for creating and serializing project graph' 0.06570911407470703ms +[NX Daemon Server] - 2023-12-20T16:16:02.812Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:02.812Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:02.841Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.841Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.841Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.851Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.851Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.851Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.854Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.854Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.855Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:02.857Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.857Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:02.857Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.877Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.877Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.877Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.881Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.881Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.881Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:02.883Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.883Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:02.883Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.393Z - Established a connection. Number of open connections: 32 +[NX Daemon Server] - 2023-12-20T16:16:03.394Z - Closed a connection. Number of open connections: 31 +[NX Daemon Server] - 2023-12-20T16:16:03.394Z - Established a connection. Number of open connections: 32 +[NX Daemon Server] - 2023-12-20T16:16:03.395Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:03.395Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:03.397Z - Time taken for 'total for creating and serializing project graph' 0.06966710090637207ms +[NX Daemon Server] - 2023-12-20T16:16:03.402Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:03.402Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:03.432Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.432Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.432Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.442Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.442Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.442Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.445Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.445Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.445Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.448Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.448Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:03.448Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.472Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:03.472Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:03.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.477Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:03.477Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:03.477Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:03.478Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:03.478Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:03.478Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.042Z - Established a connection. Number of open connections: 33 +[NX Daemon Server] - 2023-12-20T16:16:04.043Z - Closed a connection. Number of open connections: 32 +[NX Daemon Server] - 2023-12-20T16:16:04.043Z - Established a connection. Number of open connections: 33 +[NX Daemon Server] - 2023-12-20T16:16:04.044Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:04.045Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:04.049Z - Time taken for 'total for creating and serializing project graph' 0.36904191970825195ms +[NX Daemon Server] - 2023-12-20T16:16:04.055Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:04.055Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 10. +[NX Daemon Server] - 2023-12-20T16:16:04.087Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.087Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.087Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.096Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.096Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.096Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.099Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.099Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.099Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.102Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.102Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.102Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.124Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.124Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.124Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.127Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.127Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.127Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.129Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.129Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.129Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.608Z - Established a connection. Number of open connections: 34 +[NX Daemon Server] - 2023-12-20T16:16:04.608Z - Closed a connection. Number of open connections: 33 +[NX Daemon Server] - 2023-12-20T16:16:04.608Z - Established a connection. Number of open connections: 34 +[NX Daemon Server] - 2023-12-20T16:16:04.609Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:04.609Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:04.611Z - Time taken for 'total for creating and serializing project graph' 0.04754185676574707ms +[NX Daemon Server] - 2023-12-20T16:16:04.616Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:04.616Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:04.647Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.647Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.647Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.655Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.655Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.655Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.658Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.658Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.658Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.662Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.662Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:04.662Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.684Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.684Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:04.685Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.685Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:04.685Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.176Z - Established a connection. Number of open connections: 35 +[NX Daemon Server] - 2023-12-20T16:16:05.176Z - Closed a connection. Number of open connections: 34 +[NX Daemon Server] - 2023-12-20T16:16:05.176Z - Established a connection. Number of open connections: 35 +[NX Daemon Server] - 2023-12-20T16:16:05.177Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:05.177Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:05.179Z - Time taken for 'total for creating and serializing project graph' 0.05112504959106445ms +[NX Daemon Server] - 2023-12-20T16:16:05.184Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:05.185Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:05.213Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.213Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.213Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.222Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.222Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.222Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.225Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.225Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.229Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.229Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.229Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.249Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.249Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.253Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.253Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.253Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.751Z - Established a connection. Number of open connections: 36 +[NX Daemon Server] - 2023-12-20T16:16:05.751Z - Closed a connection. Number of open connections: 35 +[NX Daemon Server] - 2023-12-20T16:16:05.751Z - Established a connection. Number of open connections: 36 +[NX Daemon Server] - 2023-12-20T16:16:05.752Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:05.752Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:05.754Z - Time taken for 'total for creating and serializing project graph' 0.05216622352600098ms +[NX Daemon Server] - 2023-12-20T16:16:05.759Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:05.759Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:05.787Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.787Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.787Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.795Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.796Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.796Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:05.799Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.799Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.799Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.802Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.802Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:05.802Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.818Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.823Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 5. +[NX Daemon Server] - 2023-12-20T16:16:05.824Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:05.824Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.305Z - Established a connection. Number of open connections: 37 +[NX Daemon Server] - 2023-12-20T16:16:06.305Z - Closed a connection. Number of open connections: 36 +[NX Daemon Server] - 2023-12-20T16:16:06.305Z - Established a connection. Number of open connections: 37 +[NX Daemon Server] - 2023-12-20T16:16:06.306Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:06.306Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:06.308Z - Time taken for 'total for creating and serializing project graph' 0.04566693305969238ms +[NX Daemon Server] - 2023-12-20T16:16:06.313Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:06.313Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:06.341Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.341Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.341Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.350Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.350Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.350Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.353Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.353Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.353Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.356Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.356Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.357Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:06.374Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.374Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.376Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.376Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.376Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.873Z - Established a connection. Number of open connections: 38 +[NX Daemon Server] - 2023-12-20T16:16:06.873Z - Closed a connection. Number of open connections: 37 +[NX Daemon Server] - 2023-12-20T16:16:06.873Z - Established a connection. Number of open connections: 38 +[NX Daemon Server] - 2023-12-20T16:16:06.874Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:06.874Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:06.876Z - Time taken for 'total for creating and serializing project graph' 0.046792030334472656ms +[NX Daemon Server] - 2023-12-20T16:16:06.881Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:06.881Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:06.911Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.911Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.911Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.920Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.920Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.920Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.923Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.923Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.923Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.927Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.927Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:06.927Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.947Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.947Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:06.949Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.949Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:06.949Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:07.516Z - Established a connection. Number of open connections: 39 +[NX Daemon Server] - 2023-12-20T16:16:07.516Z - Closed a connection. Number of open connections: 38 +[NX Daemon Server] - 2023-12-20T16:16:07.516Z - Established a connection. Number of open connections: 39 +[NX Daemon Server] - 2023-12-20T16:16:07.517Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:07.518Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:07.520Z - Time taken for 'total for creating and serializing project graph' 0.0809168815612793ms +[NX Daemon Server] - 2023-12-20T16:16:07.525Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:07.525Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:07.557Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.557Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.557Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:07.566Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.567Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.567Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:07.570Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.570Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.571Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:07.574Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.574Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:07.574Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:07.596Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:07.596Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:07.596Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:07.597Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:07.597Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:07.597Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:07.599Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:07.599Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:07.599Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.124Z - Established a connection. Number of open connections: 40 +[NX Daemon Server] - 2023-12-20T16:16:08.124Z - Closed a connection. Number of open connections: 39 +[NX Daemon Server] - 2023-12-20T16:16:08.124Z - Established a connection. Number of open connections: 40 +[NX Daemon Server] - 2023-12-20T16:16:08.125Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:08.125Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:08.127Z - Time taken for 'total for creating and serializing project graph' 0.07195806503295898ms +[NX Daemon Server] - 2023-12-20T16:16:08.132Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:08.132Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:08.163Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.163Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.163Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.172Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.172Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.172Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.176Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.176Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.176Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.180Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.180Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.180Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.196Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.196Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.196Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.200Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.200Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.200Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.202Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.202Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.202Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.799Z - Established a connection. Number of open connections: 41 +[NX Daemon Server] - 2023-12-20T16:16:08.799Z - Closed a connection. Number of open connections: 40 +[NX Daemon Server] - 2023-12-20T16:16:08.799Z - Established a connection. Number of open connections: 41 +[NX Daemon Server] - 2023-12-20T16:16:08.800Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:08.801Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:08.802Z - Time taken for 'total for creating and serializing project graph' 0.0931248664855957ms +[NX Daemon Server] - 2023-12-20T16:16:08.808Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:08.809Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:08.840Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.840Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.840Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.851Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.851Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.851Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.854Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.855Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.855Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:08.859Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.859Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:08.859Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.879Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:08.880Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:08.881Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.881Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:08.881Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.398Z - Established a connection. Number of open connections: 42 +[NX Daemon Server] - 2023-12-20T16:16:09.398Z - Closed a connection. Number of open connections: 41 +[NX Daemon Server] - 2023-12-20T16:16:09.399Z - Established a connection. Number of open connections: 42 +[NX Daemon Server] - 2023-12-20T16:16:09.400Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:09.400Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:09.402Z - Time taken for 'total for creating and serializing project graph' 0.05116605758666992ms +[NX Daemon Server] - 2023-12-20T16:16:09.406Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:09.406Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:16:09.435Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.435Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.435Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.444Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.444Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.444Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.448Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.448Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.448Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.451Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.451Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:09.451Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.471Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:09.973Z - Established a connection. Number of open connections: 43 +[NX Daemon Server] - 2023-12-20T16:16:09.973Z - Closed a connection. Number of open connections: 42 +[NX Daemon Server] - 2023-12-20T16:16:09.974Z - Established a connection. Number of open connections: 43 +[NX Daemon Server] - 2023-12-20T16:16:09.975Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:09.975Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:09.977Z - Time taken for 'total for creating and serializing project graph' 0.06533312797546387ms +[NX Daemon Server] - 2023-12-20T16:16:09.982Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:09.982Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:10.011Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.011Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.011Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.021Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.021Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.021Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.024Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.024Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.024Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.027Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.027Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.027Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.044Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.044Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.046Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.046Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.046Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.549Z - Established a connection. Number of open connections: 44 +[NX Daemon Server] - 2023-12-20T16:16:10.549Z - Closed a connection. Number of open connections: 43 +[NX Daemon Server] - 2023-12-20T16:16:10.549Z - Established a connection. Number of open connections: 44 +[NX Daemon Server] - 2023-12-20T16:16:10.550Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:10.550Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:10.552Z - Time taken for 'total for creating and serializing project graph' 0.06804203987121582ms +[NX Daemon Server] - 2023-12-20T16:16:10.557Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:10.557Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:10.586Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.593Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.593Z - Handled HASH_TASKS. Handling time: 2. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:10.603Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.604Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.604Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:10.607Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.607Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.607Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.610Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.610Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:10.610Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.631Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.631Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.631Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.634Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:10.634Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.166Z - Established a connection. Number of open connections: 45 +[NX Daemon Server] - 2023-12-20T16:16:11.166Z - Closed a connection. Number of open connections: 44 +[NX Daemon Server] - 2023-12-20T16:16:11.166Z - Established a connection. Number of open connections: 45 +[NX Daemon Server] - 2023-12-20T16:16:11.167Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:11.167Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:11.169Z - Time taken for 'total for creating and serializing project graph' 0.09649991989135742ms +[NX Daemon Server] - 2023-12-20T16:16:11.175Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:11.175Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:11.203Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.203Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.203Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.212Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.212Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.212Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.215Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.215Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.215Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.218Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.218Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.218Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.242Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.242Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.242Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.244Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.244Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.734Z - Established a connection. Number of open connections: 46 +[NX Daemon Server] - 2023-12-20T16:16:11.734Z - Closed a connection. Number of open connections: 45 +[NX Daemon Server] - 2023-12-20T16:16:11.734Z - Established a connection. Number of open connections: 46 +[NX Daemon Server] - 2023-12-20T16:16:11.735Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:11.735Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:11.737Z - Time taken for 'total for creating and serializing project graph' 0.04987502098083496ms +[NX Daemon Server] - 2023-12-20T16:16:11.742Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:11.742Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:11.771Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.771Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.771Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.779Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.779Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.779Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.782Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.783Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.783Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:11.786Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.786Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:11.786Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.807Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.807Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:11.809Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.809Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:11.809Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.305Z - Established a connection. Number of open connections: 47 +[NX Daemon Server] - 2023-12-20T16:16:12.306Z - Closed a connection. Number of open connections: 46 +[NX Daemon Server] - 2023-12-20T16:16:12.306Z - Established a connection. Number of open connections: 47 +[NX Daemon Server] - 2023-12-20T16:16:12.307Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:12.307Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:12.309Z - Time taken for 'total for creating and serializing project graph' 0.05395793914794922ms +[NX Daemon Server] - 2023-12-20T16:16:12.314Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:12.314Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:12.342Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.342Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.342Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.350Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.350Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.350Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.353Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.353Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.353Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.357Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.357Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.357Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.378Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.378Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.378Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.379Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.379Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.875Z - Established a connection. Number of open connections: 48 +[NX Daemon Server] - 2023-12-20T16:16:12.875Z - Closed a connection. Number of open connections: 47 +[NX Daemon Server] - 2023-12-20T16:16:12.876Z - Established a connection. Number of open connections: 48 +[NX Daemon Server] - 2023-12-20T16:16:12.876Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:12.876Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:12.878Z - Time taken for 'total for creating and serializing project graph' 0.04745817184448242ms +[NX Daemon Server] - 2023-12-20T16:16:12.883Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:12.883Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:12.911Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.911Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.911Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.919Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.919Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.919Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.922Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.922Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.922Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.925Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.925Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:12.926Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:12.942Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.942Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:12.944Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.944Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:12.944Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.436Z - Established a connection. Number of open connections: 49 +[NX Daemon Server] - 2023-12-20T16:16:13.437Z - Closed a connection. Number of open connections: 48 +[NX Daemon Server] - 2023-12-20T16:16:13.437Z - Established a connection. Number of open connections: 49 +[NX Daemon Server] - 2023-12-20T16:16:13.438Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:13.438Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:13.440Z - Time taken for 'total for creating and serializing project graph' 0.07220792770385742ms +[NX Daemon Server] - 2023-12-20T16:16:13.445Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:13.445Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:13.479Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.479Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.479Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.488Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.488Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.488Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.493Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.493Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.493Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.496Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.496Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:13.496Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.524Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:13.524Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:13.524Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.525Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:13.525Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.051Z - Established a connection. Number of open connections: 50 +[NX Daemon Server] - 2023-12-20T16:16:14.051Z - Closed a connection. Number of open connections: 49 +[NX Daemon Server] - 2023-12-20T16:16:14.051Z - Established a connection. Number of open connections: 50 +[NX Daemon Server] - 2023-12-20T16:16:14.052Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:14.052Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:14.054Z - Time taken for 'total for creating and serializing project graph' 0.08045816421508789ms +[NX Daemon Server] - 2023-12-20T16:16:14.060Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:14.060Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:14.089Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.089Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.089Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.101Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.101Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.101Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.105Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.105Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.105Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.108Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.108Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.108Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.133Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.133Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.133Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.134Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.134Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.134Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.135Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.135Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.135Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.652Z - Established a connection. Number of open connections: 51 +[NX Daemon Server] - 2023-12-20T16:16:14.652Z - Closed a connection. Number of open connections: 50 +[NX Daemon Server] - 2023-12-20T16:16:14.653Z - Established a connection. Number of open connections: 51 +[NX Daemon Server] - 2023-12-20T16:16:14.653Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:14.654Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:14.655Z - Time taken for 'total for creating and serializing project graph' 0.05437517166137695ms +[NX Daemon Server] - 2023-12-20T16:16:14.660Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:14.660Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:16:14.688Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.688Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.688Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.698Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.698Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.698Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.701Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.701Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.701Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.704Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.704Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:14.704Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.722Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.722Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:14.724Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.724Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:14.724Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.266Z - Established a connection. Number of open connections: 52 +[NX Daemon Server] - 2023-12-20T16:16:15.267Z - Closed a connection. Number of open connections: 51 +[NX Daemon Server] - 2023-12-20T16:16:15.267Z - Established a connection. Number of open connections: 52 +[NX Daemon Server] - 2023-12-20T16:16:15.268Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:15.268Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:15.270Z - Time taken for 'total for creating and serializing project graph' 0.046833038330078125ms +[NX Daemon Server] - 2023-12-20T16:16:15.275Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:15.275Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:15.304Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.304Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.304Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.312Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.312Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.312Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.316Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.316Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.316Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.319Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.319Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.319Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.341Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.341Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.342Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:15.342Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.342Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.342Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.344Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.344Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.344Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.856Z - Established a connection. Number of open connections: 53 +[NX Daemon Server] - 2023-12-20T16:16:15.857Z - Closed a connection. Number of open connections: 52 +[NX Daemon Server] - 2023-12-20T16:16:15.857Z - Established a connection. Number of open connections: 53 +[NX Daemon Server] - 2023-12-20T16:16:15.858Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:15.858Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:15.860Z - Time taken for 'total for creating and serializing project graph' 0.05312514305114746ms +[NX Daemon Server] - 2023-12-20T16:16:15.865Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:15.865Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:15.893Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.893Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.893Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.902Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.902Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.902Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.906Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.906Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.906Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.910Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.910Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:15.910Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.932Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.932Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.932Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.933Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.933Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.933Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:15.934Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.935Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:15.935Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:16.461Z - Established a connection. Number of open connections: 54 +[NX Daemon Server] - 2023-12-20T16:16:16.461Z - Closed a connection. Number of open connections: 53 +[NX Daemon Server] - 2023-12-20T16:16:16.461Z - Established a connection. Number of open connections: 54 +[NX Daemon Server] - 2023-12-20T16:16:16.462Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:16.462Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:16.464Z - Time taken for 'total for creating and serializing project graph' 0.05612492561340332ms +[NX Daemon Server] - 2023-12-20T16:16:16.469Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:16.469Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:16.498Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.498Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.498Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:16.508Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.508Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.508Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:16.512Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.512Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.512Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:16.515Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.515Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:16.515Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:16.536Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:16.536Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:16.536Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:16.540Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:16.540Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:16.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:16.541Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:16.541Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:16.541Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.097Z - Established a connection. Number of open connections: 55 +[NX Daemon Server] - 2023-12-20T16:16:17.097Z - Closed a connection. Number of open connections: 54 +[NX Daemon Server] - 2023-12-20T16:16:17.098Z - Established a connection. Number of open connections: 55 +[NX Daemon Server] - 2023-12-20T16:16:17.099Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:17.099Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:17.100Z - Time taken for 'total for creating and serializing project graph' 0.058750152587890625ms +[NX Daemon Server] - 2023-12-20T16:16:17.105Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:17.105Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:16:17.138Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.138Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.138Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:17.147Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.147Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.147Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.150Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.150Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.151Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:17.154Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.154Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.154Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.172Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.172Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.172Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.173Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.173Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.683Z - Established a connection. Number of open connections: 56 +[NX Daemon Server] - 2023-12-20T16:16:17.683Z - Closed a connection. Number of open connections: 55 +[NX Daemon Server] - 2023-12-20T16:16:17.683Z - Established a connection. Number of open connections: 56 +[NX Daemon Server] - 2023-12-20T16:16:17.684Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:17.684Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:17.686Z - Time taken for 'total for creating and serializing project graph' 0.044415950775146484ms +[NX Daemon Server] - 2023-12-20T16:16:17.691Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:17.691Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:17.718Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.718Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.718Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.727Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.727Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.727Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.731Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.731Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.731Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.734Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.734Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:17.734Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.263Z - Established a connection. Number of open connections: 57 +[NX Daemon Server] - 2023-12-20T16:16:18.263Z - Closed a connection. Number of open connections: 56 +[NX Daemon Server] - 2023-12-20T16:16:18.264Z - Established a connection. Number of open connections: 57 +[NX Daemon Server] - 2023-12-20T16:16:18.265Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:18.265Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:18.267Z - Time taken for 'total for creating and serializing project graph' 0.0440828800201416ms +[NX Daemon Server] - 2023-12-20T16:16:18.271Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:18.272Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:18.310Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.310Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.310Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.319Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.319Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.319Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.322Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.322Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.322Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.325Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.326Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.326Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:18.343Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.343Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.347Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.347Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.347Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.851Z - Established a connection. Number of open connections: 58 +[NX Daemon Server] - 2023-12-20T16:16:18.852Z - Closed a connection. Number of open connections: 57 +[NX Daemon Server] - 2023-12-20T16:16:18.852Z - Established a connection. Number of open connections: 58 +[NX Daemon Server] - 2023-12-20T16:16:18.853Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:18.853Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:18.855Z - Time taken for 'total for creating and serializing project graph' 0.0442500114440918ms +[NX Daemon Server] - 2023-12-20T16:16:18.859Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:18.860Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:18.891Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.891Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.891Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.900Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.900Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.900Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.905Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.905Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.905Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.908Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.908Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:18.908Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.924Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.924Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.924Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.925Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.925Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.925Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:18.926Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.926Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:18.926Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.430Z - Established a connection. Number of open connections: 59 +[NX Daemon Server] - 2023-12-20T16:16:19.430Z - Closed a connection. Number of open connections: 58 +[NX Daemon Server] - 2023-12-20T16:16:19.430Z - Established a connection. Number of open connections: 59 +[NX Daemon Server] - 2023-12-20T16:16:19.431Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:19.431Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:19.433Z - Time taken for 'total for creating and serializing project graph' 0.04654097557067871ms +[NX Daemon Server] - 2023-12-20T16:16:19.438Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:19.438Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:19.469Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.469Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.469Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.478Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.478Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.478Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.482Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.482Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.482Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.485Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.485Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:19.485Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.502Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.502Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:19.504Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:19.504Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:19.504Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.029Z - Established a connection. Number of open connections: 60 +[NX Daemon Server] - 2023-12-20T16:16:20.029Z - Closed a connection. Number of open connections: 59 +[NX Daemon Server] - 2023-12-20T16:16:20.030Z - Established a connection. Number of open connections: 60 +[NX Daemon Server] - 2023-12-20T16:16:20.031Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:20.031Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:20.038Z - Time taken for 'total for creating and serializing project graph' 0.09179186820983887ms +[NX Daemon Server] - 2023-12-20T16:16:20.044Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:20.044Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 13. +[NX Daemon Server] - 2023-12-20T16:16:20.077Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.077Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.077Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.086Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.087Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.087Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:20.090Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.090Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.090Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.094Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.094Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.094Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.113Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.113Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.113Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.115Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.115Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.115Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.116Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.116Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.116Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.658Z - Established a connection. Number of open connections: 61 +[NX Daemon Server] - 2023-12-20T16:16:20.659Z - Closed a connection. Number of open connections: 60 +[NX Daemon Server] - 2023-12-20T16:16:20.659Z - Established a connection. Number of open connections: 61 +[NX Daemon Server] - 2023-12-20T16:16:20.660Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:20.660Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:20.662Z - Time taken for 'total for creating and serializing project graph' 0.04670882225036621ms +[NX Daemon Server] - 2023-12-20T16:16:20.667Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:20.667Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:20.695Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.695Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.704Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.704Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.704Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.708Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.708Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.708Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.712Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.712Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:20.712Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.737Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.737Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.737Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.738Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.738Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.738Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:20.739Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.739Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:20.739Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.274Z - Established a connection. Number of open connections: 62 +[NX Daemon Server] - 2023-12-20T16:16:21.274Z - Closed a connection. Number of open connections: 61 +[NX Daemon Server] - 2023-12-20T16:16:21.275Z - Established a connection. Number of open connections: 62 +[NX Daemon Server] - 2023-12-20T16:16:21.276Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:21.276Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:21.278Z - Time taken for 'total for creating and serializing project graph' 0.06145787239074707ms +[NX Daemon Server] - 2023-12-20T16:16:21.284Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:21.284Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:21.312Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.312Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.312Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.321Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.321Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.321Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.325Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.325Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.325Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.328Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.328Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.329Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:21.346Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.346Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.346Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.348Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.348Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.351Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.351Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.351Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.894Z - Established a connection. Number of open connections: 63 +[NX Daemon Server] - 2023-12-20T16:16:21.894Z - Closed a connection. Number of open connections: 62 +[NX Daemon Server] - 2023-12-20T16:16:21.895Z - Established a connection. Number of open connections: 63 +[NX Daemon Server] - 2023-12-20T16:16:21.896Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:21.896Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:21.910Z - Time taken for 'total for creating and serializing project graph' 0.10312485694885254ms +[NX Daemon Server] - 2023-12-20T16:16:21.915Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:21.916Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 20. +[NX Daemon Server] - 2023-12-20T16:16:21.945Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.945Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.945Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.954Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.954Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.954Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.958Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.958Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.958Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.961Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.961Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:21.961Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.982Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.982Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.982Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.984Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.984Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.984Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:21.985Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.985Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:21.985Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:22.594Z - Established a connection. Number of open connections: 64 +[NX Daemon Server] - 2023-12-20T16:16:22.595Z - Closed a connection. Number of open connections: 63 +[NX Daemon Server] - 2023-12-20T16:16:22.595Z - Established a connection. Number of open connections: 64 +[NX Daemon Server] - 2023-12-20T16:16:22.596Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:22.596Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:22.599Z - Time taken for 'total for creating and serializing project graph' 0.06816577911376953ms +[NX Daemon Server] - 2023-12-20T16:16:22.606Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:22.607Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. +[NX Daemon Server] - 2023-12-20T16:16:22.641Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.641Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.641Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:22.651Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.652Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.652Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:22.655Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.656Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.656Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:22.659Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.659Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:22.659Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:22.684Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:22.684Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:22.685Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:22.685Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:22.685Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.307Z - Established a connection. Number of open connections: 65 +[NX Daemon Server] - 2023-12-20T16:16:23.307Z - Closed a connection. Number of open connections: 64 +[NX Daemon Server] - 2023-12-20T16:16:23.307Z - Established a connection. Number of open connections: 65 +[NX Daemon Server] - 2023-12-20T16:16:23.308Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:23.308Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:23.310Z - Time taken for 'total for creating and serializing project graph' 0.06779217720031738ms +[NX Daemon Server] - 2023-12-20T16:16:23.316Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:23.316Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:23.347Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.347Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.347Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.356Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.356Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.356Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.362Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.363Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.363Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:23.367Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.367Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:23.367Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.387Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:23.387Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:23.387Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.393Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:23.393Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:23.393Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.394Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:23.394Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:23.394Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:23.973Z - Established a connection. Number of open connections: 66 +[NX Daemon Server] - 2023-12-20T16:16:23.973Z - Closed a connection. Number of open connections: 65 +[NX Daemon Server] - 2023-12-20T16:16:23.974Z - Established a connection. Number of open connections: 66 +[NX Daemon Server] - 2023-12-20T16:16:23.975Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:23.975Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:23.977Z - Time taken for 'total for creating and serializing project graph' 0.07312512397766113ms +[NX Daemon Server] - 2023-12-20T16:16:23.986Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:23.986Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. +[NX Daemon Server] - 2023-12-20T16:16:24.017Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.017Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.017Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.027Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.027Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.027Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.031Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.031Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.032Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:24.035Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.035Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.035Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.056Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.056Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.056Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.059Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.059Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.059Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.060Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.061Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.061Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:24.637Z - Established a connection. Number of open connections: 67 +[NX Daemon Server] - 2023-12-20T16:16:24.637Z - Closed a connection. Number of open connections: 66 +[NX Daemon Server] - 2023-12-20T16:16:24.637Z - Established a connection. Number of open connections: 67 +[NX Daemon Server] - 2023-12-20T16:16:24.638Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:24.638Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:24.640Z - Time taken for 'total for creating and serializing project graph' 0.057582855224609375ms +[NX Daemon Server] - 2023-12-20T16:16:24.645Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:24.645Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:24.677Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.677Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.677Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.687Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.687Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.687Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.692Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.692Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.692Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.695Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.695Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:24.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.715Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.715Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.716Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:24.716Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.716Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.716Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:24.718Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.718Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:24.718Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.304Z - Established a connection. Number of open connections: 68 +[NX Daemon Server] - 2023-12-20T16:16:25.304Z - Closed a connection. Number of open connections: 67 +[NX Daemon Server] - 2023-12-20T16:16:25.305Z - Established a connection. Number of open connections: 68 +[NX Daemon Server] - 2023-12-20T16:16:25.306Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:25.306Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:25.308Z - Time taken for 'total for creating and serializing project graph' 0.0829169750213623ms +[NX Daemon Server] - 2023-12-20T16:16:25.311Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:25.311Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. +[NX Daemon Server] - 2023-12-20T16:16:25.343Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.343Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.343Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.352Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.352Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.352Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.357Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.357Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.357Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.361Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.361Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:25.361Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.380Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:25.380Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:25.380Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.382Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:25.382Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:25.382Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.383Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:25.383Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:25.383Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:25.978Z - Established a connection. Number of open connections: 69 +[NX Daemon Server] - 2023-12-20T16:16:25.979Z - Closed a connection. Number of open connections: 68 +[NX Daemon Server] - 2023-12-20T16:16:25.979Z - Established a connection. Number of open connections: 69 +[NX Daemon Server] - 2023-12-20T16:16:25.980Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:25.980Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:25.982Z - Time taken for 'total for creating and serializing project graph' 0.04545783996582031ms +[NX Daemon Server] - 2023-12-20T16:16:25.987Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:25.987Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:26.022Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.023Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.023Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:26.034Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.035Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.035Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:26.039Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.039Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.039Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.042Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.043Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.043Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:26.062Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.062Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.062Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.065Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.065Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.065Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.066Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.066Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.066Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.643Z - Established a connection. Number of open connections: 70 +[NX Daemon Server] - 2023-12-20T16:16:26.644Z - Closed a connection. Number of open connections: 69 +[NX Daemon Server] - 2023-12-20T16:16:26.644Z - Established a connection. Number of open connections: 70 +[NX Daemon Server] - 2023-12-20T16:16:26.645Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:26.645Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:26.647Z - Time taken for 'total for creating and serializing project graph' 0.06504106521606445ms +[NX Daemon Server] - 2023-12-20T16:16:26.652Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:26.652Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:26.684Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.684Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.684Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.694Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.694Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:26.699Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.699Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.699Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.702Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.702Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:26.702Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.723Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:26.724Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:26.727Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.727Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:26.727Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.319Z - Established a connection. Number of open connections: 71 +[NX Daemon Server] - 2023-12-20T16:16:27.319Z - Closed a connection. Number of open connections: 70 +[NX Daemon Server] - 2023-12-20T16:16:27.319Z - Established a connection. Number of open connections: 71 +[NX Daemon Server] - 2023-12-20T16:16:27.320Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:27.320Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:27.322Z - Time taken for 'total for creating and serializing project graph' 0.05454206466674805ms +[NX Daemon Server] - 2023-12-20T16:16:27.328Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:27.328Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:27.358Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.358Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.358Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.369Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.369Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.369Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.373Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.373Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.373Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.376Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.376Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:27.376Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.398Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:27.398Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:27.398Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.399Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:27.399Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:27.399Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.400Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:27.400Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:27.400Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:27.993Z - Established a connection. Number of open connections: 72 +[NX Daemon Server] - 2023-12-20T16:16:27.993Z - Closed a connection. Number of open connections: 71 +[NX Daemon Server] - 2023-12-20T16:16:27.993Z - Established a connection. Number of open connections: 72 +[NX Daemon Server] - 2023-12-20T16:16:27.994Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:27.995Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:27.997Z - Time taken for 'total for creating and serializing project graph' 0.058875083923339844ms +[NX Daemon Server] - 2023-12-20T16:16:28.002Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:28.002Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:28.049Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.049Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.049Z - Handled HASH_TASKS. Handling time: 13. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.060Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.060Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.060Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.064Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.064Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.064Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.067Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.067Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.067Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.090Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.090Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.090Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.094Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.094Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.688Z - Established a connection. Number of open connections: 73 +[NX Daemon Server] - 2023-12-20T16:16:28.688Z - Closed a connection. Number of open connections: 72 +[NX Daemon Server] - 2023-12-20T16:16:28.689Z - Established a connection. Number of open connections: 73 +[NX Daemon Server] - 2023-12-20T16:16:28.690Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:28.690Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:28.691Z - Time taken for 'total for creating and serializing project graph' 0.06741595268249512ms +[NX Daemon Server] - 2023-12-20T16:16:28.697Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:28.697Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:28.728Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.728Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.728Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.739Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.739Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.739Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.744Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.744Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.744Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.748Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.748Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:28.748Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.773Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.773Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:28.776Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.776Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:28.776Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:29.342Z - Established a connection. Number of open connections: 74 +[NX Daemon Server] - 2023-12-20T16:16:29.342Z - Closed a connection. Number of open connections: 73 +[NX Daemon Server] - 2023-12-20T16:16:29.343Z - Established a connection. Number of open connections: 74 +[NX Daemon Server] - 2023-12-20T16:16:29.344Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:29.345Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:29.347Z - Time taken for 'total for creating and serializing project graph' 0.06862497329711914ms +[NX Daemon Server] - 2023-12-20T16:16:29.353Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:29.353Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:29.386Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.386Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.386Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:29.396Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.396Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.396Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:29.400Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.400Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.400Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:29.403Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.404Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:29.404Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:29.424Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:29.424Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:29.424Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:29.425Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:29.425Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:29.425Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:29.428Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:29.428Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:29.428Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.018Z - Established a connection. Number of open connections: 75 +[NX Daemon Server] - 2023-12-20T16:16:30.018Z - Closed a connection. Number of open connections: 74 +[NX Daemon Server] - 2023-12-20T16:16:30.019Z - Established a connection. Number of open connections: 75 +[NX Daemon Server] - 2023-12-20T16:16:30.020Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:30.020Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:30.022Z - Time taken for 'total for creating and serializing project graph' 0.05112481117248535ms +[NX Daemon Server] - 2023-12-20T16:16:30.027Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:30.027Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:30.059Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.059Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.059Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.069Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.069Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.069Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.073Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.073Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.073Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.077Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.077Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.077Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.098Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.098Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.098Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.100Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.101Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.101Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:30.103Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.103Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.103Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.679Z - Established a connection. Number of open connections: 76 +[NX Daemon Server] - 2023-12-20T16:16:30.679Z - Closed a connection. Number of open connections: 75 +[NX Daemon Server] - 2023-12-20T16:16:30.679Z - Established a connection. Number of open connections: 76 +[NX Daemon Server] - 2023-12-20T16:16:30.681Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:30.681Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:30.683Z - Time taken for 'total for creating and serializing project graph' 0.08595800399780273ms +[NX Daemon Server] - 2023-12-20T16:16:30.688Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:30.688Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:30.725Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.725Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.725Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.736Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.736Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.736Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.741Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.741Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.741Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.744Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.744Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:30.744Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.765Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.765Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.765Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.769Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.769Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.769Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:30.770Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.770Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:30.770Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:31.372Z - Established a connection. Number of open connections: 77 +[NX Daemon Server] - 2023-12-20T16:16:31.372Z - Closed a connection. Number of open connections: 76 +[NX Daemon Server] - 2023-12-20T16:16:31.372Z - Established a connection. Number of open connections: 77 +[NX Daemon Server] - 2023-12-20T16:16:31.373Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:31.373Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:31.375Z - Time taken for 'total for creating and serializing project graph' 0.07895803451538086ms +[NX Daemon Server] - 2023-12-20T16:16:31.384Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:31.384Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. +[NX Daemon Server] - 2023-12-20T16:16:31.414Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.414Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.414Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:31.426Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.426Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.426Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:31.430Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.430Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.430Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:31.435Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.435Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:31.435Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:31.454Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:31.454Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:31.454Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:31.454Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:31.454Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:31.455Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:31.459Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:31.460Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:31.460Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:32.045Z - Established a connection. Number of open connections: 78 +[NX Daemon Server] - 2023-12-20T16:16:32.045Z - Closed a connection. Number of open connections: 77 +[NX Daemon Server] - 2023-12-20T16:16:32.045Z - Established a connection. Number of open connections: 78 +[NX Daemon Server] - 2023-12-20T16:16:32.047Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:32.047Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:32.049Z - Time taken for 'total for creating and serializing project graph' 0.051917076110839844ms +[NX Daemon Server] - 2023-12-20T16:16:32.054Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:32.054Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:32.085Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.085Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.085Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.095Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.096Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.096Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:32.100Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.100Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.100Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.103Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.103Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.103Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.127Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.127Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.127Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.128Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.128Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.128Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.130Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.130Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.130Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.706Z - Established a connection. Number of open connections: 79 +[NX Daemon Server] - 2023-12-20T16:16:32.707Z - Closed a connection. Number of open connections: 78 +[NX Daemon Server] - 2023-12-20T16:16:32.707Z - Established a connection. Number of open connections: 79 +[NX Daemon Server] - 2023-12-20T16:16:32.708Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:32.708Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:32.710Z - Time taken for 'total for creating and serializing project graph' 0.051332950592041016ms +[NX Daemon Server] - 2023-12-20T16:16:32.715Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:32.715Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:32.752Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.752Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.752Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.761Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.761Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.761Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.766Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.766Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.766Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.769Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.769Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:32.769Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.789Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.789Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.789Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.792Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.792Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.792Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:32.794Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.794Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:32.794Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:33.397Z - Established a connection. Number of open connections: 80 +[NX Daemon Server] - 2023-12-20T16:16:33.397Z - Closed a connection. Number of open connections: 79 +[NX Daemon Server] - 2023-12-20T16:16:33.397Z - Established a connection. Number of open connections: 80 +[NX Daemon Server] - 2023-12-20T16:16:33.399Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:33.399Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:33.401Z - Time taken for 'total for creating and serializing project graph' 0.08829188346862793ms +[NX Daemon Server] - 2023-12-20T16:16:33.407Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:33.407Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:33.438Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.438Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.438Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:33.448Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.448Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.448Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:33.452Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.452Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.452Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:33.456Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.456Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:33.456Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:33.479Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:33.479Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:33.479Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:33.481Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:33.482Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:33.482Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:33.483Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:33.483Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:33.483Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.078Z - Established a connection. Number of open connections: 81 +[NX Daemon Server] - 2023-12-20T16:16:34.078Z - Closed a connection. Number of open connections: 80 +[NX Daemon Server] - 2023-12-20T16:16:34.079Z - Established a connection. Number of open connections: 81 +[NX Daemon Server] - 2023-12-20T16:16:34.080Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:34.080Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:34.082Z - Time taken for 'total for creating and serializing project graph' 0.09075021743774414ms +[NX Daemon Server] - 2023-12-20T16:16:34.087Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:34.087Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:34.128Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.128Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.128Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.138Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.139Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.139Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:34.144Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.144Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.144Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.147Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.147Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.147Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.167Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.167Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.167Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.168Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.168Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.168Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.170Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.170Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.170Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.773Z - Established a connection. Number of open connections: 82 +[NX Daemon Server] - 2023-12-20T16:16:34.773Z - Closed a connection. Number of open connections: 81 +[NX Daemon Server] - 2023-12-20T16:16:34.774Z - Established a connection. Number of open connections: 82 +[NX Daemon Server] - 2023-12-20T16:16:34.775Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:34.775Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:34.777Z - Time taken for 'total for creating and serializing project graph' 0.06537508964538574ms +[NX Daemon Server] - 2023-12-20T16:16:34.782Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:34.782Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:34.812Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.812Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.812Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.823Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.823Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.823Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.827Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.827Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.827Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.831Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.831Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:34.831Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.854Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.854Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.854Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.856Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.856Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.856Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:34.857Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.858Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:34.858Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:35.459Z - Established a connection. Number of open connections: 83 +[NX Daemon Server] - 2023-12-20T16:16:35.459Z - Closed a connection. Number of open connections: 82 +[NX Daemon Server] - 2023-12-20T16:16:35.459Z - Established a connection. Number of open connections: 83 +[NX Daemon Server] - 2023-12-20T16:16:35.460Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:35.460Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:35.462Z - Time taken for 'total for creating and serializing project graph' 0.0733330249786377ms +[NX Daemon Server] - 2023-12-20T16:16:35.468Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:35.468Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:35.499Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.499Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.499Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:35.510Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.510Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.510Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:35.514Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.514Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.514Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:35.517Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.518Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:35.518Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:35.541Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:35.541Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:35.543Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:35.543Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:35.543Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.132Z - Established a connection. Number of open connections: 84 +[NX Daemon Server] - 2023-12-20T16:16:36.132Z - Closed a connection. Number of open connections: 83 +[NX Daemon Server] - 2023-12-20T16:16:36.132Z - Established a connection. Number of open connections: 84 +[NX Daemon Server] - 2023-12-20T16:16:36.133Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:36.133Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:36.136Z - Time taken for 'total for creating and serializing project graph' 0.04954195022583008ms +[NX Daemon Server] - 2023-12-20T16:16:36.141Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:36.141Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:36.171Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.171Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.171Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.181Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.181Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.181Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.185Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.185Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.185Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.191Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.191Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.191Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.211Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.211Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.211Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.212Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.212Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.212Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.218Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.219Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.219Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:36.804Z - Established a connection. Number of open connections: 85 +[NX Daemon Server] - 2023-12-20T16:16:36.805Z - Closed a connection. Number of open connections: 84 +[NX Daemon Server] - 2023-12-20T16:16:36.805Z - Established a connection. Number of open connections: 85 +[NX Daemon Server] - 2023-12-20T16:16:36.806Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:36.806Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:36.808Z - Time taken for 'total for creating and serializing project graph' 0.08866715431213379ms +[NX Daemon Server] - 2023-12-20T16:16:36.813Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:36.813Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:36.844Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.844Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.844Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.854Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.854Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.854Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.858Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.858Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.858Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.862Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.862Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:36.862Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.882Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.882Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:36.886Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.886Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:36.886Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:37.511Z - Established a connection. Number of open connections: 86 +[NX Daemon Server] - 2023-12-20T16:16:37.512Z - Closed a connection. Number of open connections: 85 +[NX Daemon Server] - 2023-12-20T16:16:37.512Z - Established a connection. Number of open connections: 86 +[NX Daemon Server] - 2023-12-20T16:16:37.513Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:37.513Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:37.515Z - Time taken for 'total for creating and serializing project graph' 0.06129193305969238ms +[NX Daemon Server] - 2023-12-20T16:16:37.522Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:37.522Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. +[NX Daemon Server] - 2023-12-20T16:16:37.553Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.553Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.553Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:37.565Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.565Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.565Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:37.569Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.569Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.570Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:37.573Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.573Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:37.573Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:37.596Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:37.596Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:37.596Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:37.597Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:37.597Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:37.597Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:37.599Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:37.600Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:37.600Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:38.166Z - Established a connection. Number of open connections: 87 +[NX Daemon Server] - 2023-12-20T16:16:38.166Z - Closed a connection. Number of open connections: 86 +[NX Daemon Server] - 2023-12-20T16:16:38.166Z - Established a connection. Number of open connections: 87 +[NX Daemon Server] - 2023-12-20T16:16:38.167Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:38.167Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:38.169Z - Time taken for 'total for creating and serializing project graph' 0.04441690444946289ms +[NX Daemon Server] - 2023-12-20T16:16:38.174Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:38.174Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:38.202Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.202Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.202Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.212Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.212Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.212Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.216Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.216Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.216Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.219Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.219Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.219Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.237Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.237Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.237Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.240Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.240Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.825Z - Established a connection. Number of open connections: 88 +[NX Daemon Server] - 2023-12-20T16:16:38.825Z - Closed a connection. Number of open connections: 87 +[NX Daemon Server] - 2023-12-20T16:16:38.825Z - Established a connection. Number of open connections: 88 +[NX Daemon Server] - 2023-12-20T16:16:38.826Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:38.826Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:38.828Z - Time taken for 'total for creating and serializing project graph' 0.0625ms +[NX Daemon Server] - 2023-12-20T16:16:38.833Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:38.833Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:38.880Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.880Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.880Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.895Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.895Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.895Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.903Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.903Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.903Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.908Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.909Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:38.909Z - Handled HASH_TASKS. Handling time: 3. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:38.934Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.934Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.934Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.936Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.936Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.936Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:38.938Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.938Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:38.938Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:39.508Z - Established a connection. Number of open connections: 89 +[NX Daemon Server] - 2023-12-20T16:16:39.508Z - Closed a connection. Number of open connections: 88 +[NX Daemon Server] - 2023-12-20T16:16:39.509Z - Established a connection. Number of open connections: 89 +[NX Daemon Server] - 2023-12-20T16:16:39.510Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:39.510Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:39.511Z - Time taken for 'total for creating and serializing project graph' 0.04550004005432129ms +[NX Daemon Server] - 2023-12-20T16:16:39.516Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:39.516Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:16:39.544Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.545Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.545Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:39.553Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.553Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.553Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:39.557Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.557Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.557Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:39.560Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.560Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:39.560Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:39.578Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:39.578Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:39.578Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:39.579Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:39.579Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:39.579Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:39.581Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:39.581Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:39.581Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.188Z - Established a connection. Number of open connections: 90 +[NX Daemon Server] - 2023-12-20T16:16:40.188Z - Closed a connection. Number of open connections: 89 +[NX Daemon Server] - 2023-12-20T16:16:40.188Z - Established a connection. Number of open connections: 90 +[NX Daemon Server] - 2023-12-20T16:16:40.189Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:40.189Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:40.191Z - Time taken for 'total for creating and serializing project graph' 0.12333297729492188ms +[NX Daemon Server] - 2023-12-20T16:16:40.197Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:40.197Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:40.228Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.228Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.228Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.240Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.240Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.240Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.244Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.244Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.244Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.248Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.248Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.248Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.274Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.274Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.276Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.276Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.276Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.848Z - Established a connection. Number of open connections: 91 +[NX Daemon Server] - 2023-12-20T16:16:40.848Z - Closed a connection. Number of open connections: 90 +[NX Daemon Server] - 2023-12-20T16:16:40.848Z - Established a connection. Number of open connections: 91 +[NX Daemon Server] - 2023-12-20T16:16:40.849Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:40.849Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:40.852Z - Time taken for 'total for creating and serializing project graph' 0.05295896530151367ms +[NX Daemon Server] - 2023-12-20T16:16:40.856Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:40.856Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:40.888Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.888Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.888Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.899Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.899Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.899Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.902Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.902Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.902Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.906Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.906Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:40.906Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.929Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.930Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.930Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:40.932Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:40.932Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.522Z - Established a connection. Number of open connections: 92 +[NX Daemon Server] - 2023-12-20T16:16:41.522Z - Closed a connection. Number of open connections: 91 +[NX Daemon Server] - 2023-12-20T16:16:41.523Z - Established a connection. Number of open connections: 92 +[NX Daemon Server] - 2023-12-20T16:16:41.524Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:41.524Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:41.526Z - Time taken for 'total for creating and serializing project graph' 0.05137515068054199ms +[NX Daemon Server] - 2023-12-20T16:16:41.531Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:41.531Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:41.561Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.561Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.561Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.571Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.571Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.571Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.575Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.575Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.575Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.579Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.579Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:41.579Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:41.605Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:42.202Z - Established a connection. Number of open connections: 93 +[NX Daemon Server] - 2023-12-20T16:16:42.202Z - Closed a connection. Number of open connections: 92 +[NX Daemon Server] - 2023-12-20T16:16:42.202Z - Established a connection. Number of open connections: 93 +[NX Daemon Server] - 2023-12-20T16:16:42.203Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:42.203Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:42.206Z - Time taken for 'total for creating and serializing project graph' 0.05520796775817871ms +[NX Daemon Server] - 2023-12-20T16:16:42.210Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:42.210Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:42.240Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.240Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.240Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.250Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.250Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.250Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.255Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.255Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.255Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.259Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.259Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.259Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.281Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.281Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.281Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.285Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.285Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.285Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.286Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.286Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.286Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.838Z - Established a connection. Number of open connections: 94 +[NX Daemon Server] - 2023-12-20T16:16:42.838Z - Closed a connection. Number of open connections: 93 +[NX Daemon Server] - 2023-12-20T16:16:42.839Z - Established a connection. Number of open connections: 94 +[NX Daemon Server] - 2023-12-20T16:16:42.839Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:42.839Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:42.841Z - Time taken for 'total for creating and serializing project graph' 0.04574990272521973ms +[NX Daemon Server] - 2023-12-20T16:16:42.846Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:42.846Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:42.874Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.874Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.874Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.885Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.885Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.885Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.889Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.889Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.889Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.893Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.893Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:42.893Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.910Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:42.911Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:42.914Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.914Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:42.914Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:43.515Z - Established a connection. Number of open connections: 95 +[NX Daemon Server] - 2023-12-20T16:16:43.515Z - Closed a connection. Number of open connections: 94 +[NX Daemon Server] - 2023-12-20T16:16:43.516Z - Established a connection. Number of open connections: 95 +[NX Daemon Server] - 2023-12-20T16:16:43.517Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:43.517Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:43.519Z - Time taken for 'total for creating and serializing project graph' 0.04483389854431152ms +[NX Daemon Server] - 2023-12-20T16:16:43.524Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:43.524Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:43.558Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.558Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.558Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:43.569Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.569Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.569Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:43.573Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.573Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.573Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:43.576Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.576Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:43.576Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:43.595Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:43.595Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:43.595Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:43.597Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:43.598Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.187Z - Established a connection. Number of open connections: 96 +[NX Daemon Server] - 2023-12-20T16:16:44.188Z - Closed a connection. Number of open connections: 95 +[NX Daemon Server] - 2023-12-20T16:16:44.188Z - Established a connection. Number of open connections: 96 +[NX Daemon Server] - 2023-12-20T16:16:44.189Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:44.189Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:44.191Z - Time taken for 'total for creating and serializing project graph' 0.06433320045471191ms +[NX Daemon Server] - 2023-12-20T16:16:44.196Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:44.196Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:44.224Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.224Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.224Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.233Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.233Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.233Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.238Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.238Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.238Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.241Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.241Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.241Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.263Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.263Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.265Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:44.265Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:44.265Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.937Z - Established a connection. Number of open connections: 97 +[NX Daemon Server] - 2023-12-20T16:16:44.938Z - Closed a connection. Number of open connections: 96 +[NX Daemon Server] - 2023-12-20T16:16:44.938Z - Established a connection. Number of open connections: 97 +[NX Daemon Server] - 2023-12-20T16:16:44.939Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:44.939Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:44.941Z - Time taken for 'total for creating and serializing project graph' 0.07774996757507324ms +[NX Daemon Server] - 2023-12-20T16:16:44.947Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:44.947Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:44.980Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.980Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.980Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.990Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.990Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.990Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.995Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.995Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.995Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:44.999Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.999Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:44.999Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.060Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.060Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.060Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.061Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.061Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.061Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:45.067Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.067Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.067Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.700Z - Established a connection. Number of open connections: 98 +[NX Daemon Server] - 2023-12-20T16:16:45.700Z - Closed a connection. Number of open connections: 97 +[NX Daemon Server] - 2023-12-20T16:16:45.700Z - Established a connection. Number of open connections: 98 +[NX Daemon Server] - 2023-12-20T16:16:45.702Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:45.702Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:45.704Z - Time taken for 'total for creating and serializing project graph' 0.09320807456970215ms +[NX Daemon Server] - 2023-12-20T16:16:45.709Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:45.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:45.741Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.741Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.741Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.751Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.751Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.751Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.755Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.755Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.755Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.759Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.759Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:45.759Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.780Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.780Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.780Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.786Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:45.786Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:46.414Z - Established a connection. Number of open connections: 99 +[NX Daemon Server] - 2023-12-20T16:16:46.414Z - Closed a connection. Number of open connections: 98 +[NX Daemon Server] - 2023-12-20T16:16:46.414Z - Established a connection. Number of open connections: 99 +[NX Daemon Server] - 2023-12-20T16:16:46.415Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:46.415Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:46.417Z - Time taken for 'total for creating and serializing project graph' 0.05279088020324707ms +[NX Daemon Server] - 2023-12-20T16:16:46.423Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:46.423Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:46.455Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.455Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.455Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:46.466Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.466Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.466Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:46.470Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.471Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.471Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:46.474Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.475Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:46.475Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:46.496Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:46.496Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:46.496Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:46.500Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:46.500Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:46.500Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:46.503Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:46.503Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:46.503Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.152Z - Established a connection. Number of open connections: 100 +[NX Daemon Server] - 2023-12-20T16:16:47.152Z - Closed a connection. Number of open connections: 99 +[NX Daemon Server] - 2023-12-20T16:16:47.152Z - Established a connection. Number of open connections: 100 +[NX Daemon Server] - 2023-12-20T16:16:47.153Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:47.153Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:47.156Z - Time taken for 'total for creating and serializing project graph' 0.061625003814697266ms +[NX Daemon Server] - 2023-12-20T16:16:47.160Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:47.161Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:47.201Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.201Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.201Z - Handled HASH_TASKS. Handling time: 13. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.212Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.212Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.212Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.217Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.217Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.217Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.222Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.222Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.222Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.244Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.244Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.244Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.248Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.249Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:47.250Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.250Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.250Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.895Z - Established a connection. Number of open connections: 101 +[NX Daemon Server] - 2023-12-20T16:16:47.895Z - Closed a connection. Number of open connections: 100 +[NX Daemon Server] - 2023-12-20T16:16:47.896Z - Established a connection. Number of open connections: 101 +[NX Daemon Server] - 2023-12-20T16:16:47.897Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:47.897Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:47.899Z - Time taken for 'total for creating and serializing project graph' 0.057457923889160156ms +[NX Daemon Server] - 2023-12-20T16:16:47.904Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:47.905Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:47.933Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.933Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.933Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.944Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.944Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.944Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.948Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.948Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.948Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.951Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.951Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:47.951Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.970Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.970Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:47.972Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.972Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:47.972Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:48.572Z - Established a connection. Number of open connections: 102 +[NX Daemon Server] - 2023-12-20T16:16:48.572Z - Closed a connection. Number of open connections: 101 +[NX Daemon Server] - 2023-12-20T16:16:48.572Z - Established a connection. Number of open connections: 102 +[NX Daemon Server] - 2023-12-20T16:16:48.573Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:48.573Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:48.575Z - Time taken for 'total for creating and serializing project graph' 0.060791969299316406ms +[NX Daemon Server] - 2023-12-20T16:16:48.580Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:48.580Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:48.609Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.609Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.609Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:48.618Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.618Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.618Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:48.622Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.622Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.622Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:48.625Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.626Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:48.626Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:48.646Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:48.646Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:48.646Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:48.649Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:48.649Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:48.649Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:48.651Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:48.651Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:48.651Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.304Z - Established a connection. Number of open connections: 103 +[NX Daemon Server] - 2023-12-20T16:16:49.304Z - Established a connection. Number of open connections: 104 +[NX Daemon Server] - 2023-12-20T16:16:49.304Z - Closed a connection. Number of open connections: 103 +[NX Daemon Server] - 2023-12-20T16:16:49.305Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:49.305Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:49.307Z - Time taken for 'total for creating and serializing project graph' 0.10341715812683105ms +[NX Daemon Server] - 2023-12-20T16:16:49.312Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:49.312Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:49.340Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.340Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.340Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.350Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.350Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.350Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.354Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.354Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.354Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.357Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.357Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.357Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.379Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:49.379Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:49.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.381Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:49.381Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:49.381Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.382Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:49.382Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:49.382Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:49.956Z - Established a connection. Number of open connections: 104 +[NX Daemon Server] - 2023-12-20T16:16:49.956Z - Closed a connection. Number of open connections: 103 +[NX Daemon Server] - 2023-12-20T16:16:49.956Z - Established a connection. Number of open connections: 104 +[NX Daemon Server] - 2023-12-20T16:16:49.957Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:49.957Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:49.959Z - Time taken for 'total for creating and serializing project graph' 0.05716705322265625ms +[NX Daemon Server] - 2023-12-20T16:16:49.964Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:49.964Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:49.995Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.995Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:49.995Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.005Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.005Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.005Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.009Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.009Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.009Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.012Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.012Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.013Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.035Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.035Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.035Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.037Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.037Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.037Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.038Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.038Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.038Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.612Z - Established a connection. Number of open connections: 105 +[NX Daemon Server] - 2023-12-20T16:16:50.613Z - Closed a connection. Number of open connections: 104 +[NX Daemon Server] - 2023-12-20T16:16:50.613Z - Established a connection. Number of open connections: 105 +[NX Daemon Server] - 2023-12-20T16:16:50.615Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:50.615Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:50.617Z - Time taken for 'total for creating and serializing project graph' 0.11366701126098633ms +[NX Daemon Server] - 2023-12-20T16:16:50.619Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:50.619Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. +[NX Daemon Server] - 2023-12-20T16:16:50.649Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.649Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.649Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.658Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.658Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.658Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.662Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.662Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.662Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.666Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.666Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:50.666Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.688Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.688Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.688Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:50.691Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.691Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.691Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:50.691Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.692Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:50.692Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:51.292Z - Established a connection. Number of open connections: 106 +[NX Daemon Server] - 2023-12-20T16:16:51.299Z - Established a connection. Number of open connections: 107 +[NX Daemon Server] - 2023-12-20T16:16:51.299Z - Closed a connection. Number of open connections: 106 +[NX Daemon Server] - 2023-12-20T16:16:51.300Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:51.300Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:51.302Z - Time taken for 'total for creating and serializing project graph' 0.05304098129272461ms +[NX Daemon Server] - 2023-12-20T16:16:51.307Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:51.307Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:51.337Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.337Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.337Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:51.346Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.346Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.346Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:51.350Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.350Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.350Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:51.353Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.354Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:51.354Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:51.375Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:51.375Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:51.375Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:51.377Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:51.377Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:51.377Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:51.380Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:51.380Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:51.380Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.014Z - Established a connection. Number of open connections: 107 +[NX Daemon Server] - 2023-12-20T16:16:52.014Z - Closed a connection. Number of open connections: 106 +[NX Daemon Server] - 2023-12-20T16:16:52.014Z - Established a connection. Number of open connections: 107 +[NX Daemon Server] - 2023-12-20T16:16:52.015Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:52.016Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:52.017Z - Time taken for 'total for creating and serializing project graph' 0.05633401870727539ms +[NX Daemon Server] - 2023-12-20T16:16:52.022Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:52.022Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:16:52.053Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.053Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.053Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.064Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.064Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.064Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.068Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.068Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.068Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.072Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.072Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.072Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.096Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.096Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.096Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.096Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.096Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.097Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:52.097Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.097Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.097Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.766Z - Established a connection. Number of open connections: 108 +[NX Daemon Server] - 2023-12-20T16:16:52.766Z - Closed a connection. Number of open connections: 107 +[NX Daemon Server] - 2023-12-20T16:16:52.766Z - Established a connection. Number of open connections: 108 +[NX Daemon Server] - 2023-12-20T16:16:52.767Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:52.767Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:52.770Z - Time taken for 'total for creating and serializing project graph' 0.07566618919372559ms +[NX Daemon Server] - 2023-12-20T16:16:52.775Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:52.775Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:52.810Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.810Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.810Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.821Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.821Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.821Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.826Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.826Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.826Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.830Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.830Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:52.830Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.854Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.854Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.854Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:52.857Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.857Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.858Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:52.861Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.861Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:52.861Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.466Z - Established a connection. Number of open connections: 109 +[NX Daemon Server] - 2023-12-20T16:16:53.466Z - Closed a connection. Number of open connections: 108 +[NX Daemon Server] - 2023-12-20T16:16:53.467Z - Established a connection. Number of open connections: 109 +[NX Daemon Server] - 2023-12-20T16:16:53.468Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:53.468Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:53.470Z - Time taken for 'total for creating and serializing project graph' 0.07508277893066406ms +[NX Daemon Server] - 2023-12-20T16:16:53.475Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:53.475Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:53.503Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.503Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.503Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.512Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.512Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.512Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.517Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.517Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.517Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.520Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.520Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:53.520Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.539Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:53.539Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:53.539Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.540Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:53.540Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:53.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:53.542Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:53.542Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:53.542Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.138Z - Established a connection. Number of open connections: 110 +[NX Daemon Server] - 2023-12-20T16:16:54.138Z - Closed a connection. Number of open connections: 109 +[NX Daemon Server] - 2023-12-20T16:16:54.139Z - Established a connection. Number of open connections: 110 +[NX Daemon Server] - 2023-12-20T16:16:54.139Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:54.140Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:54.141Z - Time taken for 'total for creating and serializing project graph' 0.059332847595214844ms +[NX Daemon Server] - 2023-12-20T16:16:54.147Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:54.147Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:54.177Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.177Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.177Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.187Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.187Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.187Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.191Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.191Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.191Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.195Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.195Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.195Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.216Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.216Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.216Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.218Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.218Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.218Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.219Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.219Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.219Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.830Z - Established a connection. Number of open connections: 111 +[NX Daemon Server] - 2023-12-20T16:16:54.830Z - Closed a connection. Number of open connections: 110 +[NX Daemon Server] - 2023-12-20T16:16:54.831Z - Established a connection. Number of open connections: 111 +[NX Daemon Server] - 2023-12-20T16:16:54.832Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:54.832Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:54.834Z - Time taken for 'total for creating and serializing project graph' 0.04474997520446777ms +[NX Daemon Server] - 2023-12-20T16:16:54.840Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:54.840Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:16:54.868Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.869Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.869Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:54.878Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.878Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.878Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.882Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.883Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.883Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:54.887Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.887Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:54.887Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.909Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.909Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.909Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.910Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.910Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.910Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:54.914Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.914Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:54.914Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:55.505Z - Established a connection. Number of open connections: 112 +[NX Daemon Server] - 2023-12-20T16:16:55.505Z - Closed a connection. Number of open connections: 111 +[NX Daemon Server] - 2023-12-20T16:16:55.506Z - Established a connection. Number of open connections: 112 +[NX Daemon Server] - 2023-12-20T16:16:55.507Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:55.507Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:55.509Z - Time taken for 'total for creating and serializing project graph' 0.04041695594787598ms +[NX Daemon Server] - 2023-12-20T16:16:55.513Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:55.513Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:16:55.542Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.542Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.542Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:55.551Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.551Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.551Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:55.555Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.555Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.555Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:55.558Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.558Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:55.558Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:55.579Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:55.579Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:55.579Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:55.579Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:55.580Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:55.580Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:55.583Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:55.583Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:55.583Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.187Z - Established a connection. Number of open connections: 113 +[NX Daemon Server] - 2023-12-20T16:16:56.187Z - Closed a connection. Number of open connections: 112 +[NX Daemon Server] - 2023-12-20T16:16:56.188Z - Established a connection. Number of open connections: 113 +[NX Daemon Server] - 2023-12-20T16:16:56.188Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:56.188Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:56.190Z - Time taken for 'total for creating and serializing project graph' 0.039166927337646484ms +[NX Daemon Server] - 2023-12-20T16:16:56.195Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:56.195Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:56.224Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.225Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:56.234Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.234Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.234Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.239Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.239Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.239Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.243Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.243Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.243Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.273Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:56.273Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:56.273Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.274Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.274Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.915Z - Established a connection. Number of open connections: 114 +[NX Daemon Server] - 2023-12-20T16:16:56.915Z - Closed a connection. Number of open connections: 113 +[NX Daemon Server] - 2023-12-20T16:16:56.916Z - Established a connection. Number of open connections: 114 +[NX Daemon Server] - 2023-12-20T16:16:56.917Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:56.917Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:56.919Z - Time taken for 'total for creating and serializing project graph' 0.0644998550415039ms +[NX Daemon Server] - 2023-12-20T16:16:56.924Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:56.924Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:56.964Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.964Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.964Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.973Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.973Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.973Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.977Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.977Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.977Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:56.980Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.980Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:56.980Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.005Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.006Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.006Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:57.008Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.008Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.008Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.009Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.009Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.009Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.602Z - Established a connection. Number of open connections: 115 +[NX Daemon Server] - 2023-12-20T16:16:57.602Z - Closed a connection. Number of open connections: 114 +[NX Daemon Server] - 2023-12-20T16:16:57.602Z - Established a connection. Number of open connections: 115 +[NX Daemon Server] - 2023-12-20T16:16:57.603Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:57.603Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:57.606Z - Time taken for 'total for creating and serializing project graph' 0.042417049407958984ms +[NX Daemon Server] - 2023-12-20T16:16:57.610Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:57.610Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:57.640Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.640Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.640Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.650Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.650Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.650Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.654Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.654Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.654Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.657Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.657Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:57.657Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.679Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.679Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:57.680Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.680Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:57.680Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:58.310Z - Established a connection. Number of open connections: 116 +[NX Daemon Server] - 2023-12-20T16:16:58.310Z - Closed a connection. Number of open connections: 115 +[NX Daemon Server] - 2023-12-20T16:16:58.310Z - Established a connection. Number of open connections: 116 +[NX Daemon Server] - 2023-12-20T16:16:58.311Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:58.311Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:58.313Z - Time taken for 'total for creating and serializing project graph' 0.04375004768371582ms +[NX Daemon Server] - 2023-12-20T16:16:58.318Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:58.318Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:58.346Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.347Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.347Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:58.356Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.356Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.356Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:58.360Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.360Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.361Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:16:58.364Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.364Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:58.364Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:58.388Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:58.388Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:58.388Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:58.389Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:58.389Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:58.389Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:58.391Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:58.391Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:58.391Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:58.994Z - Established a connection. Number of open connections: 117 +[NX Daemon Server] - 2023-12-20T16:16:58.994Z - Closed a connection. Number of open connections: 116 +[NX Daemon Server] - 2023-12-20T16:16:58.994Z - Established a connection. Number of open connections: 117 +[NX Daemon Server] - 2023-12-20T16:16:58.995Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:58.995Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:58.997Z - Time taken for 'total for creating and serializing project graph' 0.04154205322265625ms +[NX Daemon Server] - 2023-12-20T16:16:59.002Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:59.002Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:16:59.030Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.030Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.030Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.042Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.042Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.042Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.046Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.046Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.046Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.051Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.051Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.051Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.075Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.075Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.075Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.078Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.078Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.078Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.081Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.081Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.081Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.700Z - Established a connection. Number of open connections: 118 +[NX Daemon Server] - 2023-12-20T16:16:59.701Z - Closed a connection. Number of open connections: 117 +[NX Daemon Server] - 2023-12-20T16:16:59.701Z - Established a connection. Number of open connections: 118 +[NX Daemon Server] - 2023-12-20T16:16:59.702Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:16:59.702Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:16:59.704Z - Time taken for 'total for creating and serializing project graph' 0.05854201316833496ms +[NX Daemon Server] - 2023-12-20T16:16:59.707Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:16:59.707Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. +[NX Daemon Server] - 2023-12-20T16:16:59.738Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.738Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.738Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.748Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.748Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.748Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.752Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.752Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.752Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.756Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.756Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:16:59.756Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.785Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.785Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.785Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.788Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.788Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.788Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:16:59.789Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.789Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:16:59.789Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:00.415Z - Established a connection. Number of open connections: 119 +[NX Daemon Server] - 2023-12-20T16:17:00.415Z - Closed a connection. Number of open connections: 118 +[NX Daemon Server] - 2023-12-20T16:17:00.415Z - Established a connection. Number of open connections: 119 +[NX Daemon Server] - 2023-12-20T16:17:00.416Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:00.417Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:00.419Z - Time taken for 'total for creating and serializing project graph' 0.07074999809265137ms +[NX Daemon Server] - 2023-12-20T16:17:00.424Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:00.424Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:17:00.453Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.453Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.453Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:00.463Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.463Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.463Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:00.468Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.468Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.468Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:00.472Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.472Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:00.472Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:00.498Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:00.498Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:00.498Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:00.498Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:00.499Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:00.499Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:00.501Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:00.501Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:00.501Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:01.224Z - Established a connection. Number of open connections: 120 +[NX Daemon Server] - 2023-12-20T16:17:01.225Z - Closed a connection. Number of open connections: 119 +[NX Daemon Server] - 2023-12-20T16:17:01.225Z - Established a connection. Number of open connections: 120 +[NX Daemon Server] - 2023-12-20T16:17:01.226Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:01.226Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:01.228Z - Time taken for 'total for creating and serializing project graph' 0.09304189682006836ms +[NX Daemon Server] - 2023-12-20T16:17:01.234Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:01.234Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:17:01.265Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.265Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.265Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:01.286Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.286Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.286Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:01.291Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.291Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.291Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:01.295Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.295Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:01.295Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:01.318Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:01.319Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:01.319Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:01.322Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:01.322Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:01.322Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:01.325Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:01.325Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:01.325Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:02.164Z - Established a connection. Number of open connections: 121 +[NX Daemon Server] - 2023-12-20T16:17:02.164Z - Closed a connection. Number of open connections: 120 +[NX Daemon Server] - 2023-12-20T16:17:02.164Z - Established a connection. Number of open connections: 121 +[NX Daemon Server] - 2023-12-20T16:17:02.165Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:02.165Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:02.167Z - Time taken for 'total for creating and serializing project graph' 0.07062482833862305ms +[NX Daemon Server] - 2023-12-20T16:17:02.173Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:02.173Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:17:02.205Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.206Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.206Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:02.217Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.217Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.217Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:02.221Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.221Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.221Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:02.225Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.225Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:02.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:02.248Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:02.248Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:02.248Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:02.249Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:02.249Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:02.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:02.251Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:02.251Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:02.251Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.059Z - Established a connection. Number of open connections: 122 +[NX Daemon Server] - 2023-12-20T16:17:03.059Z - Closed a connection. Number of open connections: 121 +[NX Daemon Server] - 2023-12-20T16:17:03.059Z - Established a connection. Number of open connections: 122 +[NX Daemon Server] - 2023-12-20T16:17:03.061Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:03.061Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:03.066Z - Time taken for 'total for creating and serializing project graph' 0.0867919921875ms +[NX Daemon Server] - 2023-12-20T16:17:03.072Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:03.073Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 12. +[NX Daemon Server] - 2023-12-20T16:17:03.109Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.109Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.109Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.120Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.136Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.136Z - Handled HASH_TASKS. Handling time: 2. Response time: 16. +[NX Daemon Server] - 2023-12-20T16:17:03.141Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.142Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.142Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:03.146Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.146Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.146Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.181Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:03.181Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:03.181Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.181Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:03.203Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:03.203Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 22. +[NX Daemon Server] - 2023-12-20T16:17:03.204Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:03.204Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:03.204Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.905Z - Established a connection. Number of open connections: 123 +[NX Daemon Server] - 2023-12-20T16:17:03.906Z - Closed a connection. Number of open connections: 122 +[NX Daemon Server] - 2023-12-20T16:17:03.906Z - Established a connection. Number of open connections: 123 +[NX Daemon Server] - 2023-12-20T16:17:03.907Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:03.907Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:03.909Z - Time taken for 'total for creating and serializing project graph' 0.07158398628234863ms +[NX Daemon Server] - 2023-12-20T16:17:03.914Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:03.915Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:17:03.955Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.955Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.955Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.966Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.966Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.966Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.972Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.972Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.972Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:03.977Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.977Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:03.977Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.002Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.002Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.002Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.005Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.005Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.005Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.009Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.009Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.009Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.657Z - Established a connection. Number of open connections: 124 +[NX Daemon Server] - 2023-12-20T16:17:04.657Z - Closed a connection. Number of open connections: 123 +[NX Daemon Server] - 2023-12-20T16:17:04.658Z - Established a connection. Number of open connections: 124 +[NX Daemon Server] - 2023-12-20T16:17:04.658Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:04.659Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:04.660Z - Time taken for 'total for creating and serializing project graph' 0.06349992752075195ms +[NX Daemon Server] - 2023-12-20T16:17:04.665Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:04.665Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. +[NX Daemon Server] - 2023-12-20T16:17:04.694Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.694Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.694Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.704Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.704Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.704Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.708Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.708Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.708Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.711Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.712Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:04.712Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:04.735Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.735Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.735Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.737Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.737Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.737Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:04.738Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.738Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:04.738Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:05.368Z - Established a connection. Number of open connections: 125 +[NX Daemon Server] - 2023-12-20T16:17:05.368Z - Closed a connection. Number of open connections: 124 +[NX Daemon Server] - 2023-12-20T16:17:05.369Z - Established a connection. Number of open connections: 125 +[NX Daemon Server] - 2023-12-20T16:17:05.370Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:05.370Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:05.372Z - Time taken for 'total for creating and serializing project graph' 0.0408329963684082ms +[NX Daemon Server] - 2023-12-20T16:17:05.377Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:05.377Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:17:05.409Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.409Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.409Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:05.420Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.420Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.420Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:05.424Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.424Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.425Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:05.431Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.431Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:05.431Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:05.454Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:05.454Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:05.454Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:05.455Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:05.455Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:05.455Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:05.460Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:05.460Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:05.460Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.096Z - Established a connection. Number of open connections: 126 +[NX Daemon Server] - 2023-12-20T16:17:06.096Z - Closed a connection. Number of open connections: 125 +[NX Daemon Server] - 2023-12-20T16:17:06.096Z - Established a connection. Number of open connections: 126 +[NX Daemon Server] - 2023-12-20T16:17:06.098Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:06.098Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:06.099Z - Time taken for 'total for creating and serializing project graph' 0.0581660270690918ms +[NX Daemon Server] - 2023-12-20T16:17:06.105Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:06.105Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:17:06.135Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.135Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.135Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.151Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.151Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.151Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.155Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.155Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.155Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.159Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.159Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.159Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.183Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.183Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.183Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.188Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.188Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.188Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.189Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.189Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.189Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.828Z - Established a connection. Number of open connections: 127 +[NX Daemon Server] - 2023-12-20T16:17:06.828Z - Closed a connection. Number of open connections: 126 +[NX Daemon Server] - 2023-12-20T16:17:06.829Z - Established a connection. Number of open connections: 127 +[NX Daemon Server] - 2023-12-20T16:17:06.830Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:06.830Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:06.832Z - Time taken for 'total for creating and serializing project graph' 0.055291175842285156ms +[NX Daemon Server] - 2023-12-20T16:17:06.837Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:06.837Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:17:06.866Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.867Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.867Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:06.877Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.877Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.877Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.881Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.881Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.881Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.885Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.885Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:06.885Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.906Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.906Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.906Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.908Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.908Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.908Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:06.909Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.909Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:06.909Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:07.643Z - Established a connection. Number of open connections: 128 +[NX Daemon Server] - 2023-12-20T16:17:07.643Z - Closed a connection. Number of open connections: 127 +[NX Daemon Server] - 2023-12-20T16:17:07.643Z - Established a connection. Number of open connections: 128 +[NX Daemon Server] - 2023-12-20T16:17:07.645Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:07.645Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:07.647Z - Time taken for 'total for creating and serializing project graph' 0.08516716957092285ms +[NX Daemon Server] - 2023-12-20T16:17:07.653Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:07.653Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:17:07.683Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.683Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.683Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:07.694Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.695Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:07.699Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.699Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.699Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:07.703Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.703Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:07.703Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:07.730Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:07.730Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:07.734Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:07.734Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:07.734Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.439Z - Established a connection. Number of open connections: 129 +[NX Daemon Server] - 2023-12-20T16:17:08.439Z - Closed a connection. Number of open connections: 128 +[NX Daemon Server] - 2023-12-20T16:17:08.439Z - Established a connection. Number of open connections: 129 +[NX Daemon Server] - 2023-12-20T16:17:08.440Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:08.440Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:08.442Z - Time taken for 'total for creating and serializing project graph' 0.06508302688598633ms +[NX Daemon Server] - 2023-12-20T16:17:08.447Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:08.448Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:17:08.478Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.478Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.478Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.489Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.489Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.489Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.493Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.493Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.494Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:08.497Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.497Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:08.497Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.524Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:08.524Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:08.524Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.527Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:08.527Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:08.527Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.528Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:08.528Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:08.528Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:08.846Z - Closed a connection. Number of open connections: 128 +[NX Daemon Server] - 2023-12-20T16:17:08.846Z - Closed a connection. Number of open connections: 127 +[NX Daemon Server] - 2023-12-20T16:17:08.858Z - Closed a connection. Number of open connections: 126 +[NX Daemon Server] - 2023-12-20T16:17:08.863Z - Closed a connection. Number of open connections: 125 +[NX Daemon Server] - 2023-12-20T16:17:08.879Z - Closed a connection. Number of open connections: 124 +[NX Daemon Server] - 2023-12-20T16:17:08.881Z - Closed a connection. Number of open connections: 123 +[NX Daemon Server] - 2023-12-20T16:17:08.881Z - Closed a connection. Number of open connections: 122 +[NX Daemon Server] - 2023-12-20T16:17:08.881Z - Closed a connection. Number of open connections: 121 +[NX Daemon Server] - 2023-12-20T16:17:08.889Z - Closed a connection. Number of open connections: 120 +[NX Daemon Server] - 2023-12-20T16:17:08.894Z - Closed a connection. Number of open connections: 119 +[NX Daemon Server] - 2023-12-20T16:17:08.911Z - Closed a connection. Number of open connections: 118 +[NX Daemon Server] - 2023-12-20T16:17:08.911Z - Closed a connection. Number of open connections: 117 +[NX Daemon Server] - 2023-12-20T16:17:08.919Z - Closed a connection. Number of open connections: 116 +[NX Daemon Server] - 2023-12-20T16:17:08.935Z - Closed a connection. Number of open connections: 115 +[NX Daemon Server] - 2023-12-20T16:17:08.935Z - Closed a connection. Number of open connections: 114 +[NX Daemon Server] - 2023-12-20T16:17:08.956Z - Closed a connection. Number of open connections: 113 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 112 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 111 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 110 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 109 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 108 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 107 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 106 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 105 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 104 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 103 +[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 102 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 101 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 100 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 99 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 98 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 97 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 96 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 95 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 94 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 93 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 92 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 91 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 90 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 89 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 88 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 87 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 86 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 85 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 84 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 83 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 82 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 81 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 80 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 79 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 78 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 77 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 76 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 75 +[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 74 +[NX Daemon Server] - 2023-12-20T16:17:09.176Z - Closed a connection. Number of open connections: 73 +[NX Daemon Server] - 2023-12-20T16:17:09.176Z - Closed a connection. Number of open connections: 72 +[NX Daemon Server] - 2023-12-20T16:17:09.178Z - Closed a connection. Number of open connections: 71 +[NX Daemon Server] - 2023-12-20T16:17:09.178Z - Closed a connection. Number of open connections: 70 +[NX Daemon Server] - 2023-12-20T16:17:09.195Z - Closed a connection. Number of open connections: 69 +[NX Daemon Server] - 2023-12-20T16:17:09.195Z - Closed a connection. Number of open connections: 68 +[NX Daemon Server] - 2023-12-20T16:17:09.195Z - Closed a connection. Number of open connections: 67 +[NX Daemon Server] - 2023-12-20T16:17:09.411Z - Closed a connection. Number of open connections: 66 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 65 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 64 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 63 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 62 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 61 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 60 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 59 +[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 58 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 57 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 56 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 55 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 54 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 53 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 52 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 51 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 50 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 49 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 48 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 47 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 46 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 45 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 44 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 43 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 42 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 41 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 40 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 39 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 38 +[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 37 +[NX Daemon Server] - 2023-12-20T16:17:09.430Z - Closed a connection. Number of open connections: 36 +[NX Daemon Server] - 2023-12-20T16:17:09.430Z - Closed a connection. Number of open connections: 35 +[NX Daemon Server] - 2023-12-20T16:17:09.450Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:09.450Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:09.450Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:09.464Z - Closed a connection. Number of open connections: 34 +[NX Daemon Server] - 2023-12-20T16:17:09.470Z - Closed a connection. Number of open connections: 33 +[NX Daemon Server] - 2023-12-20T16:17:09.470Z - Closed a connection. Number of open connections: 32 +[NX Daemon Server] - 2023-12-20T16:17:09.477Z - Closed a connection. Number of open connections: 31 +[NX Daemon Server] - 2023-12-20T16:17:09.483Z - Closed a connection. Number of open connections: 30 +[NX Daemon Server] - 2023-12-20T16:17:09.483Z - Closed a connection. Number of open connections: 29 +[NX Daemon Server] - 2023-12-20T16:17:09.483Z - Closed a connection. Number of open connections: 28 +[NX Daemon Server] - 2023-12-20T16:17:09.492Z - Closed a connection. Number of open connections: 27 +[NX Daemon Server] - 2023-12-20T16:17:09.492Z - Closed a connection. Number of open connections: 26 +[NX Daemon Server] - 2023-12-20T16:17:09.498Z - Closed a connection. Number of open connections: 25 +[NX Daemon Server] - 2023-12-20T16:17:09.498Z - Closed a connection. Number of open connections: 24 +[NX Daemon Server] - 2023-12-20T16:17:09.509Z - Closed a connection. Number of open connections: 23 +[NX Daemon Server] - 2023-12-20T16:17:09.509Z - Closed a connection. Number of open connections: 22 +[NX Daemon Server] - 2023-12-20T16:17:09.516Z - Closed a connection. Number of open connections: 21 +[NX Daemon Server] - 2023-12-20T16:17:09.518Z - Closed a connection. Number of open connections: 20 +[NX Daemon Server] - 2023-12-20T16:17:09.525Z - Closed a connection. Number of open connections: 19 +[NX Daemon Server] - 2023-12-20T16:17:09.526Z - Closed a connection. Number of open connections: 18 +[NX Daemon Server] - 2023-12-20T16:17:09.527Z - Closed a connection. Number of open connections: 17 +[NX Daemon Server] - 2023-12-20T16:17:09.544Z - Closed a connection. Number of open connections: 16 +[NX Daemon Server] - 2023-12-20T16:17:09.551Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Closed a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Closed a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Closed a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:17:09.558Z - Closed a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:17:09.567Z - Closed a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:17:09.567Z - Closed a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:17:09.570Z - Closed a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:17:09.570Z - Closed a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:17:09.576Z - Closed a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:17:09.576Z - Closed a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:17:09.576Z - Closed a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:17:09.584Z - Closed a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:17:09.592Z - Closed a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:17:09.706Z - Closed a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:17:09.727Z - Closed a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:17:09.745Z - Closed a connection. Number of open connections: 0 +[NX Daemon Server] - 2023-12-20T16:17:16.517Z - Established a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:17:16.517Z - Closed a connection. Number of open connections: 0 +[NX Daemon Server] - 2023-12-20T16:17:16.518Z - Established a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:17:16.518Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:16.518Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:16.520Z - Time taken for 'total for creating and serializing project graph' 0.05683302879333496ms +[NX Daemon Server] - 2023-12-20T16:17:16.526Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:16.526Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. +[NX Daemon Server] - 2023-12-20T16:17:16.548Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:16.549Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:16.549Z - Handled HASH_TASKS. Handling time: 8. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:17.779Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:17.779Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:17.779Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:18.779Z - Established a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:17:18.780Z - Closed a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:17:18.781Z - Established a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:17:18.783Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:18.783Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:18.786Z - Time taken for 'total for creating and serializing project graph' 0.17520904541015625ms +[NX Daemon Server] - 2023-12-20T16:17:18.797Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:18.797Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. +[NX Daemon Server] - 2023-12-20T16:17:18.832Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:18.851Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:18.851Z - Handled HASH_TASKS. Handling time: 22. Response time: 19. +[NX Daemon Server] - 2023-12-20T16:17:18.995Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:18.995Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:18.995Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:19.000Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:19.000Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:19.000Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:20.214Z - Established a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:17:20.216Z - Closed a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:17:20.217Z - Established a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:17:20.235Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:20.235Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:20.238Z - Time taken for 'total for creating and serializing project graph' 0.0969998836517334ms +[NX Daemon Server] - 2023-12-20T16:17:20.307Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:20.307Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 72. +[NX Daemon Server] - 2023-12-20T16:17:20.338Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:20.350Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:20.350Z - Handled HASH_TASKS. Handling time: 19. Response time: 12. +[NX Daemon Server] - 2023-12-20T16:17:20.416Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:20.416Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:20.416Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:20.420Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:20.420Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:20.420Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:21.417Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:21.417Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:21.417Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:21.691Z - Established a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:17:21.691Z - Closed a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:17:21.691Z - Established a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:17:21.692Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:21.692Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:21.695Z - Time taken for 'total for creating and serializing project graph' 0.0657501220703125ms +[NX Daemon Server] - 2023-12-20T16:17:21.730Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:21.730Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 38. +[NX Daemon Server] - 2023-12-20T16:17:21.751Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:21.765Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:21.765Z - Handled HASH_TASKS. Handling time: 8. Response time: 14. +[NX Daemon Server] - 2023-12-20T16:17:21.824Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:21.824Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:21.824Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:21.828Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:21.828Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:21.828Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:22.998Z - Established a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:17:22.998Z - Closed a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:17:22.999Z - Established a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:17:23.000Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:23.000Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:23.005Z - Time taken for 'total for creating and serializing project graph' 0.21450018882751465ms +[NX Daemon Server] - 2023-12-20T16:17:23.042Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:23.042Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 42. +[NX Daemon Server] - 2023-12-20T16:17:23.070Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:23.071Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:23.071Z - Handled HASH_TASKS. Handling time: 10. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:23.237Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:23.237Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:23.237Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:23.240Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:23.240Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:23.240Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:25.483Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:25.483Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:25.483Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:25.631Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:25.631Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:25.631Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:26.240Z - Established a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:17:26.249Z - Closed a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:17:26.249Z - Established a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:17:26.257Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:26.257Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:26.261Z - Time taken for 'total for creating and serializing project graph' 0.2618751525878906ms +[NX Daemon Server] - 2023-12-20T16:17:26.293Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:26.293Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 36. +[NX Daemon Server] - 2023-12-20T16:17:26.356Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:26.535Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:26.535Z - Handled HASH_TASKS. Handling time: 11. Response time: 179. +[NX Daemon Server] - 2023-12-20T16:17:26.766Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:26.766Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:26.766Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:26.769Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:26.769Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:26.769Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:28.579Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:28.580Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:28.580Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:29.543Z - Established a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:17:29.544Z - Established a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:17:29.544Z - Closed a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:17:29.545Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:29.545Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:29.550Z - Time taken for 'total for creating and serializing project graph' 0.11491584777832031ms +[NX Daemon Server] - 2023-12-20T16:17:29.652Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:29.652Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 107. +[NX Daemon Server] - 2023-12-20T16:17:29.770Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:29.819Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:29.819Z - Handled HASH_TASKS. Handling time: 21. Response time: 49. +[NX Daemon Server] - 2023-12-20T16:17:29.996Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:29.996Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:29.996Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:29.998Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:29.998Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:29.998Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:31.467Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:31.467Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:31.467Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:32.131Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:32.131Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:32.131Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:33.578Z - Established a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:17:33.579Z - Closed a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:17:33.580Z - Established a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:17:33.583Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:33.583Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:33.591Z - Time taken for 'total for creating and serializing project graph' 0.9372498989105225ms +[NX Daemon Server] - 2023-12-20T16:17:33.690Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:33.690Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 107. +[NX Daemon Server] - 2023-12-20T16:17:33.785Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:33.787Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:33.787Z - Handled HASH_TASKS. Handling time: 11. Response time: 2. +[NX Daemon Server] - 2023-12-20T16:17:34.078Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:34.078Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:34.078Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:34.091Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:34.091Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:34.091Z - Handled RECORD_OUTPUTS_HASH. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:34.510Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:34.510Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:34.510Z - Handled RECORD_OUTPUTS_HASH. Handling time: 5. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:34.643Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:34.643Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:34.643Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:37.235Z - Established a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:17:37.235Z - Closed a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:17:37.269Z - Established a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:17:37.300Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:37.300Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:37.304Z - Time taken for 'total for creating and serializing project graph' 0.2628750801086426ms +[NX Daemon Server] - 2023-12-20T16:17:37.378Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:37.378Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 78. +[NX Daemon Server] - 2023-12-20T16:17:37.462Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:37.546Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:37.548Z - Handled HASH_TASKS. Handling time: 26. Response time: 84. +[NX Daemon Server] - 2023-12-20T16:17:37.662Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:37.662Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:37.662Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:37.665Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:37.665Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:37.665Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:38.634Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:38.634Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:38.634Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:38.723Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:38.723Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:38.723Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:41.303Z - Established a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:17:41.304Z - Established a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:17:41.304Z - Closed a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:17:41.305Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:41.305Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:41.332Z - Time taken for 'total for creating and serializing project graph' 0.19054102897644043ms +[NX Daemon Server] - 2023-12-20T16:17:41.463Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:41.463Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:41.463Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:41.501Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:41.501Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 196. +[NX Daemon Server] - 2023-12-20T16:17:41.537Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:41.537Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:41.537Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:41.624Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:41.629Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:41.629Z - Handled HASH_TASKS. Handling time: 23. Response time: 5. +[NX Daemon Server] - 2023-12-20T16:17:41.692Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:41.692Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:41.692Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:41.695Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:41.695Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:41.695Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:44.340Z - Established a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:17:44.349Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:44.349Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:44.349Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:44.350Z - Closed a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:17:44.350Z - Established a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:17:44.352Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:44.352Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:44.354Z - Time taken for 'total for creating and serializing project graph' 0.16533303260803223ms +[NX Daemon Server] - 2023-12-20T16:17:44.425Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:44.425Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 73. +[NX Daemon Server] - 2023-12-20T16:17:44.483Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:44.506Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:44.506Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:44.506Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:44.519Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:44.519Z - Handled HASH_TASKS. Handling time: 20. Response time: 36. +[NX Daemon Server] - 2023-12-20T16:17:44.638Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:44.638Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:44.638Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:44.644Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:44.644Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:44.644Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:46.355Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:46.355Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:46.355Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:47.193Z - Established a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:17:47.195Z - Closed a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:17:47.207Z - Established a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:17:47.209Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:47.209Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:47.214Z - Time taken for 'total for creating and serializing project graph' 0.23541688919067383ms +[NX Daemon Server] - 2023-12-20T16:17:47.341Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:47.341Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 132. +[NX Daemon Server] - 2023-12-20T16:17:47.374Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:47.376Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:47.376Z - Handled HASH_TASKS. Handling time: 14. Response time: 2. +[NX Daemon Server] - 2023-12-20T16:17:47.588Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:47.588Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:47.588Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:47.591Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:47.591Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:47.591Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:48.748Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:48.748Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:48.748Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:50.448Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:50.448Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:50.448Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:50.470Z - Established a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:17:50.470Z - Closed a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:17:50.470Z - Established a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:17:50.498Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:50.498Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:50.502Z - Time taken for 'total for creating and serializing project graph' 0.21212506294250488ms +[NX Daemon Server] - 2023-12-20T16:17:50.634Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:50.634Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 136. +[NX Daemon Server] - 2023-12-20T16:17:50.726Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:50.732Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:50.733Z - Handled HASH_TASKS. Handling time: 44. Response time: 7. +[NX Daemon Server] - 2023-12-20T16:17:50.831Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:50.831Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:50.831Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 3. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:50.840Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:50.840Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:50.840Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:51.212Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:51.212Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:51.212Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:54.015Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:54.018Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:54.018Z - Handled RECORD_OUTPUTS_HASH. Handling time: 6. Response time: 3. +[NX Daemon Server] - 2023-12-20T16:17:54.446Z - Established a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:17:54.446Z - Established a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:17:54.446Z - Closed a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:17:54.449Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:54.449Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:54.452Z - Time taken for 'total for creating and serializing project graph' 0.22983288764953613ms +[NX Daemon Server] - 2023-12-20T16:17:54.480Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:54.480Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 31. +[NX Daemon Server] - 2023-12-20T16:17:54.526Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:54.566Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:54.567Z - Handled HASH_TASKS. Handling time: 15. Response time: 40. +[NX Daemon Server] - 2023-12-20T16:17:54.701Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:54.701Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:54.701Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:54.705Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:54.705Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:54.705Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:55.038Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:55.038Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:55.038Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:58.982Z - Established a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:17:58.983Z - Established a connection. Number of open connections: 16 +[NX Daemon Server] - 2023-12-20T16:17:58.985Z - Closed a connection. Number of open connections: 15 +[NX Daemon Server] - 2023-12-20T16:17:58.990Z - [REQUEST]: Client Request for Project Graph Received +[NX Daemon Server] - 2023-12-20T16:17:58.990Z - [REQUEST]: Responding to the client. project-graph +[NX Daemon Server] - 2023-12-20T16:17:59.002Z - Time taken for 'total for creating and serializing project graph' 0.3366658687591553ms +[NX Daemon Server] - 2023-12-20T16:17:59.177Z - Done responding to the client project-graph +[NX Daemon Server] - 2023-12-20T16:17:59.177Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 187. +[NX Daemon Server] - 2023-12-20T16:17:59.222Z - [REQUEST]: Responding to the client. handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:59.351Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:59.351Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:59.351Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:59.359Z - Done responding to the client handleHashTasks +[NX Daemon Server] - 2023-12-20T16:17:59.359Z - Handled HASH_TASKS. Handling time: 17. Response time: 137. +[NX Daemon Server] - 2023-12-20T16:17:59.436Z - [REQUEST]: Responding to the client. outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:59.437Z - Done responding to the client outputsHashesMatch +[NX Daemon Server] - 2023-12-20T16:17:59.437Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 1. +[NX Daemon Server] - 2023-12-20T16:17:59.439Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:59.439Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:59.439Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:17:59.668Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:59.668Z - Done responding to the client recordOutputsHash +[NX Daemon Server] - 2023-12-20T16:17:59.668Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX Daemon Server] - 2023-12-20T16:18:00.404Z - [WATCHER]: Processing file changes in outputs +[NX Daemon Server] - 2023-12-20T16:18:00.413Z - [WATCHER]: .github/workflows/ci.yml was modified +[NX Daemon Server] - 2023-12-20T16:18:00.520Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX Daemon Server] - 2023-12-20T16:18:00.520Z - [REQUEST]: .github/workflows/ci.yml +[NX Daemon Server] - 2023-12-20T16:18:00.526Z - [REQUEST]: +[NX Daemon Server] - 2023-12-20T16:18:01.225Z - Time taken for 'hash changed files from watcher' 1.1470000743865967ms +[NX Daemon Server] - 2023-12-20T16:18:02.038Z - Closed a connection. Number of open connections: 14 +[NX Daemon Server] - 2023-12-20T16:18:02.038Z - Closed a connection. Number of open connections: 13 +[NX Daemon Server] - 2023-12-20T16:18:02.038Z - Closed a connection. Number of open connections: 12 +[NX Daemon Server] - 2023-12-20T16:18:02.040Z - Closed a connection. Number of open connections: 11 +[NX Daemon Server] - 2023-12-20T16:18:02.040Z - Closed a connection. Number of open connections: 10 +[NX Daemon Server] - 2023-12-20T16:18:02.040Z - Closed a connection. Number of open connections: 9 +[NX Daemon Server] - 2023-12-20T16:18:02.043Z - Closed a connection. Number of open connections: 8 +[NX Daemon Server] - 2023-12-20T16:18:02.049Z - Closed a connection. Number of open connections: 7 +[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 6 +[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 5 +[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 4 +[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 3 +[NX Daemon Server] - 2023-12-20T16:18:02.062Z - Closed a connection. Number of open connections: 2 +[NX Daemon Server] - 2023-12-20T16:18:02.077Z - Closed a connection. Number of open connections: 1 +[NX Daemon Server] - 2023-12-20T16:18:02.096Z - Closed a connection. Number of open connections: 0 +[NX Daemon Server] - 2023-12-20T16:18:23.344Z - [WATCHER]: .gitignore was modified +[NX Daemon Server] - 2023-12-20T16:18:23.345Z - [WATCHER]: Processing file changes in outputs +[NX Daemon Server] - 2023-12-20T16:18:23.345Z - [WATCHER]: Stopping the watcher for /Users/kiwi/Documents/code/private/nx-plugin (sources) +[NX Daemon Server] - 2023-12-20T16:18:23.345Z - [WATCHER]: Stopping the watcher for /Users/kiwi/Documents/code/private/nx-plugin (outputs) +[NX Daemon Server] - 2023-12-20T16:18:23.345Z - Server stopped because: "Stopping the daemon the set of ignored files changed (native)" diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json index 5976ca5..21bc1ce 100644 --- a/.nx/cache/file-map.json +++ b/.nx/cache/file-map.json @@ -94,6 +94,12 @@ }, "nxJsonPlugins": [], "fileMap": { + "nonProjectFiles": [ + { + "file": ".github/workflows/ci.yml", + "hash": "18201737436483772103" + } + ], "projectFileMap": { "tooling-nx-plugin-config": [ { @@ -149,6 +155,227 @@ "hash": "12676338339107966475" } ], + "tooling-nx-plugin-validators": [ + { + "file": "libs/tooling/nx-plugin/validators/.eslintrc.json", + "hash": "4060609842899411029" + }, + { + "file": "libs/tooling/nx-plugin/validators/README.md", + "hash": "10808454116467325009" + }, + { + "file": "libs/tooling/nx-plugin/validators/generators.json", + "hash": "1521044451708123978" + }, + { + "file": "libs/tooling/nx-plugin/validators/jest.config.ts", + "hash": "10551295982115216078" + }, + { + "file": "libs/tooling/nx-plugin/validators/package-lock.json", + "hash": "9526950535647397701" + }, + { + "file": "libs/tooling/nx-plugin/validators/package.json", + "hash": "2381165151099912703", + "deps": [ + "npm:chalk" + ] + }, + { + "file": "libs/tooling/nx-plugin/validators/project.json", + "hash": "5333715124941086772" + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts", + "hash": "3775989106480202960", + "deps": [ + "npm:@nx/devkit", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts", + "hash": "7671751012756824637", + "deps": [ + "npm:chalk", + "npm:path", + "npm:@nx/devkit", + "tooling-nx-plugin-config" + ] + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/schema.d.ts", + "hash": "5819220933278268906" + }, + { + "file": "libs/tooling/nx-plugin/validators/src/generators/validate/schema.json", + "hash": "66282947766089941" + }, + { + "file": "libs/tooling/nx-plugin/validators/src/index.ts", + "hash": "1396666921406885142" + }, + { + "file": "libs/tooling/nx-plugin/validators/tsconfig.json", + "hash": "18017263261948858813" + }, + { + "file": "libs/tooling/nx-plugin/validators/tsconfig.lib.json", + "hash": "5419457303262888731" + }, + { + "file": "libs/tooling/nx-plugin/validators/tsconfig.spec.json", + "hash": "12676338339107966475" + } + ], + "ax-nx-plugin-workspace": [ + { + "file": ".ax.config.json", + "hash": "1340829166436045723" + }, + { + "file": ".editorconfig", + "hash": "5443105041930014821" + }, + { + "file": ".eslintignore", + "hash": "7663861978715868291" + }, + { + "file": ".eslintrc-angular.json", + "hash": "14242169620473342076" + }, + { + "file": ".eslintrc-ngrx.json", + "hash": "4128046395051612814" + }, + { + "file": ".eslintrc.json", + "hash": "11574629289848961625" + }, + { + "file": ".github/workflows/ci.yml", + "hash": "12945670883121043129" + }, + { + "file": ".github/workflows/release.yml", + "hash": "10092510407796624812" + }, + { + "file": ".gitignore", + "hash": "3583689735365856263" + }, + { + "file": ".npmrc", + "hash": "806553954559008599" + }, + { + "file": ".prettierignore", + "hash": "16479312547820070036" + }, + { + "file": ".prettierrc", + "hash": "8130880107294852815" + }, + { + "file": ".verdaccio/config.yml", + "hash": "18364357067868980959" + }, + { + "file": ".verdaccio/htpasswd", + "hash": "18438619983611958715" + }, + { + "file": "README.md", + "hash": "2428966330377374428" + }, + { + "file": "apps/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "docs/README.md", + "hash": "2310841811663877147" + }, + { + "file": "docs/architecture.excalidraw", + "hash": "12540513505371868476" + }, + { + "file": "docs/architecture.png", + "hash": "13139230679049872771" + }, + { + "file": "docs/selectors.excalidraw", + "hash": "15954424021334929527" + }, + { + "file": "docs/selectors.png", + "hash": "16523618057021746464" + }, + { + "file": "docs/types.excalidraw", + "hash": "9900857568212363017" + }, + { + "file": "docs/types.png", + "hash": "9979667564085555112" + }, + { + "file": "jest.config.ts", + "hash": "12333515226966617182", + "deps": [ + "npm:@nx/jest" + ] + }, + { + "file": "jest.preset.js", + "hash": "9430166341120122740", + "deps": [ + "npm:@nx/jest" + ] + }, + { + "file": "migrations.json", + "hash": "11754731025197703420" + }, + { + "file": "nx.json", + "hash": "10355845662403895098" + }, + { + "file": "package-lock.json", + "hash": "9384922806344764894" + }, + { + "file": "package.json", + "hash": "9761205731330717165" + }, + { + "file": "project.json", + "hash": "14270586715379642869" + }, + { + "file": "release.config.js", + "hash": "5891170741678413892" + }, + { + "file": "tools/scripts/publish.mjs", + "hash": "9485274327411133040", + "deps": [ + "npm:child_process", + "npm:fs", + "npm:chalk", + "npm:@nx/devkit" + ] + }, + { + "file": "tsconfig.base.json", + "hash": "15772588564003373708" + } + ], "tooling-nx-plugin-generators": [ { "file": "libs/tooling/nx-plugin/generators/.eslintrc.json", @@ -606,225 +833,7 @@ "file": "libs/tooling/nx-plugin/generators/tsconfig.spec.json", "hash": "12676338339107966475" } - ], - "ax-nx-plugin-workspace": [ - { - "file": ".ax.config.json", - "hash": "1340829166436045723" - }, - { - "file": ".editorconfig", - "hash": "5443105041930014821" - }, - { - "file": ".eslintignore", - "hash": "7663861978715868291" - }, - { - "file": ".eslintrc-angular.json", - "hash": "14242169620473342076" - }, - { - "file": ".eslintrc-ngrx.json", - "hash": "4128046395051612814" - }, - { - "file": ".eslintrc.json", - "hash": "11574629289848961625" - }, - { - "file": ".github/workflows/ci.yml", - "hash": "12945670883121043129" - }, - { - "file": ".github/workflows/release.yml", - "hash": "10092510407796624812" - }, - { - "file": ".gitignore", - "hash": "3583689735365856263" - }, - { - "file": ".npmrc", - "hash": "806553954559008599" - }, - { - "file": ".prettierignore", - "hash": "16479312547820070036" - }, - { - "file": ".prettierrc", - "hash": "8130880107294852815" - }, - { - "file": ".verdaccio/config.yml", - "hash": "18364357067868980959" - }, - { - "file": ".verdaccio/htpasswd", - "hash": "18438619983611958715" - }, - { - "file": "README.md", - "hash": "2428966330377374428" - }, - { - "file": "apps/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "docs/README.md", - "hash": "2310841811663877147" - }, - { - "file": "docs/architecture.excalidraw", - "hash": "12540513505371868476" - }, - { - "file": "docs/architecture.png", - "hash": "13139230679049872771" - }, - { - "file": "docs/selectors.excalidraw", - "hash": "15954424021334929527" - }, - { - "file": "docs/selectors.png", - "hash": "16523618057021746464" - }, - { - "file": "docs/types.excalidraw", - "hash": "9900857568212363017" - }, - { - "file": "docs/types.png", - "hash": "9979667564085555112" - }, - { - "file": "jest.config.ts", - "hash": "12333515226966617182", - "deps": [ - "npm:@nx/jest" - ] - }, - { - "file": "jest.preset.js", - "hash": "9430166341120122740", - "deps": [ - "npm:@nx/jest" - ] - }, - { - "file": "migrations.json", - "hash": "11754731025197703420" - }, - { - "file": "nx.json", - "hash": "10355845662403895098" - }, - { - "file": "package.json", - "hash": "9761205731330717165" - }, - { - "file": "project.json", - "hash": "14270586715379642869" - }, - { - "file": "release.config.js", - "hash": "5891170741678413892" - }, - { - "file": "tools/scripts/publish.mjs", - "hash": "9485274327411133040", - "deps": [ - "npm:child_process", - "npm:fs", - "npm:chalk", - "npm:@nx/devkit" - ] - }, - { - "file": "tsconfig.base.json", - "hash": "15772588564003373708" - } - ], - "tooling-nx-plugin-validators": [ - { - "file": "libs/tooling/nx-plugin/validators/.eslintrc.json", - "hash": "4060609842899411029" - }, - { - "file": "libs/tooling/nx-plugin/validators/README.md", - "hash": "10808454116467325009" - }, - { - "file": "libs/tooling/nx-plugin/validators/generators.json", - "hash": "1521044451708123978" - }, - { - "file": "libs/tooling/nx-plugin/validators/jest.config.ts", - "hash": "10551295982115216078" - }, - { - "file": "libs/tooling/nx-plugin/validators/package-lock.json", - "hash": "9526950535647397701" - }, - { - "file": "libs/tooling/nx-plugin/validators/package.json", - "hash": "2381165151099912703", - "deps": [ - "npm:chalk" - ] - }, - { - "file": "libs/tooling/nx-plugin/validators/project.json", - "hash": "5333715124941086772" - }, - { - "file": "libs/tooling/nx-plugin/validators/src/generators/validate/generator.spec.ts", - "hash": "3775989106480202960", - "deps": [ - "npm:@nx/devkit", - "tooling-nx-plugin-config" - ] - }, - { - "file": "libs/tooling/nx-plugin/validators/src/generators/validate/generator.ts", - "hash": "7671751012756824637", - "deps": [ - "npm:chalk", - "npm:path", - "npm:@nx/devkit", - "tooling-nx-plugin-config" - ] - }, - { - "file": "libs/tooling/nx-plugin/validators/src/generators/validate/schema.d.ts", - "hash": "5819220933278268906" - }, - { - "file": "libs/tooling/nx-plugin/validators/src/generators/validate/schema.json", - "hash": "66282947766089941" - }, - { - "file": "libs/tooling/nx-plugin/validators/src/index.ts", - "hash": "1396666921406885142" - }, - { - "file": "libs/tooling/nx-plugin/validators/tsconfig.json", - "hash": "18017263261948858813" - }, - { - "file": "libs/tooling/nx-plugin/validators/tsconfig.lib.json", - "hash": "5419457303262888731" - }, - { - "file": "libs/tooling/nx-plugin/validators/tsconfig.spec.json", - "hash": "12676338339107966475" - } ] - }, - "nonProjectFiles": [] + } } } diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash index 4335fdc..657038c 100644 --- a/.nx/cache/lockfile.hash +++ b/.nx/cache/lockfile.hash @@ -1 +1 @@ -16081168226959330472 \ No newline at end of file +367406656570254204 \ No newline at end of file diff --git a/.nx/cache/nx_files.nxt b/.nx/cache/nx_files.nxt index 587609c8db425d8e96f2a4f255a1c7f22fe01e53..1474aecaa12a43e8fc6e259a5db664c592ddf0fc 100644 GIT binary patch literal 13556 zcmcJW3#=t~UB_=9Y)h%zmOiBN2q7sXw0rKn{_{X9+ZRHiB`sDS#x7^ioqO-u-h0mR z%-rp6)50oZYbuFK)d)d>6i`eEA{q>CB!U>?gH#hztS_n}3e@_*MyRfz@63PB{O{SF z?mc()Z064VzUO~_^Pk`Q|NGCLwY0Q!!hX)?`kbYuV;mL6>DYPB_o6ja=V$Xr=jOM2 zA)4!pxqhCd#qUb4&*J<&ocSEnaTR}F%JDLe9!K-rWv+dP79LspTz)4yvGglAe;?K%JLZ4vm7K5VXujui+xQy*US+>`zxx4**K+Ww#=nk>*K>%^?Lxut;Li_L zmrKWyKJzU>wX^p+lUhCdmRy=eqzCQub@YmSQ;o7uc4#%UScc>VTd_OT!68c_X z{47blFbcel;lX0L9FI4KqqXJHk$sbmt+nB3c`YC1{B%4mmW%1YCHX;1_J*S}pRV=? zd9N(|AdbS=PyECSG83j*;ztX!?@uPn#b7<(?DtmSX#&GcV=wfRIP%lXPm&IngYjr} zxVAj$5AN!(<@+|qgS+a7P6I#8;>ZL+7DjQD#c|ld;&6XsxN^#ew%_E<)FjO~4$>ft zm|g6pSr+*nT%TE#tHX^P8JGPsUxvZ*fdiB2_)tD5Z|!g92M+Y|)m4Z>;*H`kh`q=U zLl51VG)c_Dw;Ya!rK3K$CPCsEFAl;e^fI0!41$HZN@?|j=!&B^7;jF-qkL5M*2~R} zC^cT-BP$bm9cz%{nTd=+(z2pmO`$wGAvorT6-VR}CQ1<&vdTya+{G*|u427E%~zHQ zvYV5Vz&jXEax71jZV{L;jt$w%OXCQY#KG=nZsUwBMNSkZNoW#g?s-`h?I8HgC0#pf z1&@O0QIxYVVGuWYF(MTykY(XcM7@((u`(V|7)SxV{K!C=aoWE-tF)OI#ibyOah>E) z&TMeqA}_J&j4VRf3M1bSJmOXo?XJS8gXN@OQeKQ^5h?KMfQa&w2>&B?bl8>SbF;8s zxm@JM{L9h^2O(!u3++z9wP|h*Wi%Ki0Tz>wd_yoHH+M~|+l^a~Th06B*7VfXz;wJ- zq7dq$*bhmDCRSmDoXKS!l6dA@){n8CZ%lGZy*dHHKH)iV0s>@+&jm!3#XYTkqRN41 zO7uO7#4N#lyg&jA{HRL>juvrIRYi4X3&Sw+NsAF0#8H!E@x0_#1M<=+&G2|CVse9T z!i0ioVS!pN-5jsv8+ByaC;3(;;$;Cdr6l%!RiZ%>SB_(IwjvJ?MZ^vW*D)E9fZFv? zu2kl$-OTWNLnJmNB=Sk(?I7uI_YjJ-D52sZvXFP9*zBT;ufnQZEW^jg?T{=QXK6qg z-pf~pEHG*ba8C*XiaS3GJ-WmO2h{if?~yyd3e=1RZ=rmSIn#Yc*Fe;0Y6^{LaZ7;GU) zq(}lPXMDJ-z;T=2+OS;TI=FoIczW0B#`x}Hc`)o9-Q4i0woFWVW&SEm_}k@~PE=_x zE9XoJ%2diJ)jEYifGv9{rdZZZ@5=K@7*O!AB#TfoApl98iAK7`V8f`KkDHN|qBx~A z%0i-M=UUBitvUDf41&u{hGF8Q*z#^mwb=>;wRq&SG{kC%=Ex=RouoS%t!0@COR{Z5 z3B`w;x^PUI<|h@1EQcvV(lo#ygM@%Xpg28WHvqF1@>6mTS|(bc(Ae}2=hKz`U@#mn z+n6SULc=#9QPWBoaCsPF+K#OauzBR}?|Gz>~X*G{;1?Etcpp@X3faQYt}nab0bz z@``dwOGf4!GcO!7rK-XrOn3jH^~Cu_!ZyzBu-QVlEKp(^W@(y{qqxpI(`6HONwnQR zv?@l&Ea$=?MBRK&Z&GvdTNt-A5wGnl;AarO!5bG?uL-Ovobn z;gk^%!U`k){|Qc2MN~C)Sfa7ECl*k}%aH;*?U#!*;QaE_-UtvBPTX z)mfpw(#CL5^)uTQn<3rMyCEu5t8g>loQdH*lUSOlL8?y(S4vz7@rrd zTzuM}9-WoR0Ztbs87n9n;8=s={!Q*MuM-8y)P>rz3)%C3&aEML`p$Y$H{-L+a9!~9qP8}X$h6F4+g%lc959T!1++^m;75FVa!n%a@Ntz)i zze_uFC7NS0_M7buQz{oV*=bi*jV-!piFKpl+Gsq@X;4??X`;Fmv%nua%)+_x%*Yv9 zH!XJDj<>Gt?tk!Gmd!L{SO{pXfHS*alK^P9(d(DCco^*I5C)k2Tl!5$!r zO|-%Y)ahK{k)F|Sb>muYY*B?I3uYb0hIt2_8*h$=PEixqcErY9e;*5sypTN;#ECZa z@aa9PKW<6^PidI>l){cB?SkE@SKFUoE_xa6|z|NknzcvMXZS zfcUb5Xn6{O)J1Zgx0?+WR#p_>tUlPwBahH&NYs_BHdJbLu20;@d4NCSsGe?fIf(ZAh9xg=dWCWti;lr#riI z(>SLiuM&ezs3`TgNfz&*(wOyfGPYu?tx|>4YQtc6RcCG5YU}S?9jPS1QbAI^+9MXQ%fdE!qQJ>s_71FNPL$j06ES6GssQQ6P@u7!xRaH@ z98=YlZitav!&0vaq>7B_XJJ{^&D&O*OqKGK0w#%QjNmFr(=#W%Xpt$mb3+fKrE;R7 ze#RlW$^UhTmLk}YV8NpTjk1%iMz&r$p3jM4ZmJAuYGW7d9(WmL5IewKHHgDt=3JFu zu`!*H%P8Hcl-Pr0x4M~V^?jr_D(Ho1slkgUbY8o{yfwR7SRsRJO~u5p44#l(9uo-6Y-%_?5If%TBxVWOA^4f$oaCh27eICm zK_DZO)0=1Kr7DBF_&WNS&5DjXnT~!g$qiQzSTANxonxK&P+`i;CB0(#}NE zJ@sviplSn_eQyFk`#EewBM>!bce1LS)7Cb=jTJSkD+z_23l%v5`GCe8)h|n9o>)bj z_E8LF^ul_OiOe1quZpRqwLwk9plqP&PTRQIGH$ku4@s~f=@;?Cn zVT->3{OY~+e69yS3tIPmzccdG*uiE>*8vGL$zZkr^?{mPv zW%<0(8LxL2zhm)tIJgIX1GMJzaR>LI#}@x4=U+XqmD_tQ{;I!j=W{3H9|eCd=j*_m z`SeDU&FNrikDlvo&iEUkuZ9->1op zL+}_{e13{^GoQ<$S1kT>4zBlCON&3s*|pF6EPl@4wz%Z>S#Zt&`yG5g^b>acdmQ|& z;4g>Pe7@q~(#t!c#pkN8wESNK{l|9v>%sr@zkj^)BiX|x(Bku;GyXd0S3rx;BMz?j zR}WkKG0u$~^t{KR#pi;@+xv#le`s;z;CkL~S$yi?@}n0+i_blr8~)z~{Ugw_hfh1> z^`32R$6xq&?S0<}{vnHB4&Lz5JfE_7>5Q+O3|h~7Kj-_;uI*Fr9Up+!d_L)nmpvC2 z|6R`aY`w2yp?UrawD?@{_w9TXH$GzV>m6KjI2&5y?{jd)fgZH(dp~D){zE(d^UnAi z88@}#pXBW7_Y-#f(m%BGk=;IK@rxW>_xpzBbBlvZFW<4_`{2!d^e%P^t=~Q9jF(;M z_rm|g!SxRGVT(WitL=Q=0RAb9U+>`8fbW5pd>(Re>35&SA9ZlWv11kw{;}n+c=9=m z-vHjsUvhX6wCw7ao$=DwGPLIZSqHxw`T>hy`n8t-9pE3c_}Ibw;QwRshaCLn;BSEz z|KD?P*~8l{{^EaX`LBY16kKvxcko-Fp93xYBb=YQsJ2_h!ykke|37oaD=)m;j^F#w zEr0p@aXbD>@LO&Cya@c;cKm*4y!3J|wC?+WgDd`AWARTpcm!TTYd%joxaRq=9l!VM ztzKRL{XT0*le}PMW?{#p= z?OJHv_e%~gJ9#Ix_&@)N_P*lt`*!?Q;LUwyKYO4n`8eYx=S!e<-w$&>*Vc8yZ?ogS z&iUqZYB?zH{EWpf`Iq*-^2aZMYo50`xcEG6$G;W4nUCgiEwsjOa$d3iqIta5;vePQ z=u6N0W@!EHs}8;&`WGzzvM1Z|vWG{&#s5tX9z#DDTKLa9xcJ{_@kbndKlqPX{NjIY z`O9C9gKIu71pjVpC#qkcw&RD+c-5chLu>rIIS;MfDn8!Z0O T($|Zif0FZMe{|x+I@kXTSMHER literal 13492 zcmb`OZIC6^S;u!Fl0wO%5R+iVvP_jk#l6#gPQOBFc7;t4WQ`FpQR8yC(>rr_XYLHQ z@9Zvd3s)m(O3Km{(b5!EVo4%=QOoirE`7enedqK1Hn4AZ_;+~U^RfDUvxe6Ld>7Y%Yk^BVxSg~7b18Sx z5uanOgiF6`eyi{F*NoFz^quJI8G8fQ_j0{~>k!vrE{(sDJAdbNi9W)IH*xV-(YNwJ zxcL2``}{-t7W&QnqwkPsHCA&87k0b*?(N*~a-YS6kJb0f4%66)`+N`gDObrgPXT^f(W5?E~YbT1)?C5Z{ICgAM96t_G z4$AdnG?*T%FM6lX@mmGR^$!tgmSzXR#VT)Ftm{k!YIjXmgF{$<0#zIl(T!+Ifvz9Wxe2_ijqT| zA@4K}!aTOQNo^cu5_>kNzZ@@3)}}?8BupIUX_kgDJ2v_J({q07#X>n+E>?%t`NdHZ zCP5y?HjD$C zE6(FE&ci%3Nj|r9#*^`E3sXEp8XyuQlgP6?x2EshoZiUvn0LYLw$^@WKoBQEi1H*R z%?Brr^ZibuJ# z%IWCfaI&V`Y(SzSNx za(Or{7UgYL*JlJR`K>`sNoh=MlO)Dl1_%I~Pt5#B?xtu3JsnQ(J*fRu6QIx$wv3xc zy$LnJF0}F@I#tW3(y3b6qYOudpUP7-D$nBiUDY(-N=9Cbki$M9d)l$hvfVd+pmj+zHYbM>2DqibVByL9qTFgY zRfNOKrJ*(CyJQ9Ay-8oR_13&T9Gx64)oHr18Mzr5Kp5mXIRJ;e*AuS&rSm$Kzm(56 z0eK)1Jd~>>A0Q>47Au9y1Q+p7l(C{#8l+K(d7|Z6-nR=+0p4=t@J+WJ8LTem7)O<7 zXokx9@4~A4&dtk!6XKttz9GHV!uOEVSJ_eP<}y+uwph8j#FBDF;b3VzTi&>P;q=<{ zskY!s-BpxPq8AuO3bt?<;UPo(Xcp$+(7d`cLgXyj!Sk+$!w+FxBzv36V1CoWdL zy1q6cI~y#|R#&1-*_aAbRi32ELEjwP7T>0J7I9N~AfzB6$c2%~$fc;j$fx3*nuf}x zO7=@Md8De^FF?sYB2qrqK(dE#jZI3j7?X>}Iz<&zF{yFSQM$m@rjoTIj@e9}V52E4 zNt;rev?C5qmZoQ_VJKHdEM=YY1Q20ge0Q@rPjGN$ZFI7phzf(sxh3W_>vxVA-%bjb8D*g+#{kma3Z+}w_Nvf%;&wn4Pw^4tM24c-z%wD)>N(@~ zXXV1y1O=}^oX74_yNFbcTu{9nrMc6w(%toqyI02L@?iBuSqV6etih+yfw1_Aou}Jo zqx`^mhuV3!7I2Z`W>3tW^HaV-To0(0a)JSQ7*=3*p&PyHb={YX)HiOC&81W@9`pDx!3+@>^}}G$eOKT;%}tkZ4V~E=IMk0qqMmhYw(b z1Oy}*hkJ-YPK33JRRvpHO_9PIDmBbdjSWMKYyLe;iEBAlGf0%MiWM?BcR4C*?>=|y z$*%u+NL>#epNO%gP@zy$^M?i}t~T0*jc;S@pHWp)QIx^VMEH$}E+?I&KBmrXx5r1F zj`gE~IqM>MqA^sRZ+(1SQE z$^q@pVtRZystax99-Lo_myU^<=;r*!TXi+N31kw~8YpxGQy3c(g!xzP=XE;4h+34@ zMuvb{>DzA7rM9mAnyv0VZn;f5i3|yAqDCO0Au%y=GXK$U@qxsjS@R?yjEO(==;%rl z{75{g+J;#ftgzdM@;z)()HYwUCs3vN^Hy==! z=_+5_-XAJN9jCq|xe6sCxl+%r+eKZlWG7RSld6wJ8oM$cRke55&5B`9l|a)MLF30b z$GPX>2WIV`n943qg$@kc^S5s`oSZ zlDF`0a%&tbY)RY6U@WRiD5pa=C>F<5M|ISqD8g!Dx>&glcv?oKfzp=?s)0`y#X8vu z2@sVhUr}^Q1$)-!qG0Plt47F6+UoCr6zb_M4;5)N8LmEhmXH(o4PI3OD7w4V2mYpwgN{0s{F`>Cf&zL1BU+Fnl zPf*)ZCKdW#DG`(1(Uw6+(uCwS57RpB>E_mhx60>-S%4|g<)oNRb}@0I(9$U$*n~X4 zMqU}^H|m+h7dC80K(=W@ zsM-_v_Rx`0LZp-TW4R>3M1mx4-7U2XI>eg*a@AzLkUjHx&U%{~xo_I%+$u}sjQCB> zPIZ)KhBFBI_Tk))-#x{8c{t9B$*xsk(VOX6RJ+X!5`j*{I|j?fjpM}$h?V$>hZ%W@ zzbKjp1WHN+H3i6@F@!xWs;;TrxhvnVJO~{bJUeL>x-~aj*>Nig83m;oZb6JWZ{8T- zNqP@cCw-l0)1@Ha4#`${lBl-?h#$SlXFDey6tDRm^FWErBcVr7J({I!)-$`uV4F^D z35Qi~JS)*tGVYLvcxb9h=HAqEdnnsWE#T?<1^ql+exhz5y##uOdWJLq4iSl~uf11Z zB77BfFliePZmR6vwtc|brI8k;Iew5sCBKq0vVE52@1TD1s1A;JOmbeTV(J3A1U$9e z`FOS#7x-;*5-fmcJLJ$j=-5RJ*mlBF+B)j#6IatIM}H~!*q8bicv#X@j(g`NZsRZc z?i5w4$gY-_Ue&FiK-gv!p_^Z(3 zv;R}wydm_H4nN}IKLGwk$L9|4W<7crGJw{+KjV!LpbtZf|A)B$&dY1LX`QQX{8zYN zcc8-`clh8RyY=Y3$IpX{&)Ym)?@N9QwB~)-!?n(v9R9o9n{~bl{9O*eNAf2e{<44W_}>Qpeuv-a;d&4Ad58b9hyO76 z0(8aS!?m8X4nObVdav{S4!`_gx_NajPlIb;p@)AD^nW}2n1@^N*FtOF4|urr^A?By zkB4jCM;*TZ)0>-5eq()(SAu^AT=Tveys@JnfqoWTcJu2VeiZr!XwCaR57+PC39b9H z+;6$G=CAit-|g`0KGX4+JU{O6+rh_9ucYU%f)<~Lz44m&4Gw>d`}1F^?d6-mf5G7& z^~PTZ{t&djzw%$ZdG-G66K?#QJY4VHo(I>yj)6D)zZKd*OAe2CG@ zd<0tf2@jvtPtjg3{N3Qq`AV2tt{LjI~|EPz{?p|>CFM0S);MYTo{}UcAfAtQBf5gKjhex5s|EhoM z=9M4#fE$0*!w-Rf)!~nM_+8*RwB~)r!}adD$K;Y0A7pf&G-FLr!>68bkC{%Y_>o;vq0JN&KQc&+CWXvyI|50@Xi5nBA8 z@bE*>C*1h`&vx@F4|&w#M?75nde-qd3f`S$&J7Cxo*4#f70Q1c(~&Da}NI_4?hlm2wLlT!NU(hKLRcJe3g5%ey!tE zZv1!tN0&#*e}2J@zXAN`FR9~^{y&hbp~dG2_lA$o<@L~-_f`-8dg#!Ne}H=M@3^KZQIBj~p~ z{O`H%ySm=5{PPE)C8t-vu(|m%7x%^gPr)UJw}3bM(mMA;i~ku9*Sz27@JG0R^op9l z`U{$7g~H?_g@_@d-)58pY?Fr?*Zs)UhcnrS-oHB$uji)+;9Kz=H@v* F|39z&Z;k)} diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json index f64d049..953d224 100644 --- a/.nx/cache/parsed-lock-file.json +++ b/.nx/cache/parsed-lock-file.json @@ -13,9 +13,9 @@ "type": "npm", "name": "npm:@adobe/css-tools", "data": { - "version": "4.2.0", + "version": "4.3.2", "packageName": "@adobe/css-tools", - "hash": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==" + "hash": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==" } }, "npm:@ampproject/remapping": { @@ -31,351 +31,432 @@ "type": "npm", "name": "npm:@angular-devkit/architect", "data": { - "version": "0.1600.6", + "version": "0.1700.7", "packageName": "@angular-devkit/architect", - "hash": "sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w==" + "hash": "sha512-32uitQKsYLGXAKoXBsmOnPsTt9pS+b9cnFI9ZvBFVhJ31I2EOM7vGcMFalhTxdB/DkVHk4TyO78efV0V26DwCA==" } }, "npm:@angular-devkit/build-angular": { "type": "npm", "name": "npm:@angular-devkit/build-angular", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular-devkit/build-angular", - "hash": "sha512-LytFYVMIU3CQ63Teb8wyBk4KYIYEkEpEmkYglUz2PIsyEJqV+V7e5AAb/yFrr0Vumx4iV1JxnMxqB3wUVvQEzA==" + "hash": "sha512-AtEzLk6n6BXqQzk0Bsupe6GV0IgUe7RbpBfqROi+NZqMA7OUAHCX3xA6M68Qu+5KxBtW7T5lHeZZ7iP/y39wtQ==" } }, - "npm:inquirer@8.2.4": { + "npm:chalk@5.3.0": { "type": "npm", - "name": "npm:inquirer@8.2.4", + "name": "npm:chalk@5.3.0", "data": { - "version": "8.2.4", - "packageName": "inquirer", - "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" } }, - "npm:inquirer": { + "npm:chalk@2.4.2": { "type": "npm", - "name": "npm:inquirer", + "name": "npm:chalk@2.4.2", "data": { - "version": "8.2.5", - "packageName": "inquirer", - "hash": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==" + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" } }, - "npm:tslib@2.5.0": { + "npm:chalk": { "type": "npm", - "name": "npm:tslib@2.5.0", + "name": "npm:chalk", "data": { - "version": "2.5.0", - "packageName": "tslib", - "hash": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" } }, - "npm:tslib": { + "npm:cli-width@4.1.0": { "type": "npm", - "name": "npm:tslib", + "name": "npm:cli-width@4.1.0", "data": { - "version": "2.6.0", - "packageName": "tslib", - "hash": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + "version": "4.1.0", + "packageName": "cli-width", + "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" } }, - "npm:tslib@1.14.1": { + "npm:cli-width": { "type": "npm", - "name": "npm:tslib@1.14.1", + "name": "npm:cli-width", "data": { - "version": "1.14.1", - "packageName": "tslib", - "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" } }, - "npm:@angular-devkit/build-webpack": { + "npm:escape-string-regexp@5.0.0": { "type": "npm", - "name": "npm:@angular-devkit/build-webpack", + "name": "npm:escape-string-regexp@5.0.0", "data": { - "version": "0.1600.6", - "packageName": "@angular-devkit/build-webpack", - "hash": "sha512-x9faKFcr+8wELJmuPCPQq0AWlJ578Ooo672NhwcS+2hdrFKY52aFHS3K0JRJPboLBXzAsudkwabGL/Rm5DgDVA==" + "version": "5.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" } }, - "npm:@angular-devkit/core": { + "npm:escape-string-regexp@1.0.5": { "type": "npm", - "name": "npm:@angular-devkit/core", + "name": "npm:escape-string-regexp@1.0.5", "data": { - "version": "16.0.6", - "packageName": "@angular-devkit/core", - "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" } }, - "npm:@angular-devkit/schematics": { + "npm:escape-string-regexp": { "type": "npm", - "name": "npm:@angular-devkit/schematics", + "name": "npm:escape-string-regexp", "data": { - "version": "16.0.6", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" } }, - "npm:@angular-eslint/bundled-angular-compiler": { + "npm:escape-string-regexp@2.0.0": { "type": "npm", - "name": "npm:@angular-eslint/bundled-angular-compiler", + "name": "npm:escape-string-regexp@2.0.0", "data": { - "version": "16.0.3", - "packageName": "@angular-eslint/bundled-angular-compiler", - "hash": "sha512-8zwY6ustiPXBEF3+jELKVwGk6j2HJn7GHbqAhDFR02YiE27iRMSGTHIAWGs6ZI7F1JgfrIsOHrUgzC1x95K6rg==" + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" } }, - "npm:@angular-eslint/eslint-plugin": { + "npm:figures@5.0.0": { "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin", + "name": "npm:figures@5.0.0", "data": { - "version": "16.0.3", - "packageName": "@angular-eslint/eslint-plugin", - "hash": "sha512-1c+dFytcQDOA2wJ8/rtydMV6UYq1BgVfOcBXOr0WJxC9g8Cad9czcUOkW41WGrTp5kICMliV0ypH5eEaCM2WDQ==" + "version": "5.0.0", + "packageName": "figures", + "hash": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==" } }, - "npm:@angular-eslint/eslint-plugin-template": { + "npm:figures": { "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin-template", + "name": "npm:figures", "data": { - "version": "16.0.3", - "packageName": "@angular-eslint/eslint-plugin-template", - "hash": "sha512-OKTMWOjC7F5tdv7gm2tlmgyr/uVyS1RWJZn4X/6D6p0kOpiDXmajtbYHD5tzbshX2Ep62Nt+rg8+1XGHrU0ScA==" + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" } }, - "npm:@angular-eslint/template-parser": { + "npm:figures@6.0.1": { "type": "npm", - "name": "npm:@angular-eslint/template-parser", + "name": "npm:figures@6.0.1", "data": { - "version": "16.0.3", - "packageName": "@angular-eslint/template-parser", - "hash": "sha512-IAWdwp/S9QC3EMiVxSS0E3ABy9PSidN3PW0Ll2EtM3mzXMYlpZXmxqd+B1xV/xKWzhk1Mp04QX8hHfG6Vq+qaQ==" + "version": "6.0.1", + "packageName": "figures", + "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" } }, - "npm:@angular-eslint/utils": { + "npm:figures@2.0.0": { "type": "npm", - "name": "npm:@angular-eslint/utils", + "name": "npm:figures@2.0.0", "data": { - "version": "16.0.3", - "packageName": "@angular-eslint/utils", - "hash": "sha512-QsbUVHJLk+fE08/D4y3wOyGk1iX2LVSygw+uzilbaAXfjD5/c0Ei5FbVx2mMYPk+aOl4yrvGQW3dmetMiAR0MQ==" + "version": "2.0.0", + "packageName": "figures", + "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" } }, - "npm:@angular/animations": { + "npm:inquirer@9.2.11": { "type": "npm", - "name": "npm:@angular/animations", + "name": "npm:inquirer@9.2.11", "data": { - "version": "16.0.6", - "packageName": "@angular/animations", - "hash": "sha512-dB7F0ZR168I2H7Ftww4hG5ptRfr3bgfKsuOQGOQRd1a1A6ua3jbnlvceI38PW7vAXTcOIQDBsJzQkTAysWOihA==" + "version": "9.2.11", + "packageName": "inquirer", + "hash": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==" } }, - "npm:@angular/cdk": { + "npm:inquirer": { "type": "npm", - "name": "npm:@angular/cdk", + "name": "npm:inquirer", "data": { - "version": "16.1.3", - "packageName": "@angular/cdk", - "hash": "sha512-PsBcJSIX6D1w1OhHfcfi21Dug/eBWexlQ1XuU3CkLxC4BLvmpOEtugRKwIhSpaio3RauSaQydvlDHkiQsQbiKw==" + "version": "8.2.6", + "packageName": "inquirer", + "hash": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==" } }, - "npm:@angular/cli": { + "npm:is-unicode-supported@1.3.0": { "type": "npm", - "name": "npm:@angular/cli", + "name": "npm:is-unicode-supported@1.3.0", "data": { - "version": "16.0.6", - "packageName": "@angular/cli", - "hash": "sha512-um7oOWSu9SIzvwqJ5Aeqcki5/qj4yb6QKi8RkHDWpOdrg1tJfX/BnIzUa4jiCXIwYRIz+PjYJb8W5216wS+7Gg==" + "version": "1.3.0", + "packageName": "is-unicode-supported", + "hash": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" } }, - "npm:@angular/common": { + "npm:is-unicode-supported": { "type": "npm", - "name": "npm:@angular/common", + "name": "npm:is-unicode-supported", "data": { - "version": "16.0.6", - "packageName": "@angular/common", - "hash": "sha512-O3vX7feYT73BMZyfCk1Y2+gzu9TUuO3nw4nMYCq6KX+4RxS/N8M8/9B1ZZuQmym4ZpirR/JuZjUZ2qxhMqIOuQ==" + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" } }, - "npm:@angular/compiler": { + "npm:is-unicode-supported@2.0.0": { "type": "npm", - "name": "npm:@angular/compiler", + "name": "npm:is-unicode-supported@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-unicode-supported", + "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" + } + }, + "npm:mute-stream@1.0.0": { + "type": "npm", + "name": "npm:mute-stream@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:run-async@3.0.0": { + "type": "npm", + "name": "npm:run-async@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "run-async", + "hash": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:@angular-devkit/build-webpack": { + "type": "npm", + "name": "npm:@angular-devkit/build-webpack", + "data": { + "version": "0.1700.7", + "packageName": "@angular-devkit/build-webpack", + "hash": "sha512-B9Mg/qYDpE5my8PJ3VPQyRSUV0Oq1bFUzU8s0ZpqEZl1URKc04pm0LtLmebrMIcUZgDiGk0RHaD+O1E9IV/bdQ==" + } + }, + "npm:@angular-devkit/core": { + "type": "npm", + "name": "npm:@angular-devkit/core", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/core", + "hash": "sha512-vATobHo5O5tJba424hJfQWLb40GzvZPNsI74dcgSUTgrDph8ksmk5xB9OvEvf0INorQZ2IMphj/VIWj4/+JqSA==" + } + }, + "npm:@angular-devkit/core@16.0.6": { + "type": "npm", + "name": "npm:@angular-devkit/core@16.0.6", "data": { "version": "16.0.6", - "packageName": "@angular/compiler", - "hash": "sha512-DNfeAJOZLeNoebY913kV5qGI9lqhPFepiag3acxmgPiVUU2PA6Y//xPFhtPFNFTW0RDu4RZk2gnofzS8nZiuPA==" + "packageName": "@angular-devkit/core", + "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" } }, - "npm:@angular/compiler-cli": { + "npm:@angular-devkit/schematics": { "type": "npm", - "name": "npm:@angular/compiler-cli", + "name": "npm:@angular-devkit/schematics", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/schematics", + "hash": "sha512-BY11OkJkM3xyXcvyD7x5kGY/c8Ufd4AfPvI0D9imhVxbns45Q48b1DlvCQvSnCJ/s+OwnkrYb/Efa70ZiaGu8A==" + } + }, + "npm:@angular-devkit/schematics@16.0.6": { + "type": "npm", + "name": "npm:@angular-devkit/schematics@16.0.6", "data": { "version": "16.0.6", - "packageName": "@angular/compiler-cli", - "hash": "sha512-NFMnJnN4Iu9rFtjOFgxs9xnKQfEbZcmG0VvUKmvyu1ERkGcCQbbpbwNzXhN7zb7Tn/XgY9nqlQfyT2XTd+Kylw==" + "packageName": "@angular-devkit/schematics", + "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" } }, - "npm:@babel/core@7.21.8": { + "npm:@angular-eslint/bundled-angular-compiler": { "type": "npm", - "name": "npm:@babel/core@7.21.8", + "name": "npm:@angular-eslint/bundled-angular-compiler", "data": { - "version": "7.21.8", - "packageName": "@babel/core", - "hash": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==" + "version": "17.1.1", + "packageName": "@angular-eslint/bundled-angular-compiler", + "hash": "sha512-xRlSh9qjdUdUKAy/0UQsxX7wf1tHApAsHsfismebPriqfmVAPyEg4HBrM8ImWaZxiqaTGC1AyHsUBQD5FK8o6w==" } }, - "npm:@babel/core": { + "npm:@angular-eslint/eslint-plugin": { "type": "npm", - "name": "npm:@babel/core", + "name": "npm:@angular-eslint/eslint-plugin", "data": { - "version": "7.21.4", - "packageName": "@babel/core", - "hash": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==" + "version": "17.1.1", + "packageName": "@angular-eslint/eslint-plugin", + "hash": "sha512-fFOBlCOVObVu3gjLj+0BypqO1ZR/0bfJnDElqMdYwJG7zRaFT8NNQbrOo/q/GQoqOFoNna6mw3teTGsd5JnL2A==" } }, - "npm:semver@6.3.0": { + "npm:@angular-eslint/eslint-plugin-template": { "type": "npm", - "name": "npm:semver@6.3.0", + "name": "npm:@angular-eslint/eslint-plugin-template", "data": { - "version": "6.3.0", - "packageName": "semver", - "hash": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "17.1.1", + "packageName": "@angular-eslint/eslint-plugin-template", + "hash": "sha512-unZ6QNwtxuB8Eni7UPdw7uK6iZipZUXIsH+ZuLMOxwFgGMqeRnpv8SW0212rto3d/Ec0jESzVHKcwZ9pT+jxgw==" } }, - "npm:semver@7.5.3": { + "npm:@angular-eslint/template-parser": { "type": "npm", - "name": "npm:semver@7.5.3", + "name": "npm:@angular-eslint/template-parser", "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + "version": "17.1.1", + "packageName": "@angular-eslint/template-parser", + "hash": "sha512-ofL46rNhRVeSxrSQF0vwhKMco+vJuo+ZGjSOzFmT9N3KAMB0j+WXTbpyGGMy0gQSBc4W6p+j+zxGa2CR2xb6wA==" } }, - "npm:semver@7.3.4": { + "npm:@angular-eslint/utils": { "type": "npm", - "name": "npm:semver@7.3.4", + "name": "npm:@angular-eslint/utils", "data": { - "version": "7.3.4", - "packageName": "semver", - "hash": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==" + "version": "17.1.1", + "packageName": "@angular-eslint/utils", + "hash": "sha512-CTNPOb05S/DII/Fm8JYUvKo+B4u/ctHjGJ0X1YXUR0q31oaGqTE3KePGq76+Y6swRDf9NjUIcfcnZp3u3j4CBQ==" } }, - "npm:semver@7.5.0": { + "npm:@angular/animations": { "type": "npm", - "name": "npm:semver@7.5.0", + "name": "npm:@angular/animations", "data": { - "version": "7.5.0", - "packageName": "semver", - "hash": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==" + "version": "17.0.7", + "packageName": "@angular/animations", + "hash": "sha512-IjZjPGMxvi2a9o7fzjwNO44FvhTZlVSgcPtqM6Glq0+WVeQcnZxf1Onj68M/FGx2AunS8elRbrgPxTexVeSo7A==" } }, - "npm:semver@7.5.4": { + "npm:@angular/cdk": { "type": "npm", - "name": "npm:semver@7.5.4", + "name": "npm:@angular/cdk", "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + "version": "17.0.4", + "packageName": "@angular/cdk", + "hash": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==" } }, - "npm:semver@5.7.1": { + "npm:@angular/cli": { "type": "npm", - "name": "npm:semver@5.7.1", + "name": "npm:@angular/cli", "data": { - "version": "5.7.1", - "packageName": "semver", - "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "17.0.7", + "packageName": "@angular/cli", + "hash": "sha512-oSa0GVAQNA7wFbLJYeaO3kV4iUcbKEqXDLxcIE8s1GfHddBOlXH2P1T4fXonCBl5qvV+joP0G0+fs7I0w2utZQ==" } }, - "npm:semver": { + "npm:@schematics/angular@17.0.7": { "type": "npm", - "name": "npm:semver", + "name": "npm:@schematics/angular@17.0.7", "data": { - "version": "7.4.0", - "packageName": "semver", - "hash": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==" + "version": "17.0.7", + "packageName": "@schematics/angular", + "hash": "sha512-d7QKmcKrM4owb/2bR7Ipf23roiNbvbD/x7reNhQAtKAPLSHJ3Ulkf1+Yv+dj+9f+K7y9SBviEUSrD27BQ9WaxQ==" } }, - "npm:semver@7.5.1": { + "npm:@schematics/angular": { "type": "npm", - "name": "npm:semver@7.5.1", + "name": "npm:@schematics/angular", "data": { - "version": "7.5.1", - "packageName": "semver", - "hash": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==" + "version": "16.0.6", + "packageName": "@schematics/angular", + "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" } }, - "npm:@babel/generator@7.22.5": { + "npm:@angular/common": { "type": "npm", - "name": "npm:@babel/generator@7.22.5", + "name": "npm:@angular/common", "data": { - "version": "7.22.5", - "packageName": "@babel/generator", - "hash": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==" + "version": "17.0.7", + "packageName": "@angular/common", + "hash": "sha512-bPPL6x0KOAOTxKSE2j4EWmEUOnqZYzOYiHzroa5b9UEyA9NvGkd9bm3zIxw8xcndRj1Ehcmvpi6KBLcYBBbWfg==" } }, - "npm:@babel/generator": { + "npm:@angular/compiler": { "type": "npm", - "name": "npm:@babel/generator", + "name": "npm:@angular/compiler", "data": { - "version": "7.21.4", - "packageName": "@babel/generator", - "hash": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==" + "version": "17.0.7", + "packageName": "@angular/compiler", + "hash": "sha512-QHPuLti2c2tGZmOGZ0cfCHo4LxiHUkC27I0aZFDyQSSQqEI5obQGVlEREHysw0nsS3sYIcLvqcwcKcRtXlXtxQ==" + } + }, + "npm:@angular/compiler-cli": { + "type": "npm", + "name": "npm:@angular/compiler-cli", + "data": { + "version": "17.0.7", + "packageName": "@angular/compiler-cli", + "hash": "sha512-YnL38idjIYtl3BXYpv+sVJKWGbUjHT6eyQSQVAfO/1AwWqVa21K9hnE+Q37VmUKEcKFMnQembeuErA+KVsGI6A==" } }, "npm:@angular/core": { "type": "npm", "name": "npm:@angular/core", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular/core", - "hash": "sha512-PICuJ3ectfE2CKEoAaO2tHmr7Y3yTzpnOJwAFtbYJGf/nZUzuGvsBCjhwFtMNbBrcSqDlygUG2auEvlnyoAkWg==" + "hash": "sha512-mEkelXkzEi6+A9GjdKOSGGzQAfo1iAjVTn6YsplNUeGE5JgDZYZ7sXGQqs0Lin7dzJxnPAgGjCOl7SpWLXIPSQ==" } }, "npm:@angular/forms": { "type": "npm", "name": "npm:@angular/forms", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular/forms", - "hash": "sha512-kjMykcOz0jYHJwZNUqegd9VEQszncNMA+zGvmVuS+jgd60i7obC3zrcyhX0BmJrNLg2aW3I7EDcZAAqFmbdMog==" + "hash": "sha512-28BxRxEmgZIofGwVp6s2v3ri/kuWW+/EY/ZXhavlWKJEh4ATJl72k0RkRWNcQi4wnvn0Qb8tFdnVJnvRZvvKEw==" } }, "npm:@angular/language-service": { "type": "npm", "name": "npm:@angular/language-service", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular/language-service", - "hash": "sha512-X2omkyXh46vv3bBroP22Gmpsrx9h0jEi+KKWvQhZPF+DG7773nweMTaCjhs/HKmu3Lb8d7Bhqeg5WDPLonKv4Q==" + "hash": "sha512-03EXeBZgyGNnEDLiABwEw0lpAcqLxSgl+bXQahOO4OnBSYQWGEiqfs3ymNbNj0chUfQVadG4FWghwGTGbj77Iw==" } }, "npm:@angular/platform-browser": { "type": "npm", "name": "npm:@angular/platform-browser", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular/platform-browser", - "hash": "sha512-VjCw+Ak0ED2y8utxFRAG72e47k1oNQW6jVS/xT5qEy1FZaR3T6i8Oo8LY/dvWr8U3Glx63FLDb6QYgD/ljWAgw==" + "hash": "sha512-bm9/wt51nc/MPjft/FlRNIgFSeLjDtfJOT7M32Rt6kOHhNKSK7ZTPWdMe9ahuHSbAhLzd0G/4NsT5sKrWSeVZg==" } }, "npm:@angular/platform-browser-dynamic": { "type": "npm", "name": "npm:@angular/platform-browser-dynamic", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular/platform-browser-dynamic", - "hash": "sha512-i7LV2lRz22uow807kSvlpWcsCd0325H9/njvgPCKb/Xj7mLiM+h2LbS4X4K7eajlqwRwTzWBD/RuUTeYi5Bzpg==" + "hash": "sha512-OquwUX9fLWA2JUZW5Jm6atk0CPt0sA7Tg24eGLsr6g1XfTS7jRZprlGaa72NgPLnQVV6m84o/ZiNYS6yPmq1Gg==" } }, "npm:@angular/router": { "type": "npm", "name": "npm:@angular/router", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@angular/router", - "hash": "sha512-2RL2nQw2mNrRIHpcZMPsAWqwzvxJ2FhricvHl4Ipgfne2zoq8PnEmIdpKujj7ZfMKDjJD/zWWYQS3ErfYkBghw==" + "hash": "sha512-rUFPe1uDlYYw6+3Gq68czW7WxBH7zT/D3UsT1otqwUV4RnQQsVze4fIit9FqJh7tuP4y3WpB4XBNf7p7Oi6TJw==" } }, "npm:@assemblyscript/loader": { @@ -396,76 +477,76 @@ "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" } }, - "npm:chalk@2.4.2": { + "npm:ansi-styles@3.2.1": { "type": "npm", - "name": "npm:chalk@2.4.2", + "name": "npm:ansi-styles@3.2.1", "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" } }, - "npm:chalk": { + "npm:ansi-styles@6.2.1": { "type": "npm", - "name": "npm:chalk", + "name": "npm:ansi-styles@6.2.1", "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" } }, - "npm:chalk@5.2.0": { + "npm:ansi-styles": { "type": "npm", - "name": "npm:chalk@5.2.0", + "name": "npm:ansi-styles", "data": { - "version": "5.2.0", - "packageName": "chalk", - "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" } }, - "npm:chalk@5.3.0": { + "npm:ansi-styles@5.2.0": { "type": "npm", - "name": "npm:chalk@5.3.0", + "name": "npm:ansi-styles@5.2.0", "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" } }, - "npm:escape-string-regexp@1.0.5": { + "npm:color-convert@1.9.3": { "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", + "name": "npm:color-convert@1.9.3", "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" } }, - "npm:escape-string-regexp@5.0.0": { + "npm:color-convert": { "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", + "name": "npm:color-convert", "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" } }, - "npm:escape-string-regexp": { + "npm:color-name@1.1.3": { "type": "npm", - "name": "npm:escape-string-regexp", + "name": "npm:color-name@1.1.3", "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" } }, - "npm:escape-string-regexp@2.0.0": { + "npm:color-name": { "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", + "name": "npm:color-name", "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" } }, "npm:has-flag@3.0.0": { @@ -495,13 +576,13 @@ "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" } }, - "npm:supports-color@7.2.0": { + "npm:supports-color@8.1.1": { "type": "npm", - "name": "npm:supports-color@7.2.0", + "name": "npm:supports-color@8.1.1", "data": { - "version": "7.2.0", + "version": "8.1.1", "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" } }, "npm:supports-color@9.4.0": { @@ -517,32 +598,104 @@ "type": "npm", "name": "npm:supports-color", "data": { - "version": "8.1.1", + "version": "7.2.0", "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" } }, "npm:@babel/compat-data": { "type": "npm", "name": "npm:@babel/compat-data", "data": { - "version": "7.22.5", + "version": "7.23.5", "packageName": "@babel/compat-data", - "hash": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==" + "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" } }, - "npm:@babel/helper-annotate-as-pure": { + "npm:@babel/core": { "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", + "name": "npm:@babel/core", "data": { - "version": "7.18.6", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==" + "version": "7.23.2", + "packageName": "@babel/core", + "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.9.0", + "packageName": "convert-source-map", + "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "3378029399647957957" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.0", + "packageName": "@babel/generator", + "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" + } + }, + "npm:@babel/generator@7.23.6": { + "type": "npm", + "name": "npm:@babel/generator@7.23.6", + "data": { + "version": "7.23.6", + "packageName": "@babel/generator", + "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" } }, - "npm:@babel/helper-annotate-as-pure@7.22.5": { + "npm:@babel/helper-annotate-as-pure": { "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure@7.22.5", + "name": "npm:@babel/helper-annotate-as-pure", "data": { "version": "7.22.5", "packageName": "@babel/helper-annotate-as-pure", @@ -553,99 +706,63 @@ "type": "npm", "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", "data": { - "version": "7.22.5", + "version": "7.22.15", "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==" + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" } }, "npm:@babel/helper-compilation-targets": { "type": "npm", "name": "npm:@babel/helper-compilation-targets", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==" + "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" } }, "npm:@babel/helper-create-class-features-plugin": { "type": "npm", "name": "npm:@babel/helper-create-class-features-plugin", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==" - } - }, - "npm:@babel/helper-split-export-declaration@7.22.5": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration@7.22.5", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.18.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==" + "hash": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==" } }, "npm:@babel/helper-create-regexp-features-plugin": { "type": "npm", "name": "npm:@babel/helper-create-regexp-features-plugin", "data": { - "version": "7.22.5", + "version": "7.22.15", "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==" + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" } }, "npm:@babel/helper-define-polyfill-provider": { "type": "npm", "name": "npm:@babel/helper-define-polyfill-provider", "data": { - "version": "0.3.3", + "version": "0.4.4", "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==" + "hash": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==" } }, "npm:@babel/helper-environment-visitor": { "type": "npm", "name": "npm:@babel/helper-environment-visitor", "data": { - "version": "7.22.5", + "version": "7.22.20", "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==" + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" } }, "npm:@babel/helper-function-name": { "type": "npm", "name": "npm:@babel/helper-function-name", "data": { - "version": "7.22.5", + "version": "7.23.0", "packageName": "@babel/helper-function-name", - "hash": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==" - } - }, - "npm:@babel/template@7.22.5": { - "type": "npm", - "name": "npm:@babel/template@7.22.5", - "data": { - "version": "7.22.5", - "packageName": "@babel/template", - "hash": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.20.7", - "packageName": "@babel/template", - "hash": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==" + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" } }, "npm:@babel/helper-hoist-variables": { @@ -661,27 +778,27 @@ "type": "npm", "name": "npm:@babel/helper-member-expression-to-functions", "data": { - "version": "7.22.5", + "version": "7.23.0", "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==" + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" } }, "npm:@babel/helper-module-imports": { "type": "npm", "name": "npm:@babel/helper-module-imports", "data": { - "version": "7.22.5", + "version": "7.22.15", "packageName": "@babel/helper-module-imports", - "hash": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==" + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" } }, "npm:@babel/helper-module-transforms": { "type": "npm", "name": "npm:@babel/helper-module-transforms", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/helper-module-transforms", - "hash": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==" + "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" } }, "npm:@babel/helper-optimise-call-expression": { @@ -706,18 +823,18 @@ "type": "npm", "name": "npm:@babel/helper-remap-async-to-generator", "data": { - "version": "7.22.5", + "version": "7.22.20", "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==" + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" } }, "npm:@babel/helper-replace-supers": { "type": "npm", "name": "npm:@babel/helper-replace-supers", "data": { - "version": "7.22.5", + "version": "7.22.20", "packageName": "@babel/helper-replace-supers", - "hash": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==" + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" } }, "npm:@babel/helper-simple-access": { @@ -738,13 +855,22 @@ "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" } }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, "npm:@babel/helper-string-parser": { "type": "npm", "name": "npm:@babel/helper-string-parser", "data": { - "version": "7.22.5", + "version": "7.23.4", "packageName": "@babel/helper-string-parser", - "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" } }, "npm:@babel/helper-validator-identifier": { @@ -760,27 +886,27 @@ "type": "npm", "name": "npm:@babel/helper-validator-option", "data": { - "version": "7.22.5", + "version": "7.23.5", "packageName": "@babel/helper-validator-option", - "hash": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==" + "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" } }, "npm:@babel/helper-wrap-function": { "type": "npm", "name": "npm:@babel/helper-wrap-function", "data": { - "version": "7.22.5", + "version": "7.22.20", "packageName": "@babel/helper-wrap-function", - "hash": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==" + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" } }, "npm:@babel/helpers": { "type": "npm", "name": "npm:@babel/helpers", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/helpers", - "hash": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==" + "hash": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==" } }, "npm:@babel/highlight": { @@ -796,203 +922,77 @@ "type": "npm", "name": "npm:@babel/parser", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/parser", - "hash": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==" + "hash": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==" } }, "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "type": "npm", "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==" + "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" } }, "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "type": "npm", "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==" + "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" } }, - "npm:@babel/plugin-proposal-async-generator-functions": { + "npm:@babel/plugin-proposal-decorators": { "type": "npm", - "name": "npm:@babel/plugin-proposal-async-generator-functions", + "name": "npm:@babel/plugin-proposal-decorators", "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-async-generator-functions", - "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" + "version": "7.23.6", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==" } }, - "npm:@babel/plugin-proposal-class-properties": { + "npm:@babel/plugin-proposal-private-property-in-object": { "type": "npm", - "name": "npm:@babel/plugin-proposal-class-properties", + "name": "npm:@babel/plugin-proposal-private-property-in-object", "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-class-properties", - "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" } }, - "npm:@babel/plugin-proposal-class-static-block": { + "npm:@babel/plugin-syntax-async-generators": { "type": "npm", - "name": "npm:@babel/plugin-proposal-class-static-block", + "name": "npm:@babel/plugin-syntax-async-generators", "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-class-static-block", - "hash": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==" + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" } }, - "npm:@babel/plugin-proposal-decorators": { + "npm:@babel/plugin-syntax-bigint": { "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", + "name": "npm:@babel/plugin-syntax-bigint", "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==" + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" } }, - "npm:@babel/plugin-proposal-dynamic-import": { + "npm:@babel/plugin-syntax-class-properties": { "type": "npm", - "name": "npm:@babel/plugin-proposal-dynamic-import", + "name": "npm:@babel/plugin-syntax-class-properties", "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-dynamic-import", - "hash": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==" + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" } }, - "npm:@babel/plugin-proposal-export-namespace-from": { + "npm:@babel/plugin-syntax-class-static-block": { "type": "npm", - "name": "npm:@babel/plugin-proposal-export-namespace-from", - "data": { - "version": "7.18.9", - "packageName": "@babel/plugin-proposal-export-namespace-from", - "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" - } - }, - "npm:@babel/plugin-proposal-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-json-strings", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-json-strings", - "hash": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==" - } - }, - "npm:@babel/plugin-proposal-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-logical-assignment-operators", - "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-logical-assignment-operators", - "hash": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==" - } - }, - "npm:@babel/plugin-proposal-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", - "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" - } - }, - "npm:@babel/plugin-proposal-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-numeric-separator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-numeric-separator", - "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" - } - }, - "npm:@babel/plugin-proposal-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-object-rest-spread", - "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-object-rest-spread", - "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" - } - }, - "npm:@babel/plugin-proposal-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-catch-binding", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-optional-catch-binding", - "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" - } - }, - "npm:@babel/plugin-proposal-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-chaining", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-optional-chaining", - "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" - } - }, - "npm:@babel/plugin-proposal-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-methods", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-private-methods", - "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.11", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==" - } - }, - "npm:@babel/plugin-proposal-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-unicode-property-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-unicode-property-regex", - "hash": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", + "name": "npm:@babel/plugin-syntax-class-static-block", "data": { "version": "7.14.5", "packageName": "@babel/plugin-syntax-class-static-block", @@ -1003,9 +1003,9 @@ "type": "npm", "name": "npm:@babel/plugin-syntax-decorators", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==" + "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" } }, "npm:@babel/plugin-syntax-dynamic-import": { @@ -1030,9 +1030,18 @@ "type": "npm", "name": "npm:@babel/plugin-syntax-import-assertions", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" + "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" } }, "npm:@babel/plugin-syntax-import-meta": { @@ -1057,9 +1066,9 @@ "type": "npm", "name": "npm:@babel/plugin-syntax-jsx", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" + "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" } }, "npm:@babel/plugin-syntax-logical-assignment-operators": { @@ -1138,171 +1147,243 @@ "type": "npm", "name": "npm:@babel/plugin-syntax-typescript", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" + "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" } }, "npm:@babel/plugin-transform-arrow-functions": { "type": "npm", "name": "npm:@babel/plugin-transform-arrow-functions", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" + "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" } }, "npm:@babel/plugin-transform-async-to-generator": { "type": "npm", "name": "npm:@babel/plugin-transform-async-to-generator", "data": { - "version": "7.20.7", + "version": "7.22.5", "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==" + "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" } }, "npm:@babel/plugin-transform-block-scoped-functions": { "type": "npm", "name": "npm:@babel/plugin-transform-block-scoped-functions", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" + "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" } }, "npm:@babel/plugin-transform-block-scoping": { "type": "npm", "name": "npm:@babel/plugin-transform-block-scoping", "data": { - "version": "7.22.5", + "version": "7.23.4", "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==" + "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" } }, "npm:@babel/plugin-transform-classes": { "type": "npm", "name": "npm:@babel/plugin-transform-classes", "data": { - "version": "7.22.5", + "version": "7.23.5", "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==" + "hash": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==" } }, "npm:@babel/plugin-transform-computed-properties": { "type": "npm", "name": "npm:@babel/plugin-transform-computed-properties", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" + "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" } }, "npm:@babel/plugin-transform-destructuring": { "type": "npm", "name": "npm:@babel/plugin-transform-destructuring", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==" + "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" } }, "npm:@babel/plugin-transform-dotall-regex": { "type": "npm", "name": "npm:@babel/plugin-transform-dotall-regex", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" + "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" } }, "npm:@babel/plugin-transform-duplicate-keys": { "type": "npm", "name": "npm:@babel/plugin-transform-duplicate-keys", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" + "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" } }, "npm:@babel/plugin-transform-exponentiation-operator": { "type": "npm", "name": "npm:@babel/plugin-transform-exponentiation-operator", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" + "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" } }, "npm:@babel/plugin-transform-for-of": { "type": "npm", "name": "npm:@babel/plugin-transform-for-of", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==" + "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" } }, "npm:@babel/plugin-transform-function-name": { "type": "npm", "name": "npm:@babel/plugin-transform-function-name", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" + "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" } }, "npm:@babel/plugin-transform-literals": { "type": "npm", "name": "npm:@babel/plugin-transform-literals", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" + "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" } }, "npm:@babel/plugin-transform-member-expression-literals": { "type": "npm", "name": "npm:@babel/plugin-transform-member-expression-literals", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" + "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" } }, "npm:@babel/plugin-transform-modules-amd": { "type": "npm", "name": "npm:@babel/plugin-transform-modules-amd", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==" + "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" } }, "npm:@babel/plugin-transform-modules-commonjs": { "type": "npm", "name": "npm:@babel/plugin-transform-modules-commonjs", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==" + "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" } }, "npm:@babel/plugin-transform-modules-systemjs": { "type": "npm", "name": "npm:@babel/plugin-transform-modules-systemjs", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==" + "hash": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==" } }, "npm:@babel/plugin-transform-modules-umd": { "type": "npm", "name": "npm:@babel/plugin-transform-modules-umd", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" + "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" } }, "npm:@babel/plugin-transform-named-capturing-groups-regex": { @@ -1318,171 +1399,243 @@ "type": "npm", "name": "npm:@babel/plugin-transform-new-target", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" + "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" } }, "npm:@babel/plugin-transform-object-super": { "type": "npm", "name": "npm:@babel/plugin-transform-object-super", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" + "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" } }, "npm:@babel/plugin-transform-optional-chaining": { "type": "npm", "name": "npm:@babel/plugin-transform-optional-chaining", "data": { - "version": "7.22.5", + "version": "7.23.4", "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==" + "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" } }, "npm:@babel/plugin-transform-parameters": { "type": "npm", "name": "npm:@babel/plugin-transform-parameters", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==" + "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" } }, "npm:@babel/plugin-transform-property-literals": { "type": "npm", "name": "npm:@babel/plugin-transform-property-literals", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" + "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" } }, "npm:@babel/plugin-transform-regenerator": { "type": "npm", "name": "npm:@babel/plugin-transform-regenerator", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==" + "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" } }, "npm:@babel/plugin-transform-reserved-words": { "type": "npm", "name": "npm:@babel/plugin-transform-reserved-words", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" + "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" } }, "npm:@babel/plugin-transform-runtime": { "type": "npm", "name": "npm:@babel/plugin-transform-runtime", "data": { - "version": "7.21.4", + "version": "7.23.2", "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==" + "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" } }, "npm:@babel/plugin-transform-shorthand-properties": { "type": "npm", "name": "npm:@babel/plugin-transform-shorthand-properties", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" + "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" } }, "npm:@babel/plugin-transform-spread": { "type": "npm", "name": "npm:@babel/plugin-transform-spread", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" + "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" } }, "npm:@babel/plugin-transform-sticky-regex": { "type": "npm", "name": "npm:@babel/plugin-transform-sticky-regex", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" + "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" } }, "npm:@babel/plugin-transform-template-literals": { "type": "npm", "name": "npm:@babel/plugin-transform-template-literals", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" + "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" } }, "npm:@babel/plugin-transform-typeof-symbol": { "type": "npm", "name": "npm:@babel/plugin-transform-typeof-symbol", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" + "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" } }, "npm:@babel/plugin-transform-typescript": { "type": "npm", "name": "npm:@babel/plugin-transform-typescript", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==" + "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" } }, "npm:@babel/plugin-transform-unicode-escapes": { "type": "npm", "name": "npm:@babel/plugin-transform-unicode-escapes", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==" + "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" } }, "npm:@babel/plugin-transform-unicode-regex": { "type": "npm", "name": "npm:@babel/plugin-transform-unicode-regex", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" + "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" } }, "npm:@babel/preset-env": { "type": "npm", "name": "npm:@babel/preset-env", "data": { - "version": "7.21.4", + "version": "7.23.2", "packageName": "@babel/preset-env", - "hash": "sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==" + "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" } }, "npm:@babel/preset-modules": { "type": "npm", "name": "npm:@babel/preset-modules", "data": { - "version": "0.1.5", + "version": "0.1.6-no-external-plugins", "packageName": "@babel/preset-modules", - "hash": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" } }, "npm:@babel/preset-typescript": { "type": "npm", "name": "npm:@babel/preset-typescript", "data": { - "version": "7.22.5", + "version": "7.23.3", "packageName": "@babel/preset-typescript", - "hash": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==" + "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" } }, "npm:@babel/regjsgen": { @@ -1498,27 +1651,36 @@ "type": "npm", "name": "npm:@babel/runtime", "data": { - "version": "7.21.0", + "version": "7.23.2", "packageName": "@babel/runtime", - "hash": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==" + "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.22.15", + "packageName": "@babel/template", + "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" } }, "npm:@babel/traverse": { "type": "npm", "name": "npm:@babel/traverse", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/traverse", - "hash": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==" + "hash": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==" } }, "npm:@babel/types": { "type": "npm", "name": "npm:@babel/types", "data": { - "version": "7.22.5", + "version": "7.23.6", "packageName": "@babel/types", - "hash": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==" + "hash": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==" } }, "npm:@bcoe/v8-coverage": { @@ -1561,18 +1723,27 @@ "type": "npm", "name": "npm:@jridgewell/trace-mapping", "data": { - "version": "0.3.18", + "version": "0.3.20", "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==" + "hash": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==" } }, "npm:@cypress/request": { "type": "npm", "name": "npm:@cypress/request", "data": { - "version": "2.88.11", + "version": "2.88.12", "packageName": "@cypress/request", - "hash": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==" + "hash": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==" + } + }, + "npm:@cypress/request@3.0.1": { + "type": "npm", + "name": "npm:@cypress/request@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@cypress/request", + "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" } }, "npm:@cypress/xvfb": { @@ -1611,6 +1782,15 @@ "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" } }, + "npm:debug@4.3.2": { + "type": "npm", + "name": "npm:debug@4.3.2", + "data": { + "version": "4.3.2", + "packageName": "debug", + "hash": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==" + } + }, "npm:debug@3.1.0": { "type": "npm", "name": "npm:debug@3.1.0", @@ -1633,198 +1813,396 @@ "type": "npm", "name": "npm:@esbuild/android-arm", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/android-arm", - "hash": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==" + "hash": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==" + } + }, + "npm:@esbuild/android-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm", + "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" } }, "npm:@esbuild/android-arm64": { "type": "npm", "name": "npm:@esbuild/android-arm64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==" + } + }, + "npm:@esbuild/android-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/android-arm64", - "hash": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==" + "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" } }, "npm:@esbuild/android-x64": { "type": "npm", "name": "npm:@esbuild/android-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/android-x64", + "hash": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==" + } + }, + "npm:@esbuild/android-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/android-x64", - "hash": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==" + "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" } }, "npm:@esbuild/darwin-arm64": { "type": "npm", "name": "npm:@esbuild/darwin-arm64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==" + "hash": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" } }, "npm:@esbuild/darwin-x64": { "type": "npm", "name": "npm:@esbuild/darwin-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/darwin-x64", - "hash": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==" + "hash": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==" + } + }, + "npm:@esbuild/darwin-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" } }, "npm:@esbuild/freebsd-arm64": { "type": "npm", "name": "npm:@esbuild/freebsd-arm64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==" + "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" } }, "npm:@esbuild/freebsd-x64": { "type": "npm", "name": "npm:@esbuild/freebsd-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==" + "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" } }, "npm:@esbuild/linux-arm": { "type": "npm", "name": "npm:@esbuild/linux-arm", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/linux-arm", - "hash": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==" + "hash": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==" + } + }, + "npm:@esbuild/linux-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" } }, "npm:@esbuild/linux-arm64": { "type": "npm", "name": "npm:@esbuild/linux-arm64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==" + } + }, + "npm:@esbuild/linux-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/linux-arm64", - "hash": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==" + "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" } }, "npm:@esbuild/linux-ia32": { "type": "npm", "name": "npm:@esbuild/linux-ia32", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==" + } + }, + "npm:@esbuild/linux-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/linux-ia32", - "hash": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==" + "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" } }, "npm:@esbuild/linux-loong64": { "type": "npm", "name": "npm:@esbuild/linux-loong64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==" + } + }, + "npm:@esbuild/linux-loong64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/linux-loong64", - "hash": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==" + "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" } }, "npm:@esbuild/linux-mips64el": { "type": "npm", "name": "npm:@esbuild/linux-mips64el", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==" + "hash": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" } }, "npm:@esbuild/linux-ppc64": { "type": "npm", "name": "npm:@esbuild/linux-ppc64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==" + "hash": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" } }, "npm:@esbuild/linux-riscv64": { "type": "npm", "name": "npm:@esbuild/linux-riscv64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==" + "hash": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" } }, "npm:@esbuild/linux-s390x": { "type": "npm", "name": "npm:@esbuild/linux-s390x", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==" + } + }, + "npm:@esbuild/linux-s390x@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/linux-s390x", - "hash": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==" + "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" } }, "npm:@esbuild/linux-x64": { "type": "npm", "name": "npm:@esbuild/linux-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/linux-x64", - "hash": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==" + "hash": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==" + } + }, + "npm:@esbuild/linux-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" } }, "npm:@esbuild/netbsd-x64": { "type": "npm", "name": "npm:@esbuild/netbsd-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==" + "hash": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" } }, "npm:@esbuild/openbsd-x64": { "type": "npm", "name": "npm:@esbuild/openbsd-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==" + "hash": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" } }, "npm:@esbuild/sunos-x64": { "type": "npm", "name": "npm:@esbuild/sunos-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/sunos-x64", - "hash": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==" + "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" } }, "npm:@esbuild/win32-arm64": { "type": "npm", "name": "npm:@esbuild/win32-arm64", "data": { - "version": "0.17.18", + "version": "0.19.5", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==" + } + }, + "npm:@esbuild/win32-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.20", + "data": { + "version": "0.18.20", "packageName": "@esbuild/win32-arm64", - "hash": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==" + "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" } }, "npm:@esbuild/win32-ia32": { "type": "npm", "name": "npm:@esbuild/win32-ia32", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/win32-ia32", - "hash": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==" + "hash": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==" + } + }, + "npm:@esbuild/win32-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" } }, "npm:@esbuild/win32-x64": { "type": "npm", "name": "npm:@esbuild/win32-x64", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "@esbuild/win32-x64", - "hash": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==" + "hash": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==" + } + }, + "npm:@esbuild/win32-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" } }, "npm:@eslint-community/eslint-utils": { @@ -1840,27 +2218,18 @@ "type": "npm", "name": "npm:@eslint-community/regexpp", "data": { - "version": "4.5.1", + "version": "4.10.0", "packageName": "@eslint-community/regexpp", - "hash": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==" + "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" } }, "npm:@eslint/eslintrc": { "type": "npm", "name": "npm:@eslint/eslintrc", "data": { - "version": "1.4.1", - "packageName": "@eslint/eslintrc", - "hash": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==" - } - }, - "npm:@eslint/eslintrc@2.1.0": { - "type": "npm", - "name": "npm:@eslint/eslintrc@2.1.0", - "data": { - "version": "2.1.0", + "version": "2.1.4", "packageName": "@eslint/eslintrc", - "hash": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==" + "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" } }, "npm:ajv@6.12.6": { @@ -1899,13 +2268,13 @@ "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" } }, - "npm:globals@13.20.0": { + "npm:globals@13.24.0": { "type": "npm", - "name": "npm:globals@13.20.0", + "name": "npm:globals@13.24.0", "data": { - "version": "13.20.0", + "version": "13.24.0", "packageName": "globals", - "hash": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==" + "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" } }, "npm:globals": { @@ -1962,13 +2331,22 @@ "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" } }, - "npm:minimatch@9.0.2": { + "npm:minimatch@9.0.3": { "type": "npm", - "name": "npm:minimatch@9.0.2", + "name": "npm:minimatch@9.0.3", "data": { - "version": "9.0.2", + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:minimatch@7.4.6": { + "type": "npm", + "name": "npm:minimatch@7.4.6", + "data": { + "version": "7.4.6", "packageName": "minimatch", - "hash": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==" + "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" } }, "npm:minimatch@5.1.6": { @@ -1989,15 +2367,6 @@ "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" } }, - "npm:minimatch@9.0.3": { - "type": "npm", - "name": "npm:minimatch@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "17406413972526757349" - } - }, "npm:type-fest@0.20.2": { "type": "npm", "name": "npm:type-fest@0.20.2", @@ -2034,15 +2403,6 @@ "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" } }, - "npm:type-fest@0.3.1": { - "type": "npm", - "name": "npm:type-fest@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "type-fest", - "hash": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" - } - }, "npm:type-fest@2.19.0": { "type": "npm", "name": "npm:type-fest@2.19.0", @@ -2065,27 +2425,27 @@ "type": "npm", "name": "npm:@eslint/js", "data": { - "version": "8.44.0", + "version": "8.48.0", "packageName": "@eslint/js", - "hash": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==" + "hash": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==" } }, - "npm:@humanwhocodes/config-array": { + "npm:@fastify/busboy": { "type": "npm", - "name": "npm:@humanwhocodes/config-array", + "name": "npm:@fastify/busboy", "data": { - "version": "0.9.5", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==" + "version": "2.1.0", + "packageName": "@fastify/busboy", + "hash": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==" } }, - "npm:@humanwhocodes/config-array@0.11.10": { + "npm:@humanwhocodes/config-array": { "type": "npm", - "name": "npm:@humanwhocodes/config-array@0.11.10", + "name": "npm:@humanwhocodes/config-array", "data": { - "version": "0.11.10", + "version": "0.11.13", "packageName": "@humanwhocodes/config-array", - "hash": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==" + "hash": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==" } }, "npm:@humanwhocodes/module-importer": { @@ -2101,9 +2461,9 @@ "type": "npm", "name": "npm:@humanwhocodes/object-schema", "data": { - "version": "1.2.1", + "version": "2.0.1", "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + "hash": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" } }, "npm:@isaacs/cliui": { @@ -2133,42 +2493,6 @@ "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" } }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles@4.3.0": { - "type": "npm", - "name": "npm:ansi-styles@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, "npm:emoji-regex@9.2.2": { "type": "npm", "name": "npm:emoji-regex@9.2.2", @@ -2232,22 +2556,22 @@ "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" } }, - "npm:wrap-ansi@6.2.0": { + "npm:wrap-ansi@7.0.0": { "type": "npm", - "name": "npm:wrap-ansi@6.2.0", + "name": "npm:wrap-ansi@7.0.0", "data": { - "version": "6.2.0", + "version": "7.0.0", "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" } }, "npm:wrap-ansi": { "type": "npm", "name": "npm:wrap-ansi", "data": { - "version": "7.0.0", + "version": "6.2.0", "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" } }, "npm:@istanbuljs/load-nyc-config": { @@ -2272,198 +2596,126 @@ "type": "npm", "name": "npm:@jest/console", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/console", - "hash": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==" + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" } }, "npm:@jest/core": { "type": "npm", "name": "npm:@jest/core", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/core", - "hash": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==" + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" } }, "npm:@jest/environment": { "type": "npm", "name": "npm:@jest/environment", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/environment", - "hash": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==" + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" } }, "npm:@jest/expect": { "type": "npm", "name": "npm:@jest/expect", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/expect", - "hash": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==" + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" } }, "npm:@jest/expect-utils": { "type": "npm", "name": "npm:@jest/expect-utils", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/expect-utils", - "hash": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==" + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" } }, "npm:@jest/fake-timers": { "type": "npm", "name": "npm:@jest/fake-timers", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/fake-timers", - "hash": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==" + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" } }, "npm:@jest/globals": { "type": "npm", "name": "npm:@jest/globals", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/globals", - "hash": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==" + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" } }, "npm:@jest/reporters": { "type": "npm", "name": "npm:@jest/reporters", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/reporters", - "hash": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==" - } - }, - "npm:glob@7.2.3": { - "type": "npm", - "name": "npm:glob@7.2.3", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@7.1.4": { - "type": "npm", - "name": "npm:glob@7.1.4", - "data": { - "version": "7.1.4", - "packageName": "glob", - "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" - } - }, - "npm:glob@10.3.1": { - "type": "npm", - "name": "npm:glob@10.3.1", - "data": { - "version": "10.3.1", - "packageName": "glob", - "hash": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "12567742820797338981" + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" } }, "npm:@jest/schemas": { "type": "npm", "name": "npm:@jest/schemas", "data": { - "version": "29.4.3", + "version": "29.6.3", "packageName": "@jest/schemas", - "hash": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==" + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" } }, "npm:@jest/source-map": { "type": "npm", "name": "npm:@jest/source-map", "data": { - "version": "29.4.3", + "version": "29.6.3", "packageName": "@jest/source-map", - "hash": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==" + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" } }, "npm:@jest/test-result": { "type": "npm", "name": "npm:@jest/test-result", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/test-result", - "hash": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==" + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" } }, "npm:@jest/test-sequencer": { "type": "npm", "name": "npm:@jest/test-sequencer", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/test-sequencer", - "hash": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==" + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" } }, "npm:@jest/transform": { "type": "npm", "name": "npm:@jest/transform", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "@jest/transform", - "hash": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.9.0", - "packageName": "convert-source-map", - "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" } }, "npm:@jest/types": { "type": "npm", "name": "npm:@jest/types", "data": { - "version": "29.5.0", + "version": "29.6.3", "packageName": "@jest/types", - "hash": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==" + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" } }, "npm:@jridgewell/gen-mapping": { @@ -2479,9 +2731,9 @@ "type": "npm", "name": "npm:@jridgewell/resolve-uri", "data": { - "version": "3.1.0", + "version": "3.1.1", "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" } }, "npm:@jridgewell/set-array": { @@ -2497,9 +2749,9 @@ "type": "npm", "name": "npm:@jridgewell/source-map", "data": { - "version": "0.3.4", + "version": "0.3.5", "packageName": "@jridgewell/source-map", - "hash": "sha512-KE/SxsDqNs3rrWwFHcRh15ZLVFrI0YoZtgAdIyIq9k5hUNmiWRXXThPomIxHuL20sLdgzbDFyvkUMna14bvtrw==" + "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" } }, "npm:@jridgewell/sourcemap-codec": { @@ -2511,15 +2763,6 @@ "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" } }, - "npm:@jridgewell/sourcemap-codec@1.4.14": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec@1.4.14", - "data": { - "version": "1.4.14", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - } - }, "npm:@leichtgewicht/ip-codec": { "type": "npm", "name": "npm:@leichtgewicht/ip-codec", @@ -2529,6 +2772,15 @@ "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" } }, + "npm:@ljharb/through": { + "type": "npm", + "name": "npm:@ljharb/through", + "data": { + "version": "2.3.11", + "packageName": "@ljharb/through", + "hash": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==" + } + }, "npm:@mole-inc/bin-wrapper": { "type": "npm", "name": "npm:@mole-inc/bin-wrapper", @@ -2542,18 +2794,18 @@ "type": "npm", "name": "npm:@ngrx/store", "data": { - "version": "16.0.1", + "version": "17.0.1", "packageName": "@ngrx/store", - "hash": "sha512-KkYzF3j29qKOzHcmiArRJgT+ABLqbddj1DuxerNq3A8zWnTDdC4YgNpDOKru8hQWb3pQ77ZbglLati5K9F8HnQ==" + "hash": "sha512-BmVzN+fqyz0ZrVEmJ+jrNwePMKcpNL49vb8sbQ3yDDftxgZz2HqRKFMexqlXpz5ixwK5LqTOblHNQOgi9irsTw==" } }, "npm:@ngtools/webpack": { "type": "npm", "name": "npm:@ngtools/webpack", "data": { - "version": "16.0.6", + "version": "17.0.7", "packageName": "@ngtools/webpack", - "hash": "sha512-F6vDIAPxKqN3m0ABdHiBaf1OPb2dyDR0ABPmImxFoZtRApGjAiwuAHvsrk8aZRwBAC2XobSkemm2C0HpV6F6lw==" + "hash": "sha512-gwhUhpwXn0trwwKdSu9WlJbEcLt+s/2fPwoD9lZ0y3wXfrOogsfcNBJKeO5BZf1h+A3AWt7ePmgrZXSJM+865Q==" } }, "npm:@nodelib/fs.scandir": { @@ -2583,40 +2835,40 @@ "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" } }, - "npm:@npmcli/fs": { + "npm:@npmcli/agent": { "type": "npm", - "name": "npm:@npmcli/fs", + "name": "npm:@npmcli/agent", "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + "version": "2.2.0", + "packageName": "@npmcli/agent", + "hash": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==" } }, - "npm:@npmcli/git": { + "npm:http-proxy-agent@7.0.0": { "type": "npm", - "name": "npm:@npmcli/git", + "name": "npm:http-proxy-agent@7.0.0", "data": { - "version": "4.1.0", - "packageName": "@npmcli/git", - "hash": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==" + "version": "7.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" } }, - "npm:@npmcli/git@5.0.3": { + "npm:http-proxy-agent": { "type": "npm", - "name": "npm:@npmcli/git@5.0.3", + "name": "npm:http-proxy-agent", "data": { - "version": "5.0.3", - "packageName": "@npmcli/git", - "hash": "14457203281191881700" + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" } }, - "npm:lru-cache@7.18.3": { + "npm:lru-cache@10.1.0": { "type": "npm", - "name": "npm:lru-cache@7.18.3", + "name": "npm:lru-cache@10.1.0", "data": { - "version": "7.18.3", + "version": "10.1.0", "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" } }, "npm:lru-cache@6.0.0": { @@ -2628,13 +2880,13 @@ "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" } }, - "npm:lru-cache@10.1.0": { + "npm:lru-cache@7.18.3": { "type": "npm", - "name": "npm:lru-cache@10.1.0", + "name": "npm:lru-cache@7.18.3", "data": { - "version": "10.1.0", + "version": "7.18.3", "packageName": "lru-cache", - "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" } }, "npm:lru-cache@4.1.5": { @@ -2655,22 +2907,49 @@ "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" } }, - "npm:lru-cache@10.0.0": { + "npm:@npmcli/fs": { "type": "npm", - "name": "npm:lru-cache@10.0.0", + "name": "npm:@npmcli/fs", "data": { - "version": "10.0.0", - "packageName": "lru-cache", - "hash": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==" + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" } }, - "npm:which@3.0.1": { + "npm:@npmcli/git": { "type": "npm", - "name": "npm:which@3.0.1", + "name": "npm:@npmcli/git", "data": { - "version": "3.0.1", + "version": "5.0.3", + "packageName": "@npmcli/git", + "hash": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==" + } + }, + "npm:isexe@3.1.1": { + "type": "npm", + "name": "npm:isexe@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "isexe", + "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:which@4.0.0": { + "type": "npm", + "name": "npm:which@4.0.0", + "data": { + "version": "4.0.0", "packageName": "which", - "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" + "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" } }, "npm:which@1.3.1": { @@ -2691,15 +2970,6 @@ "hash": "228540766434988782" } }, - "npm:which@4.0.0": { - "type": "npm", - "name": "npm:which@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "which", - "hash": "18425288085915951735" - } - }, "npm:@npmcli/installed-package-contents": { "type": "npm", "name": "npm:@npmcli/installed-package-contents", @@ -2721,73 +2991,46 @@ "npm:@npmcli/promise-spawn": { "type": "npm", "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" - } - }, - "npm:@npmcli/promise-spawn@7.0.0": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn@7.0.0", "data": { "version": "7.0.0", "packageName": "@npmcli/promise-spawn", - "hash": "10334938519278605561" + "hash": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==" } }, "npm:@npmcli/run-script": { "type": "npm", "name": "npm:@npmcli/run-script", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" - } - }, - "npm:@npmcli/run-script@7.0.2": { - "type": "npm", - "name": "npm:@npmcli/run-script@7.0.2", "data": { "version": "7.0.2", "packageName": "@npmcli/run-script", - "hash": "10417945681139959217" + "hash": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==" } }, "npm:@nrwl/angular": { "type": "npm", "name": "npm:@nrwl/angular", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/angular", - "hash": "sha512-6tFvH407t9ylZWOa0vVM3QH0Y6wgXW/01vc1ZNAbQdpzBK9mXeXW0clYUTN8nBJPCBEUs+4Z6rtVABlZ2FDQsA==" + "hash": "sha512-4f7o6dsoQwP8o8O57dT0fTNnKcRllsQVkYeZx2SR/I0Gs2I/UlaCQZ6GCjy+BXSJS3AXn7sz6a69vo0uGJPBFw==" } }, "npm:@nrwl/cypress": { "type": "npm", "name": "npm:@nrwl/cypress", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/cypress", - "hash": "sha512-gxQOcfUeU1irM8zRGi6RlMqrzBxV1WapUPYAN+nirPnyl0YoyjbMchjQIO9ZwvHuwDPHYjxYBOqnzmxMHotPew==" + "hash": "sha512-/cimurrZnHFX9o0Sb5cj7SskUtEgA2aYnpLuZuAWaazpQPd+72WXTXFVYN8dVd7wgTV96uTQUTkUGt9nzvNiTA==" } }, "npm:@nrwl/devkit": { "type": "npm", "name": "npm:@nrwl/devkit", "data": { - "version": "16.4.2", - "packageName": "@nrwl/devkit", - "hash": "sha512-joT3zkEgyiAbPU4fySv32+bKSdI92mY7QIkdM3I/urgh7f4ztMx6vens+dGwW+rVEfHK23r0zuvx77VkoMg6iQ==" - } - }, - "npm:@nrwl/devkit@16.1.1": { - "type": "npm", - "name": "npm:@nrwl/devkit@16.1.1", - "data": { - "version": "16.1.1", + "version": "17.2.6", "packageName": "@nrwl/devkit", - "hash": "sha512-KIzHt5g2+AkH4LgEMksPL0q5FUiERtbeP1VNDw57grhaOAviLaYklKU3GA8Zaj73KxGIeHhwCQU0Ju5aIoDDdg==" + "hash": "sha512-uZVqc2qhi+WdSqLV9aIcE+5ck+IUSQ47Cc5bslWrssQjBncqGavHYDuU4ZLuKK5HxCuZqlQjvo7TsF7LeOjNiA==" } }, "npm:@nrwl/devkit@16.5.0": { @@ -2803,396 +3046,81 @@ "type": "npm", "name": "npm:@nrwl/eslint-plugin-nx", "data": { - "version": "16.1.1", + "version": "17.2.6", "packageName": "@nrwl/eslint-plugin-nx", - "hash": "sha512-9jN7WKscN0nmKIaIz05vGkZg0KWulyAsfV7Ckzng5h9zDm1P19G2ncAGWOUE+/BimTSZWxhpllEmZXpTgJcHUw==" + "hash": "sha512-xQDmFeIc+VR3q6scSSciSNVSdcRI52FFTTlDw4/pZCJk59LJTt6GgnqeL0Aj4EIgELfZQLOsKrxIoup5gzKlrQ==" } }, "npm:@nrwl/jest": { "type": "npm", "name": "npm:@nrwl/jest", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/jest", - "hash": "sha512-660C9GaXT+yBwdmN3/UogxUZaECxZpX5QpfvFO25q3wT99E5BmM90mbELQXlnHoSframI5wPlM/xaDHeK0qJrg==" + "hash": "sha512-YZ6yFFw1lq7nSCZTkP8qMbIeYX/yJ6Ko6iXPECPQViy4W6E9WEVnWU52RkovoKSN+CuhienzJCxne7DALLLr3w==" } }, "npm:@nrwl/js": { "type": "npm", "name": "npm:@nrwl/js", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/js", - "hash": "sha512-sOB+2MBLkYsX3Sk4g1IZSc9bK8kM4ZuZ6zjmQVv9M4DYlph5aPHorZOcN4vR/s+ZMWzK0aZLjSq5JAEU0VJYKw==" - } - }, - "npm:@nrwl/js@16.1.1": { - "type": "npm", - "name": "npm:@nrwl/js@16.1.1", - "data": { - "version": "16.1.1", - "packageName": "@nrwl/js", - "hash": "sha512-TM19fyPzTruvCASrMlrsSQuU1qk5C87NPenhjHh7Z4LI252p6/kQoK9CnVPcz0jYiWmSv0NJS7v++5GxzmSzyQ==" - } - }, - "npm:@nrwl/linter": { - "type": "npm", - "name": "npm:@nrwl/linter", - "data": { - "version": "16.1.1", - "packageName": "@nrwl/linter", - "hash": "sha512-LaqRrDDSukGbCEdwR1r2cGHKevT2OosuUaZVRdVHzGkMhSU27/8xOfhQ/wLhX3egBXrO1ImyCUj3TMQypanY6w==" - } - }, - "npm:@nrwl/linter@16.4.2": { - "type": "npm", - "name": "npm:@nrwl/linter@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nrwl/linter", - "hash": "sha512-QKR964hp1jiNZqrLRaDHueeSCwZxn6wJLXrQRLH5zyePyTBNIuR1s8xH1W1bU1wGmXC6rbBjF6QNaT+nl7RdwQ==" + "hash": "sha512-oFnyaVOpVG3XrkIXQMs5TM6hrRRBe38jRX79d51S41yLuiOrHgpJlMmii1wafevM1Dpk9UlAvPh7v8OffgDZtg==" } }, "npm:@nrwl/nx-plugin": { "type": "npm", "name": "npm:@nrwl/nx-plugin", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/nx-plugin", - "hash": "sha512-55RooAcTxn6l81/bHAetnEA8/zVEhGwlx6ty26NwEC4b6yjfTFStNZmTqiiIn1C2OuCqe9/l/W3tzZ+MmUb9mQ==" + "hash": "sha512-sg8oOxs3abfNMOpWK8utqy2wIfihLnLAtWxBFoRb/R+Xwjc+vw/ibqGGvZm+jSlk5SQxit52RMMQtl5foI5HQw==" } }, "npm:@nrwl/tao": { "type": "npm", "name": "npm:@nrwl/tao", "data": { - "version": "16.1.1", - "packageName": "@nrwl/tao", - "hash": "sha512-rqN5hKfsiPYU1qoyudhmKI17NvK6drX2odeBNce3Ap30fPLDB0R0diAbtgY3tgXCSVBEamhGgSy/4+hngyzXbQ==" - } - }, - "npm:@nrwl/tao@16.4.2": { - "type": "npm", - "name": "npm:@nrwl/tao@16.4.2", - "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/tao", - "hash": "sha512-7hbrXocJ64IkdQuZOroUM/602QOLJNVzmLkyj9TouefcBkxL8CzDRQGf4w3UWrK6NDBpg/H8DMc8MT6ssOY4sQ==" + "hash": "sha512-cgtUKTRSxDZ94S9IpC27/qYZJ1YttJDET+veKrtRYvwnHFgkq1peyeTTtnM25yJon7PRdm2lYrlIVdPm0vXupw==" } }, "npm:@nrwl/web": { "type": "npm", "name": "npm:@nrwl/web", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/web", - "hash": "sha512-WgD6G+Cl54/RywzYTnphQCQuNdDrGGdivcyd3AZey9yA1Avvi/CI5+mU75pQAMrqsb2oxylZVk6lnN5iLJcAwA==" + "hash": "sha512-htiLKuLgWikZOf+gKzX4tkkcYV+94ZGYeBEHAZ8Agx4dyw7/8u1JStSAvrwZFAzw06KejGJy4NAh2ycCLJMwrA==" } }, "npm:@nrwl/webpack": { "type": "npm", "name": "npm:@nrwl/webpack", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nrwl/webpack", - "hash": "sha512-Gt/QzKrOFgLawlKRPaMMKdHhF234zlV4keqzh6WkwGaiJD+xckCjgt03xACh7mqBiJTawHqckWv08aed4utNGw==" + "hash": "sha512-cxBh3Aqg9nIR7be3y9pvss2x22Bp0iDmcvpj/L0fc/3PK9DpYK2Y2eDGvswsd5xZvLTu5BhQVji/io73JmmB4w==" } }, "npm:@nrwl/workspace": { "type": "npm", "name": "npm:@nrwl/workspace", "data": { - "version": "16.1.1", + "version": "17.2.6", "packageName": "@nrwl/workspace", - "hash": "sha512-gyZX2N8Q4OWGYie6LB1+wwOgNfDY1kppWacez9xtYTqhZlJ7L6VbggN+ui72dgsd1qAu/jd5t6GVD098Ff9FpA==" - } - }, - "npm:@nrwl/workspace@16.4.2": { - "type": "npm", - "name": "npm:@nrwl/workspace@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nrwl/workspace", - "hash": "sha512-FftJH0sBPcC27YSqRjgKjfusCjTCVfh/QxkyWXEqqlLqhSSFZaYlAsJM1LBeEfOd8EKDaSSM+G3heq//jYBfBQ==" + "hash": "sha512-ACMnIxblNEAsjFfkpNspENxlm/jMpF9hr3aKioyoFAUmATxO7lJt8VuA43slI1oVgtTfWpOcM0aSRP/07kVW6Q==" } }, "npm:@nx/angular": { "type": "npm", "name": "npm:@nx/angular", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/angular", - "hash": "sha512-FLeDTP/+H29Ridixd6udADUC8KxIwRw62ZQCWKTnU2Sg/KKLB6AoBxbeQGRjzTQq9ucdVV9VrV46RM662arfVA==" - } - }, - "npm:@nx/linter@16.4.2": { - "type": "npm", - "name": "npm:@nx/linter@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/linter", - "hash": "sha512-h30yGTOZWs2s4uig4Odkymm20VoiFt3oWKuK4AJ2WHOJmWJ40wfOv2HZJO94Al7CuoBdI/GRIJddX/snVDYgKQ==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "16.1.1", - "packageName": "@nx/linter", - "hash": "sha512-pzEA4yDu74iAXhIE1ia1RCNVRlsyaiUhO6RaPGykPx5K9T8OphYApWtFxPi5eCD6/kpTyn2RN42zbU0Pzpv21A==" - } - }, - "npm:@nx/nx-darwin-arm64@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-VM8y01zGo4wkLuyFrz5jUvSGkWIOGcLmcXms5Oa2jVyoWPbV20MWYmgj/rmd06c8FGVvcVbex/cjsPoYPny5xg==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-TzNTgbulEhWm5OtddxUm88RfRL/QMfa4r3l9fu3GrkaSbIMcApY3hERTQaTEsxPBYyITUbqXhtt4MszOP/BtlA==" - } - }, - "npm:@nx/nx-darwin-x64@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-wEsNN29SKen+uC6A8bxIUzZ/n972hKgTz/pi+bz/TcRGu1f1MYTemN3MzxOzSzvfVRsA4jqml1PhUF1jo/ETkg==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-pQtP+r5XRC74JEZ5EfxbbNohxILv+7TNXyA5iSrX1e2EsCFfv2eRET6TjBnQxPjsmcEsS+FibjllR3ovdb4BGA==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-JJP0JDa/K/+Axbn74i/1sGCCnhzfKOZ2/J/0bRpMdq8QjxVUuOgMW6IUkpKMD+raf7XQKjmgOurxsxK4LFB4zw==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-8V0JzLBNauXRSVoTWfv/V5e+3xKKoxoOzldH71JDXwtSioCNxx26vXhVYdLaVUpBHkfLz0Zx/bSOS8xjhg2mww==" - } - }, - "npm:@nx/nx-linux-arm64-gnu@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-rGAHQYEm1Qct1CqYEhdxT+dwFBLP7tOM+DCOd6/zK+v7qdbzl8Y7AgmXs/JCpJP4eLz/Q9R+6ZPvWmvEfKC7jw==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-LbN3rQYzL6n4F8dTAnVqyZONyaYHakiUehRfypPfMsTywgCjGKlkeRi+32NoPB+gTj9HE+dbdmb1b08PAKHN+w==" - } - }, - "npm:@nx/nx-linux-arm64-musl@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-qDgsUffjM5a1P7sKpqoffVtc9Z6K4f3FOxHZ+exhNUV+a6vFdPQ594zNjomUYYlY6i1oj6Yl3+peFOb5tI/UfQ==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-rMKC+yGkH7FuWT8O4f8aWHpJireKBVfWhgziHxL3GisdtgvHSA5O1NCaKAW/jflLOuyj02aPrRphnEovhoPTgw==" - } - }, - "npm:@nx/nx-linux-x64-gnu@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-waqigyyBA0svrFmPmXFzjxYfeaudzVcm/DntH2ksowguOdF67cvB3yI783hVJiy1GwWX25neqty+fCLaY+s6tg==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-q8AG22WDdy2pVuQoD7ZjgTmok8GHhInZgcRTnbW3+RtF/0vF9nZ8lHzVedCHqSErisb+dz1VVXLe250s2j+pRA==" - } - }, - "npm:@nx/nx-linux-x64-musl@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-idf800gH3RHKGxJfsmSAZ+EhW2rfpIQu2gBhgvHc3D4sQ1s8A8KN/Ht0w0ddB4Pa3iPzfDTYAlMq9VWCNN2I4A==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-Lse5oMwcE44UvxvxncCKkCrbWBiBPYIiAM7GC62nt1h8td8k14z7JxZV6dB/Yri2fFHCKDoY2tEkW9N6E4VzqQ==" - } - }, - "npm:@nx/nx-win32-arm64-msvc@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-r6/0SvzNcZ9+Ihw9M+sHnX8wrws1cQ3PB3R3y5dEKp/VZ1s0TkYKqmw/yfgYfMVQp05mIM+tIHOK9Ra0I+fB2Q==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-KV+sn/w9rEtKgs2DGvkWeGLmgB3LgsaBcekPLV6oEjQo58dDsyGxZlOwfK3hF4R50l8J039cVRfPtLhWxuRUuA==" - } - }, - "npm:@nx/nx-win32-x64-msvc@16.4.2": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-BEejvjogyF+YfRQuors1JTKio/qbS69LGHDESXIu/Lb4PRzTpzN4Nr4U7Fbl8OPZm9lZhB/sPd19S/ZoR0zZkg==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "16.1.1", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-YSzkfnCDmflg16sUeyC1IiRAxQ5nAW5KnSfvr901kW2LqAsZ7esnSjaHrP7SOGk7JO3ncmLm7BWvtZ6N9Dk4bA==" - } - }, - "npm:@nx/workspace@16.4.2": { - "type": "npm", - "name": "npm:@nx/workspace@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "@nx/workspace", - "hash": "sha512-r+QAXdSrQAMN4fE1M8pkVa/vWKQ6OdCOzGLQmPhxsTtCHjm/ZyNBGbs3+8FhYm0+dqB+Vt3DiHK4bWyTSJNymw==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "16.1.1", - "packageName": "@nx/workspace", - "hash": "sha512-LN3F/NKVBYys1HGKLeu57aCir5YEsmlIXHsU8gCdouK/1Xdyz9s4hfyo/ioQRzZpSjwgjmnJD+YzhdkYk+4V1A==" - } - }, - "npm:@yarnpkg/parsers@3.0.0-rc.46": { - "type": "npm", - "name": "npm:@yarnpkg/parsers@3.0.0-rc.46", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.48", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-LqrqO/f5y7QAeqx5gv5tYraIbas+kDNUmK7npiuqhl4t9Ddl1EIs9QXWE6TD9hISvKwm6yjU32HmD0HlfPaXtA==" - } - }, - "npm:magic-string@0.26.7": { - "type": "npm", - "name": "npm:magic-string@0.26.7", - "data": { - "version": "0.26.7", - "packageName": "magic-string", - "hash": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.0", - "packageName": "magic-string", - "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" - } - }, - "npm:nx@16.4.2": { - "type": "npm", - "name": "npm:nx@16.4.2", - "data": { - "version": "16.4.2", - "packageName": "nx", - "hash": "sha512-jF+0v6LowwRMbY+rUo1L8FiOn6hRg5lJc3TUK5fu9fbqBpqG4lUDjp0Fuk1WDFlKWPWtFnqxo0wAzdIgJS8+SQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "16.1.1", - "packageName": "nx", - "hash": "sha512-wm3g4IT7PTCcyX+n1WuuFVa6TQTfbPGS6kJLS62LpALFmN85EoiIGjClEZjTO6MEJHKpL/BjXscsLXnkboEytg==" - } - }, - "npm:webpack-merge@5.7.3": { - "type": "npm", - "name": "npm:webpack-merge@5.7.3", - "data": { - "version": "5.7.3", - "packageName": "webpack-merge", - "hash": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.8.0", - "packageName": "webpack-merge", - "hash": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==" + "hash": "sha512-e11FcG9SP8gR/nwfhvPnORfOee5zjUFkC1vLLY/JdJRV2jXE5qLtoTVq8lFqU6LjD21FoFCt5EMiceRj3WoEZQ==" } }, "npm:yallist@4.0.0": { @@ -3226,27 +3154,18 @@ "type": "npm", "name": "npm:@nx/cypress", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/cypress", - "hash": "sha512-h9y/o5NmtKK5J/x/5jOMHcWi1bZDPKEyDaKn+uYKXL2alkjItm632sK+ZCCENJGGUMqcoyB5EuKFbTvxWb8gOg==" + "hash": "sha512-C2TSLyV2Nm8zIM8aJJrRkv6RO4iqLRmO+XC0/Z58SF9cD3iF7HSKzGtj2iRshgI8Pac7WgvcZLYyiKQIAdJIUw==" } }, "npm:@nx/devkit": { "type": "npm", "name": "npm:@nx/devkit", "data": { - "version": "16.4.2", - "packageName": "@nx/devkit", - "hash": "sha512-THg3H/HKsE/o+KffT8BGMADLh3mlGMQvN+Tg60QMEBOWzzVAZRUAs+9LQX5MHOGh88jP9fjb+c4UrShQ2e5w8g==" - } - }, - "npm:@nx/devkit@16.1.1": { - "type": "npm", - "name": "npm:@nx/devkit@16.1.1", - "data": { - "version": "16.1.1", + "version": "17.2.6", "packageName": "@nx/devkit", - "hash": "sha512-Tjsj2tKSQnMBmbXKnVSGzcdWDzy7T1jcvbazJ1pf36AwmGbaUj6+sleXceeOguk4dd3lg1yWibjCk+ICMsXIvg==" + "hash": "sha512-a9GPw0KiLhvv2RBLPlWgaVDZRvgww4ANBwv7LuGvk8FNgxF5vkQMM5WyKpvxKJhmh1EZ+T9JsGWAFrK7skW9Bw==" } }, "npm:@nx/devkit@16.5.0": { @@ -3258,31 +3177,85 @@ "hash": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==" } }, + "npm:@nx/eslint": { + "type": "npm", + "name": "npm:@nx/eslint", + "data": { + "version": "17.2.6", + "packageName": "@nx/eslint", + "hash": "sha512-gDtIf6T3vCf7XO2lWvVulFcNmx2l6kKGZypEpLMGtfdAUai/aaBbNHbbwcsOZiPvWtNo64mGBZX5Qv6aPb9oPg==" + } + }, "npm:@nx/eslint-plugin": { "type": "npm", "name": "npm:@nx/eslint-plugin", "data": { - "version": "16.1.1", + "version": "17.2.6", "packageName": "@nx/eslint-plugin", - "hash": "sha512-qgo2/9cgF2VqG8XcwePLkqAO570UhF9RxyMI0287etN+27wp8wqBTNOPTfgtqmHZ0RbE+h7lMqF6+h5HKak7sQ==" + "hash": "sha512-P9+G9r6fz0RP/muchPFHyicfA4o80kUD8oRmrJJAjI3KolpRk3Kld7GAbXPkunnGuMcf/nSJxaUkt+QCe5zOhQ==" } }, - "npm:@nx/js@16.1.1": { + "npm:@nx/jest": { "type": "npm", - "name": "npm:@nx/js@16.1.1", + "name": "npm:@nx/jest", "data": { - "version": "16.1.1", - "packageName": "@nx/js", - "hash": "sha512-CIj/TX5wSskpNx8ktUA1UxgUmCIWQ9SIgYh36+6RUZlogILkyOUBFz4/gCBIzisuT6BNwHaUjvNm5kkWZ9tipg==" + "version": "17.2.6", + "packageName": "@nx/jest", + "hash": "sha512-lWdzwkNfVQPCcr3gb3OrtUX/wjI9Oxm6Q9cKezPydCWtrZnEQii/aRi9/AncCGBf0Rx6hLT0yaiIAvJKlCk9qg==" } }, "npm:@nx/js": { "type": "npm", "name": "npm:@nx/js", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/js", - "hash": "sha512-l8D88fIOfIttyDOQpNqxUWzBAwX5pEHAP1QJAl6FRToQq+iDcwgun2IMaKnt48M6GG2SGNqdhFLRyFY2NME13A==" + "hash": "sha512-jjWzEg63C7vBu6Lo890N8gIcEji+8/ggf5My2kCmAnJehqIg8/B0Bq0x9shIxAT7qZgyLxHbC3VWg5ictS6aEw==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:fast-glob@3.3.2": { + "type": "npm", + "name": "npm:fast-glob@3.3.2", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.1", + "packageName": "fast-glob", + "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" + } + }, + "npm:ora@5.3.0": { + "type": "npm", + "name": "npm:ora@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" } }, "npm:source-map@0.6.1": { @@ -3330,49 +3303,130 @@ "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" } }, - "npm:@nx/jest": { + "npm:@nx/linter": { "type": "npm", - "name": "npm:@nx/jest", + "name": "npm:@nx/linter", "data": { - "version": "16.4.2", - "packageName": "@nx/jest", - "hash": "sha512-P4Pw8v/a+SRzP9fpbyLGcUoBt5pbcUJTQsUDTUulMHBpVCYGaH4Z7BKld9ygHD9DUcdHX1aMWQc6NMOJZBFbRQ==" + "version": "17.2.6", + "packageName": "@nx/linter", + "hash": "sha512-TTS3WPZQNVdFgTykdX3jbELcN0IsYpKPv8TGOzqkJbRfvsF2jjZzQggWujg1iXBdWRKdaWYDi8SUi+4wocemIg==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-ezU5u7hkEwI2xzsFSjyr53uNURBvga40LQlpEnS/CbqRifHHhTKisCy+r2+kRhiOwTeR+I+/2D3zPyIyN3aEHQ==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-wUIwbM/7LMxlFkEOlbxR/s2qaRuD69yXc70f2rtxsskwJ4GOF5kfc1jk2YaDs9qswI+FgQVgbeZu8pgF+slY7Q==" } }, "npm:@nx/nx-freebsd-x64": { "type": "npm", "name": "npm:@nx/nx-freebsd-x64", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-V5z3eFymTP4AodIMQXTCZwZcJnoxaHw2QAbiCluZYVN22QQU+mAWNStbw9spJhdDBRkHeLfMOiZ/aL2zxjNFmw==" + "hash": "sha512-uBKEGqG4txVCpBirRzt1QwuOLzfA0s9dlUP7n5t4qJuaf9OXuVcDXay8g84WT1jx4PPtipyv/wyIFu3r7v8kZw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-dSDVz2BktaPHMkrJojFCx+V+QFLDF0KzoHorESzZmHZTfumr0xtJ1COWCU+gYmLptc+8OgwCzCPWXHhcDgji/A==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-AD99Kk47Yxn3IJ89aCT1oVpNX1XNECAYay97yhqf2tiBsDv9hC43PppOdjI0dNP5VRBTrr6EsWdhvE0uNJ3RJw==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-MOX/EJyzseEnzbFxY7V6es/xta6WQ0cDDrl6i6qjCRnoRTFFVMsL0Fb4dtVbv7fd75O41P+OBGpG70MYx2SOxw==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-16xTSszGPY25INDUr4pzLXWcO3va1764iVFiHRTuJr5siDymY7zSj+DPKFmewzqF2358Y5m8AtMotY0FqKciYg==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-F/nIq8bcZd2cNuBiQbyJwur7CpeRBCt0qKDF38HQ2l3HhQv+jwk4T6115LMQqwZb9e6kt6BAFsY+6O7I6t3pCw==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-1lAKKKiH7eduzqcPDB03iPz38yNXn3Y4Q/3jULjaRc3EFAplfBsYVwJ9kGjXPZSrpt/AY7w5ATY55/r5B3gQnA==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-LrJySMWrO5oWMrP4VOWM1hr3c4rtxHGCcRy19VwqvaAPDrnsg0qfPjv4q1C9YyIU8sj+T3oJs1yZdnNntlN8ew==" } }, "npm:@nx/plugin": { "type": "npm", "name": "npm:@nx/plugin", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/plugin", - "hash": "sha512-JvjqD9cYQayaGp9AejRDsyjcsrVO9GN88s3HUzBzbmc/Pw9gNKJJOhM+I9+TfZMgX83M3+G8CfOMs+uF3xqtng==" + "hash": "sha512-K9DZhFeqtmRSELwEbrK2zLOHhCf97glBjF2vRN24zb5k7tCAOtpsK7L6TD9Xl5OSx1e9ffi9emRJUjPli6XoRw==" } }, "npm:@nx/web": { "type": "npm", "name": "npm:@nx/web", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/web", - "hash": "sha512-rjARmJESboplfa3kI0ncUMBKJGJO1cV9Rsp1HzIeAAq7Zo614lPnUA/lE6Q+lD+GbfJu0y5t7ENmQv2E/61Rxw==" + "hash": "sha512-6VkA19bFepNmrIISxXwYMo5nm/uUAPHQKNPfSHqxo9Ef57WS93dDMVRqc7641lRvT31Nc75Uu0NPYGo/B/s87A==" } }, "npm:@nx/webpack": { "type": "npm", "name": "npm:@nx/webpack", "data": { - "version": "16.4.2", + "version": "17.2.6", "packageName": "@nx/webpack", - "hash": "sha512-c0D4CbtYBtvx7elVg1uWmJAWMBtgAhkX0NLGB9T7jOukRmE5267c+dO7wx1n+FgNeMx8BTa4laVlyTdDq0zI+g==" + "hash": "sha512-vODJosrOh5ru1Gy7rBp9yXVeeSF32bq1qTjOX3ez1OOXbw5fmJcxaOjOoh44ty0+d9wIB2YIl8lHsmmaCcmOnw==" } }, "npm:array-union@3.0.1": { @@ -3429,15 +3483,6 @@ "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" } }, - "npm:cosmiconfig@8.2.0": { - "type": "npm", - "name": "npm:cosmiconfig@8.2.0", - "data": { - "version": "8.2.0", - "packageName": "cosmiconfig", - "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" - } - }, "npm:cosmiconfig@8.3.6": { "type": "npm", "name": "npm:cosmiconfig@8.3.6", @@ -3483,13 +3528,13 @@ "hash": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==" } }, - "npm:globby@13.2.1": { + "npm:globby@13.2.2": { "type": "npm", - "name": "npm:globby@13.2.1", + "name": "npm:globby@13.2.2", "data": { - "version": "13.2.1", + "version": "13.2.2", "packageName": "globby", - "hash": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==" + "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" } }, "npm:globby": { @@ -3519,6 +3564,24 @@ "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" } }, + "npm:less@4.1.3": { + "type": "npm", + "name": "npm:less@4.1.3", + "data": { + "version": "4.1.3", + "packageName": "less", + "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" + } + }, + "npm:less": { + "type": "npm", + "name": "npm:less", + "data": { + "version": "4.2.0", + "packageName": "less", + "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" + } + }, "npm:loader-utils@2.0.4": { "type": "npm", "name": "npm:loader-utils@2.0.4", @@ -3537,6 +3600,33 @@ "hash": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" } }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir@4.0.0": { + "type": "npm", + "name": "npm:make-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, "npm:mini-css-extract-plugin@2.4.7": { "type": "npm", "name": "npm:mini-css-extract-plugin@2.4.7", @@ -3550,9 +3640,9 @@ "type": "npm", "name": "npm:mini-css-extract-plugin", "data": { - "version": "2.7.5", + "version": "2.7.6", "packageName": "mini-css-extract-plugin", - "hash": "sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==" + "hash": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==" } }, "npm:parse5@4.0.0": { @@ -3564,15 +3654,6 @@ "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" } }, - "npm:parse5@6.0.1": { - "type": "npm", - "name": "npm:parse5@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "parse5", - "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" - } - }, "npm:parse5": { "type": "npm", "name": "npm:parse5", @@ -3582,6 +3663,33 @@ "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" } }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pify@3.0.0": { + "type": "npm", + "name": "npm:pify@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, "npm:postcss-loader@6.2.1": { "type": "npm", "name": "npm:postcss-loader@6.2.1", @@ -3595,9 +3703,9 @@ "type": "npm", "name": "npm:postcss-loader", "data": { - "version": "7.2.4", + "version": "7.3.3", "packageName": "postcss-loader", - "hash": "sha512-F88rpxxNspo5hatIc+orYwZDtHFaVFOSIVAx+fBfJC1GmhWbVmPWtmg2gXKE1OxJbneOSGn8PWdIwsZFcruS+w==" + "hash": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==" } }, "npm:sass-loader@12.6.0": { @@ -3613,9 +3721,9 @@ "type": "npm", "name": "npm:sass-loader", "data": { - "version": "13.2.2", + "version": "13.3.2", "packageName": "sass-loader", - "hash": "sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA==" + "hash": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==" } }, "npm:slash@4.0.0": { @@ -3663,6 +3771,15 @@ "hash": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==" } }, + "npm:@nx/workspace": { + "type": "npm", + "name": "npm:@nx/workspace", + "data": { + "version": "17.2.6", + "packageName": "@nx/workspace", + "hash": "sha512-mss1RggPBWpggMJ7ok83iHx/PdlevhDqayLvjguRKjPwk0rTBRUuvY78AkKo2RbMOQyywNMt09MNz5FOmfCfqg==" + } + }, "npm:@octokit/auth-token": { "type": "npm", "name": "npm:@octokit/auth-token", @@ -3762,15 +3879,6 @@ "hash": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==" } }, - "npm:@parcel/watcher": { - "type": "npm", - "name": "npm:@parcel/watcher", - "data": { - "version": "2.0.4", - "packageName": "@parcel/watcher", - "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" - } - }, "npm:@phenomnomnominal/tsquery": { "type": "npm", "name": "npm:@phenomnomnominal/tsquery", @@ -3834,13 +3942,22 @@ "hash": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==" } }, - "npm:@schematics/angular": { + "npm:magic-string@0.30.0": { "type": "npm", - "name": "npm:@schematics/angular", + "name": "npm:magic-string@0.30.0", "data": { - "version": "16.0.6", - "packageName": "@schematics/angular", - "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" + "version": "0.30.0", + "packageName": "magic-string", + "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.5", + "packageName": "magic-string", + "hash": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==" } }, "npm:@semantic-release/changelog": { @@ -3888,297 +4005,99 @@ "hash": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==" } }, - "npm:execa@5.1.1": { + "npm:@semantic-release/git": { "type": "npm", - "name": "npm:execa@5.1.1", + "name": "npm:@semantic-release/git", "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + "version": "10.0.1", + "packageName": "@semantic-release/git", + "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" } }, - "npm:execa@8.0.1": { + "npm:@semantic-release/github": { "type": "npm", - "name": "npm:execa@8.0.1", + "name": "npm:@semantic-release/github", "data": { - "version": "8.0.1", - "packageName": "execa", - "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" + "version": "9.2.5", + "packageName": "@semantic-release/github", + "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" } }, - "npm:execa@4.1.0": { + "npm:aggregate-error@5.0.0": { "type": "npm", - "name": "npm:execa@4.1.0", + "name": "npm:aggregate-error@5.0.0", "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + "version": "5.0.0", + "packageName": "aggregate-error", + "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" } }, - "npm:execa": { + "npm:aggregate-error": { "type": "npm", - "name": "npm:execa", + "name": "npm:aggregate-error", "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" } }, - "npm:execa@7.1.1": { + "npm:aggregate-error@4.0.1": { "type": "npm", - "name": "npm:execa@7.1.1", + "name": "npm:aggregate-error@4.0.1", "data": { - "version": "7.1.1", - "packageName": "execa", - "hash": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==" + "version": "4.0.1", + "packageName": "aggregate-error", + "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" } }, - "npm:get-stream@6.0.1": { + "npm:clean-stack@5.2.0": { "type": "npm", - "name": "npm:get-stream@6.0.1", + "name": "npm:clean-stack@5.2.0", "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + "version": "5.2.0", + "packageName": "clean-stack", + "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" } }, - "npm:get-stream@8.0.1": { + "npm:clean-stack": { "type": "npm", - "name": "npm:get-stream@8.0.1", + "name": "npm:clean-stack", "data": { - "version": "8.0.1", - "packageName": "get-stream", - "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" } }, - "npm:get-stream@7.0.1": { + "npm:clean-stack@4.2.0": { "type": "npm", - "name": "npm:get-stream@7.0.1", + "name": "npm:clean-stack@4.2.0", "data": { - "version": "7.0.1", - "packageName": "get-stream", - "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" + "version": "4.2.0", + "packageName": "clean-stack", + "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" } }, - "npm:get-stream@5.2.0": { + "npm:indent-string@5.0.0": { "type": "npm", - "name": "npm:get-stream@5.2.0", + "name": "npm:indent-string@5.0.0", "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" } }, - "npm:get-stream": { + "npm:indent-string": { "type": "npm", - "name": "npm:get-stream", + "name": "npm:indent-string", "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" } }, - "npm:is-stream@2.0.1": { + "npm:mime@4.0.1": { "type": "npm", - "name": "npm:is-stream@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:is-stream@3.0.0": { - "type": "npm", - "name": "npm:is-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-stream", - "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:@semantic-release/git": { - "type": "npm", - "name": "npm:@semantic-release/git", - "data": { - "version": "10.0.1", - "packageName": "@semantic-release/git", - "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" - } - }, - "npm:@semantic-release/github": { - "type": "npm", - "name": "npm:@semantic-release/github", - "data": { - "version": "9.2.5", - "packageName": "@semantic-release/github", - "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" - } - }, - "npm:agent-base@7.1.0": { - "type": "npm", - "name": "npm:agent-base@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "agent-base", - "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:aggregate-error@5.0.0": { - "type": "npm", - "name": "npm:aggregate-error@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "aggregate-error", - "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:aggregate-error@4.0.1": { - "type": "npm", - "name": "npm:aggregate-error@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "aggregate-error", - "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" - } - }, - "npm:clean-stack@5.2.0": { - "type": "npm", - "name": "npm:clean-stack@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "clean-stack", - "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:clean-stack@4.2.0": { - "type": "npm", - "name": "npm:clean-stack@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "clean-stack", - "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" - } - }, - "npm:fast-glob@3.3.2": { - "type": "npm", - "name": "npm:fast-glob@3.3.2", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:fast-glob@3.3.0": { - "type": "npm", - "name": "npm:fast-glob@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "fast-glob", - "hash": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:http-proxy-agent@7.0.0": { - "type": "npm", - "name": "npm:http-proxy-agent@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:https-proxy-agent@7.0.2": { - "type": "npm", - "name": "npm:https-proxy-agent@7.0.2", - "data": { - "version": "7.0.2", - "packageName": "https-proxy-agent", - "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:indent-string@5.0.0": { - "type": "npm", - "name": "npm:indent-string@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "indent-string", - "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:mime@4.0.1": { - "type": "npm", - "name": "npm:mime@4.0.1", + "name": "npm:mime@4.0.1", "data": { "version": "4.0.1", "packageName": "mime", @@ -4203,6 +4122,15 @@ "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" } }, + "npm:mime@1.4.1": { + "type": "npm", + "name": "npm:mime@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "mime", + "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + } + }, "npm:mime@3.0.0": { "type": "npm", "name": "npm:mime@3.0.0", @@ -4266,31 +4194,94 @@ "hash": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==" } }, - "npm:hosted-git-info@7.0.1": { + "npm:execa@8.0.1": { "type": "npm", - "name": "npm:hosted-git-info@7.0.1", + "name": "npm:execa@8.0.1", "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + "version": "8.0.1", + "packageName": "execa", + "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" } }, - "npm:hosted-git-info": { + "npm:execa@0.7.0": { "type": "npm", - "name": "npm:hosted-git-info", + "name": "npm:execa@0.7.0", "data": { - "version": "6.1.1", - "packageName": "hosted-git-info", - "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + "version": "0.7.0", + "packageName": "execa", + "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" } }, - "npm:hosted-git-info@2.8.9": { + "npm:execa@4.1.0": { "type": "npm", - "name": "npm:hosted-git-info@2.8.9", + "name": "npm:execa@4.1.0", "data": { - "version": "2.8.9", - "packageName": "hosted-git-info", - "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + "version": "4.1.0", + "packageName": "execa", + "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:execa@7.2.0": { + "type": "npm", + "name": "npm:execa@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "execa", + "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" + } + }, + "npm:get-stream@8.0.1": { + "type": "npm", + "name": "npm:get-stream@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "get-stream", + "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" + } + }, + "npm:get-stream@3.0.0": { + "type": "npm", + "name": "npm:get-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "get-stream", + "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream@6.0.1": { + "type": "npm", + "name": "npm:get-stream@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "7.0.1", + "packageName": "get-stream", + "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" } }, "npm:human-signals@5.0.0": { @@ -4329,49 +4320,49 @@ "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" } }, - "npm:mimic-fn@4.0.0": { + "npm:is-stream@3.0.0": { "type": "npm", - "name": "npm:mimic-fn@4.0.0", + "name": "npm:is-stream@3.0.0", "data": { - "version": "4.0.0", - "packageName": "mimic-fn", - "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" } }, - "npm:mimic-fn": { + "npm:is-stream@1.1.0": { "type": "npm", - "name": "npm:mimic-fn", + "name": "npm:is-stream@1.1.0", "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" } }, - "npm:normalize-package-data@6.0.0": { + "npm:is-stream": { "type": "npm", - "name": "npm:normalize-package-data@6.0.0", + "name": "npm:is-stream", "data": { - "version": "6.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" } }, - "npm:normalize-package-data": { + "npm:mimic-fn@4.0.0": { "type": "npm", - "name": "npm:normalize-package-data", + "name": "npm:mimic-fn@4.0.0", "data": { - "version": "5.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" } }, - "npm:normalize-package-data@2.5.0": { + "npm:mimic-fn": { "type": "npm", - "name": "npm:normalize-package-data@2.5.0", + "name": "npm:mimic-fn", "data": { - "version": "2.5.0", - "packageName": "normalize-package-data", - "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" } }, "npm:normalize-url@8.0.0": { @@ -4518,15 +4509,6 @@ "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" } }, - "npm:signal-exit@4.0.2": { - "type": "npm", - "name": "npm:signal-exit@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "signal-exit", - "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" - } - }, "npm:signal-exit": { "type": "npm", "name": "npm:signal-exit", @@ -4563,49 +4545,49 @@ "hash": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==" } }, - "npm:@sigstore/protobuf-specs": { + "npm:@sigstore/bundle": { "type": "npm", - "name": "npm:@sigstore/protobuf-specs", + "name": "npm:@sigstore/bundle", "data": { - "version": "0.1.0", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==" + "version": "2.1.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==" } }, - "npm:@sigstore/protobuf-specs@0.2.1": { + "npm:@sigstore/protobuf-specs": { "type": "npm", - "name": "npm:@sigstore/protobuf-specs@0.2.1", + "name": "npm:@sigstore/protobuf-specs", "data": { "version": "0.2.1", "packageName": "@sigstore/protobuf-specs", - "hash": "7667554126342576695" + "hash": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==" } }, - "npm:@sigstore/tuf": { + "npm:@sigstore/sign": { "type": "npm", - "name": "npm:@sigstore/tuf", + "name": "npm:@sigstore/sign", "data": { - "version": "1.0.2", - "packageName": "@sigstore/tuf", - "hash": "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q==" + "version": "2.2.0", + "packageName": "@sigstore/sign", + "hash": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==" } }, - "npm:@sigstore/tuf@2.2.0": { + "npm:@sigstore/tuf": { "type": "npm", - "name": "npm:@sigstore/tuf@2.2.0", + "name": "npm:@sigstore/tuf", "data": { "version": "2.2.0", "packageName": "@sigstore/tuf", - "hash": "1725181910239076121" + "hash": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==" } }, "npm:@sinclair/typebox": { "type": "npm", "name": "npm:@sinclair/typebox", "data": { - "version": "0.25.24", + "version": "0.27.8", "packageName": "@sinclair/typebox", - "hash": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==" + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" } }, "npm:@sindresorhus/is": { @@ -4644,166 +4626,175 @@ "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" } }, + "npm:@socket.io/component-emitter": { + "type": "npm", + "name": "npm:@socket.io/component-emitter", + "data": { + "version": "3.1.0", + "packageName": "@socket.io/component-emitter", + "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" + } + }, "npm:@swc-node/core": { "type": "npm", "name": "npm:@swc-node/core", "data": { - "version": "1.10.4", + "version": "1.10.6", "packageName": "@swc-node/core", - "hash": "sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==" + "hash": "sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==" } }, "npm:@swc-node/register": { "type": "npm", "name": "npm:@swc-node/register", "data": { - "version": "1.4.2", + "version": "1.6.8", "packageName": "@swc-node/register", - "hash": "sha512-wLZz0J7BTO//1Eq7e4eBQjKF380Hr2eVemz849msQSKcVM1D7UJUt/dP2TinEVGx++/BXJ/0q37i6n9Iw0EM0w==" - } - }, - "npm:typescript@4.9.5": { - "type": "npm", - "name": "npm:typescript@4.9.5", - "data": { - "version": "4.9.5", - "packageName": "typescript", - "hash": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.0.4", - "packageName": "typescript", - "hash": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==" + "hash": "sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==" } }, "npm:@swc-node/sourcemap-support": { "type": "npm", "name": "npm:@swc-node/sourcemap-support", "data": { - "version": "0.1.11", + "version": "0.3.0", "packageName": "@swc-node/sourcemap-support", - "hash": "sha512-b+Mn3oQl+7nUSt7hPzIbY9B30YhcFo1PT4kd9P4QmD6raycmIealOAhAdZID/JevphzsOXHQB4OqJm7Yi5tMcA==" + "hash": "sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==" } }, "npm:@swc/cli": { "type": "npm", "name": "npm:@swc/cli", "data": { - "version": "0.1.62", + "version": "0.1.63", "packageName": "@swc/cli", - "hash": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==" + "hash": "sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==" } }, "npm:@swc/core": { "type": "npm", "name": "npm:@swc/core", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core", - "hash": "sha512-9DROjzfAEt0xt0CDkOYsWpkUPyne8fl5ggWGon049678BOM7p0R0dmaalZGAsKatG5vYP1IWSKWsKhJIubDCsQ==" + "hash": "sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==" } }, "npm:@swc/core-darwin-arm64": { "type": "npm", "name": "npm:@swc/core-darwin-arm64", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-zCT2mCkOBVNf5uJDcQ3A9KDoO1OEaGdfjsRTZTo7sejDd9AXLfJg+xgyCBBrK2jNS/uWcT21IvSv3LqKp4K8pA==" + "hash": "sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==" } }, "npm:@swc/core-darwin-x64": { "type": "npm", "name": "npm:@swc/core-darwin-x64", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-darwin-x64", - "hash": "sha512-hXTVsfTatPEec5gFVyjGj3NccKZsYj/OXyHn6XA+l3Q76lZzGm2ISHdku//XNwXu8OmJ0HhS7LPsC4XXwxXQhg==" + "hash": "sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==" } }, "npm:@swc/core-linux-arm-gnueabihf": { "type": "npm", "name": "npm:@swc/core-linux-arm-gnueabihf", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-l8AKL0RkDL5FRTeWMmjoz9zvAc37amxC+0rheaNwE+gZya7ObyNjnIYz5FwN+3y+z6JFU7LS2x/5f6iwruv6pg==" + "hash": "sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==" } }, "npm:@swc/core-linux-arm64-gnu": { "type": "npm", "name": "npm:@swc/core-linux-arm64-gnu", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-S8zOB1AXEpb7kmtgMaFNeLAj01VOky4B0RNZ+uJWigdrDiFT67FeZzNHUNmNSOU0QM79G+Lie/xD/beqEw0vDg==" + "hash": "sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==" } }, "npm:@swc/core-linux-arm64-musl": { "type": "npm", "name": "npm:@swc/core-linux-arm64-musl", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-Fex8J8ASrt13pmOr2xWh41tEeKWwXYGk3sV8L/aGHiYtIJEUi2f+RtMx3jp7LIdOD8pQptor7i5WBlfR9jhp8A==" + "hash": "sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==" } }, "npm:@swc/core-linux-x64-gnu": { "type": "npm", "name": "npm:@swc/core-linux-x64-gnu", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-9bz9/bMphrv5vDg0os/d8ve0QgFpDzJgZgHUaHiGwcmfnlgdOSAaYJLIvWdcGTjZuQeV4L0m+iru357D9TXEzA==" + "hash": "sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==" } }, "npm:@swc/core-linux-x64-musl": { "type": "npm", "name": "npm:@swc/core-linux-x64-musl", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-ED0H6oLvQmhgo9zs8usmEA/lcZPGTu7K9og9K871b7HhHX0h/R+Xg2pb5KD7S/GyUHpfuopxjVROm+h6X1jMUA==" + "hash": "sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==" } }, "npm:@swc/core-win32-arm64-msvc": { "type": "npm", "name": "npm:@swc/core-win32-arm64-msvc", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-J1yFDLgPFeRtA8t5E159OXX+ww1gbkFg70yr4OP7EsOkOD1uMkuTf9yK/woHfsaVJlUYjJHzw7MkUIEgQBucqQ==" + "hash": "sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==" } }, "npm:@swc/core-win32-ia32-msvc": { "type": "npm", "name": "npm:@swc/core-win32-ia32-msvc", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-bK11/KtasewqHxzkjKUBXRE9MSAidbZCxrgJUd49bItG2N/DHxkwMYu8Xkh5VDHdTYWv/2idYtf/VM9Yi+53qw==" + "hash": "sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==" } }, "npm:@swc/core-win32-x64-msvc": { "type": "npm", "name": "npm:@swc/core-win32-x64-msvc", "data": { - "version": "1.3.67", + "version": "1.3.101", "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-GxzUU3+NA3cPcYxCxtfSQIS2ySD7Z8IZmKTVaWA9GOUQbKLyCE8H5js31u39+0op/1gNgxOgYFDoj2lUyvLCqw==" + "hash": "sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==" + } + }, + "npm:@swc/counter": { + "type": "npm", + "name": "npm:@swc/counter", + "data": { + "version": "0.1.2", + "packageName": "@swc/counter", + "hash": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==" } }, "npm:@swc/helpers": { "type": "npm", "name": "npm:@swc/helpers", "data": { - "version": "0.5.1", + "version": "0.5.3", "packageName": "@swc/helpers", - "hash": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==" + "hash": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==" + } + }, + "npm:@swc/types": { + "type": "npm", + "name": "npm:@swc/types", + "data": { + "version": "0.1.5", + "packageName": "@swc/types", + "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" } }, "npm:@szmarczak/http-timer": { @@ -4881,37 +4872,19 @@ "npm:@tufjs/canonical-json": { "type": "npm", "name": "npm:@tufjs/canonical-json", - "data": { - "version": "1.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" - } - }, - "npm:@tufjs/canonical-json@2.0.0": { - "type": "npm", - "name": "npm:@tufjs/canonical-json@2.0.0", "data": { "version": "2.0.0", "packageName": "@tufjs/canonical-json", - "hash": "11097475440325400855" + "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" } }, "npm:@tufjs/models": { "type": "npm", "name": "npm:@tufjs/models", - "data": { - "version": "1.0.4", - "packageName": "@tufjs/models", - "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" - } - }, - "npm:@tufjs/models@2.0.0": { - "type": "npm", - "name": "npm:@tufjs/models@2.0.0", "data": { "version": "2.0.0", "packageName": "@tufjs/models", - "hash": "9206070781902678523" + "hash": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==" } }, "npm:brace-expansion@2.0.1": { @@ -4936,54 +4909,54 @@ "type": "npm", "name": "npm:@types/babel__core", "data": { - "version": "7.20.1", + "version": "7.20.5", "packageName": "@types/babel__core", - "hash": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==" + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" } }, "npm:@types/babel__generator": { "type": "npm", "name": "npm:@types/babel__generator", "data": { - "version": "7.6.4", + "version": "7.6.8", "packageName": "@types/babel__generator", - "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" + "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" } }, "npm:@types/babel__template": { "type": "npm", "name": "npm:@types/babel__template", "data": { - "version": "7.4.1", + "version": "7.4.4", "packageName": "@types/babel__template", - "hash": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==" + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" } }, "npm:@types/babel__traverse": { "type": "npm", "name": "npm:@types/babel__traverse", "data": { - "version": "7.20.1", + "version": "7.20.4", "packageName": "@types/babel__traverse", - "hash": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==" + "hash": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==" } }, "npm:@types/body-parser": { "type": "npm", "name": "npm:@types/body-parser", "data": { - "version": "1.19.2", + "version": "1.19.5", "packageName": "@types/body-parser", - "hash": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==" + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" } }, "npm:@types/bonjour": { "type": "npm", "name": "npm:@types/bonjour", "data": { - "version": "3.5.10", + "version": "3.5.13", "packageName": "@types/bonjour", - "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" } }, "npm:@types/cacheable-request": { @@ -4999,144 +4972,162 @@ "type": "npm", "name": "npm:@types/connect", "data": { - "version": "3.4.35", + "version": "3.4.38", "packageName": "@types/connect", - "hash": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==" + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" } }, "npm:@types/connect-history-api-fallback": { "type": "npm", "name": "npm:@types/connect-history-api-fallback", "data": { - "version": "1.5.0", + "version": "1.5.4", "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==" + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:@types/cors": { + "type": "npm", + "name": "npm:@types/cors", + "data": { + "version": "2.8.17", + "packageName": "@types/cors", + "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" } }, "npm:@types/eslint": { "type": "npm", "name": "npm:@types/eslint", "data": { - "version": "8.40.2", + "version": "8.56.0", "packageName": "@types/eslint", - "hash": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==" + "hash": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==" } }, "npm:@types/eslint-scope": { "type": "npm", "name": "npm:@types/eslint-scope", "data": { - "version": "3.7.4", + "version": "3.7.7", "packageName": "@types/eslint-scope", - "hash": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==" + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" } }, "npm:@types/estree": { "type": "npm", "name": "npm:@types/estree", "data": { - "version": "1.0.1", + "version": "1.0.5", "packageName": "@types/estree", - "hash": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" } }, "npm:@types/express": { "type": "npm", "name": "npm:@types/express", "data": { - "version": "4.17.17", + "version": "4.17.21", "packageName": "@types/express", - "hash": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==" + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" } }, "npm:@types/express-serve-static-core": { "type": "npm", "name": "npm:@types/express-serve-static-core", "data": { - "version": "4.17.35", + "version": "4.17.41", "packageName": "@types/express-serve-static-core", - "hash": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==" + "hash": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==" } }, "npm:@types/graceful-fs": { "type": "npm", "name": "npm:@types/graceful-fs", "data": { - "version": "4.1.6", + "version": "4.1.9", "packageName": "@types/graceful-fs", - "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" + "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" } }, "npm:@types/http-cache-semantics": { "type": "npm", "name": "npm:@types/http-cache-semantics", "data": { - "version": "4.0.1", + "version": "4.0.4", "packageName": "@types/http-cache-semantics", - "hash": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" + "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" } }, "npm:@types/http-errors": { "type": "npm", "name": "npm:@types/http-errors", "data": { - "version": "2.0.1", + "version": "2.0.4", "packageName": "@types/http-errors", - "hash": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==" + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" } }, "npm:@types/http-proxy": { "type": "npm", "name": "npm:@types/http-proxy", "data": { - "version": "1.17.11", + "version": "1.17.14", "packageName": "@types/http-proxy", - "hash": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==" + "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" } }, "npm:@types/inquirer": { "type": "npm", "name": "npm:@types/inquirer", "data": { - "version": "9.0.3", + "version": "9.0.7", "packageName": "@types/inquirer", - "hash": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==" + "hash": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==" } }, "npm:@types/istanbul-lib-coverage": { "type": "npm", "name": "npm:@types/istanbul-lib-coverage", "data": { - "version": "2.0.4", + "version": "2.0.6", "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" } }, "npm:@types/istanbul-lib-report": { "type": "npm", "name": "npm:@types/istanbul-lib-report", "data": { - "version": "3.0.0", + "version": "3.0.3", "packageName": "@types/istanbul-lib-report", - "hash": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==" + "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" } }, "npm:@types/istanbul-reports": { "type": "npm", "name": "npm:@types/istanbul-reports", "data": { - "version": "3.0.1", + "version": "3.0.4", "packageName": "@types/istanbul-reports", - "hash": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==" + "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" } }, "npm:@types/jest": { "type": "npm", "name": "npm:@types/jest", "data": { - "version": "29.5.2", + "version": "29.5.11", "packageName": "@types/jest", - "hash": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==" + "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" } }, "npm:@types/jsdom": { @@ -5152,18 +5143,9 @@ "type": "npm", "name": "npm:@types/json-schema", "data": { - "version": "7.0.12", + "version": "7.0.15", "packageName": "@types/json-schema", - "hash": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" } }, "npm:@types/keyv": { @@ -5179,36 +5161,45 @@ "type": "npm", "name": "npm:@types/lodash", "data": { - "version": "4.14.195", + "version": "4.14.202", "packageName": "@types/lodash", - "hash": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==" + "hash": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" } }, "npm:@types/mime": { "type": "npm", "name": "npm:@types/mime", "data": { - "version": "1.3.2", + "version": "1.3.5", "packageName": "@types/mime", - "hash": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" } }, "npm:@types/node": { "type": "npm", "name": "npm:@types/node", "data": { - "version": "18.7.1", + "version": "18.16.9", "packageName": "@types/node", - "hash": "sha512-GKX1Qnqxo4S+Z/+Z8KKPLpH282LD7jLHWJcVryOflnsnH+BtSDfieR6ObwBMwpnNws0bUK8GI7z0unQf9bARNQ==" + "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" } }, - "npm:@types/node@14.18.53": { + "npm:@types/node@16.18.68": { "type": "npm", - "name": "npm:@types/node@14.18.53", + "name": "npm:@types/node@16.18.68", "data": { - "version": "14.18.53", + "version": "16.18.68", "packageName": "@types/node", - "hash": "sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==" + "hash": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==" + } + }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.10", + "packageName": "@types/node-forge", + "hash": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==" } }, "npm:@types/normalize-package-data": { @@ -5224,45 +5215,36 @@ "type": "npm", "name": "npm:@types/parse-json", "data": { - "version": "4.0.0", + "version": "4.0.2", "packageName": "@types/parse-json", - "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - } - }, - "npm:@types/prettier": { - "type": "npm", - "name": "npm:@types/prettier", - "data": { - "version": "2.7.3", - "packageName": "@types/prettier", - "hash": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" } }, "npm:@types/qs": { "type": "npm", "name": "npm:@types/qs", "data": { - "version": "6.9.7", + "version": "6.9.10", "packageName": "@types/qs", - "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + "hash": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" } }, "npm:@types/range-parser": { "type": "npm", "name": "npm:@types/range-parser", "data": { - "version": "1.2.4", + "version": "1.2.7", "packageName": "@types/range-parser", - "hash": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" } }, "npm:@types/responselike": { "type": "npm", "name": "npm:@types/responselike", "data": { - "version": "1.0.0", + "version": "1.0.3", "packageName": "@types/responselike", - "hash": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==" + "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" } }, "npm:@types/retry": { @@ -5278,36 +5260,36 @@ "type": "npm", "name": "npm:@types/semver", "data": { - "version": "7.5.0", + "version": "7.5.6", "packageName": "@types/semver", - "hash": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==" + "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" } }, "npm:@types/send": { "type": "npm", "name": "npm:@types/send", "data": { - "version": "0.17.1", + "version": "0.17.4", "packageName": "@types/send", - "hash": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==" + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" } }, "npm:@types/serve-index": { "type": "npm", "name": "npm:@types/serve-index", "data": { - "version": "1.9.1", + "version": "1.9.4", "packageName": "@types/serve-index", - "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" } }, "npm:@types/serve-static": { "type": "npm", "name": "npm:@types/serve-static", "data": { - "version": "1.15.2", + "version": "1.15.5", "packageName": "@types/serve-static", - "hash": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==" + "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" } }, "npm:@types/sinonjs__fake-timers": { @@ -5323,243 +5305,207 @@ "type": "npm", "name": "npm:@types/sizzle", "data": { - "version": "2.3.3", + "version": "2.3.8", "packageName": "@types/sizzle", - "hash": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==" + "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" } }, "npm:@types/sockjs": { "type": "npm", "name": "npm:@types/sockjs", "data": { - "version": "0.3.33", + "version": "0.3.36", "packageName": "@types/sockjs", - "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" } }, "npm:@types/stack-utils": { "type": "npm", "name": "npm:@types/stack-utils", "data": { - "version": "2.0.1", + "version": "2.0.3", "packageName": "@types/stack-utils", - "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" } }, "npm:@types/through": { "type": "npm", "name": "npm:@types/through", "data": { - "version": "0.0.30", + "version": "0.0.33", "packageName": "@types/through", - "hash": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==" + "hash": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==" } }, "npm:@types/tough-cookie": { "type": "npm", "name": "npm:@types/tough-cookie", "data": { - "version": "4.0.2", + "version": "4.0.5", "packageName": "@types/tough-cookie", - "hash": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==" + "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" } }, "npm:@types/ws": { "type": "npm", "name": "npm:@types/ws", "data": { - "version": "8.5.5", + "version": "8.5.10", "packageName": "@types/ws", - "hash": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==" + "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" } }, "npm:@types/yargs": { "type": "npm", "name": "npm:@types/yargs", "data": { - "version": "17.0.24", + "version": "17.0.32", "packageName": "@types/yargs", - "hash": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==" + "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" } }, "npm:@types/yargs-parser": { "type": "npm", "name": "npm:@types/yargs-parser", "data": { - "version": "21.0.0", + "version": "21.0.3", "packageName": "@types/yargs-parser", - "hash": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" } }, "npm:@types/yauzl": { "type": "npm", "name": "npm:@types/yauzl", "data": { - "version": "2.10.0", + "version": "2.10.3", "packageName": "@types/yauzl", - "hash": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==" + "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" } }, "npm:@typescript-eslint/eslint-plugin": { "type": "npm", "name": "npm:@typescript-eslint/eslint-plugin", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-KSWsVvsJsLJv3c4e73y/Bzt7OpqMCADUO846bHcuWYSYM19bldbAeDv7dYyV0jwkbMfJ2XdlzwjhXtuD7OY6bw==" + "hash": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==" } }, - "npm:@typescript-eslint/type-utils@5.60.1": { + "npm:@typescript-eslint/type-utils@6.15.0": { "type": "npm", - "name": "npm:@typescript-eslint/type-utils@5.60.1", + "name": "npm:@typescript-eslint/type-utils@6.15.0", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-vN6UztYqIu05nu7JqwQGzQKUJctzs3/Hg7E2Yx8rz9J+4LgtIDFWjjl1gm3pycH0P3mHAcEUBd23LVgfrsTR8A==" + "hash": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==" } }, "npm:@typescript-eslint/type-utils": { "type": "npm", "name": "npm:@typescript-eslint/type-utils", "data": { - "version": "5.59.7", + "version": "6.13.1", "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==" + "hash": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==" } }, - "npm:@typescript-eslint/utils@5.60.1": { + "npm:@typescript-eslint/utils@6.15.0": { "type": "npm", - "name": "npm:@typescript-eslint/utils@5.60.1", + "name": "npm:@typescript-eslint/utils@6.15.0", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/utils", - "hash": "sha512-tiJ7FFdFQOWssFa3gqb94Ilexyw0JVxj6vBzaSpfN/8IhoKkDuSAenUKvsSHw2A/TMpJb26izIszTXaqygkvpQ==" + "hash": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==" } }, "npm:@typescript-eslint/utils": { "type": "npm", "name": "npm:@typescript-eslint/utils", "data": { - "version": "5.59.7", + "version": "6.13.1", "packageName": "@typescript-eslint/utils", - "hash": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==" - } - }, - "npm:eslint-scope@5.1.1": { - "type": "npm", - "name": "npm:eslint-scope@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "7.2.0", - "packageName": "eslint-scope", - "hash": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + "hash": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==" } }, "npm:@typescript-eslint/parser": { "type": "npm", "name": "npm:@typescript-eslint/parser", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/parser", - "hash": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==" + "hash": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==" } }, "npm:@typescript-eslint/scope-manager": { "type": "npm", "name": "npm:@typescript-eslint/scope-manager", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==" + "hash": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==" } }, - "npm:@typescript-eslint/scope-manager@5.59.7": { + "npm:@typescript-eslint/scope-manager@6.13.1": { "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@5.59.7", + "name": "npm:@typescript-eslint/scope-manager@6.13.1", "data": { - "version": "5.59.7", + "version": "6.13.1", "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==" + "hash": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==" } }, - "npm:@typescript-eslint/types@5.59.7": { + "npm:@typescript-eslint/types@6.13.1": { "type": "npm", - "name": "npm:@typescript-eslint/types@5.59.7", + "name": "npm:@typescript-eslint/types@6.13.1", "data": { - "version": "5.59.7", + "version": "6.13.1", "packageName": "@typescript-eslint/types", - "hash": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==" + "hash": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==" } }, "npm:@typescript-eslint/types": { "type": "npm", "name": "npm:@typescript-eslint/types", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/types", - "hash": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==" + "hash": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==" } }, - "npm:@typescript-eslint/typescript-estree@5.59.7": { + "npm:@typescript-eslint/typescript-estree@6.13.1": { "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@5.59.7", + "name": "npm:@typescript-eslint/typescript-estree@6.13.1", "data": { - "version": "5.59.7", + "version": "6.13.1", "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==" + "hash": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==" } }, "npm:@typescript-eslint/typescript-estree": { "type": "npm", "name": "npm:@typescript-eslint/typescript-estree", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==" + "hash": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==" } }, - "npm:@typescript-eslint/visitor-keys@5.59.7": { + "npm:@typescript-eslint/visitor-keys@6.13.1": { "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@5.59.7", + "name": "npm:@typescript-eslint/visitor-keys@6.13.1", "data": { - "version": "5.59.7", + "version": "6.13.1", "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==" + "hash": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==" } }, "npm:@typescript-eslint/visitor-keys": { "type": "npm", "name": "npm:@typescript-eslint/visitor-keys", "data": { - "version": "5.60.1", + "version": "6.15.0", "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==" + "hash": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==" } }, "npm:@verdaccio/commons-api": { @@ -5575,18 +5521,18 @@ "type": "npm", "name": "npm:@verdaccio/config", "data": { - "version": "6.0.0-6-next.71", + "version": "7.0.0-next.4", "packageName": "@verdaccio/config", - "hash": "sha512-PvXXVNw28I9JWw7TYCbjA5jkkwbliZTB+TNXzWaFVOpW6s+94WWQzBNUUvPG67iPW4Wgo1ciHVdde/zOeFNfYw==" + "hash": "sha512-bMQEL+ZGzoH8WIHEoC1HZon35QIWjY3KdYGyKc4eUKr6bUyQSRksmPQ40NQVgcUY0vlfkJMB+TCvgVXaf8kfBw==" } }, "npm:@verdaccio/core": { "type": "npm", "name": "npm:@verdaccio/core", "data": { - "version": "6.0.0-6-next.71", + "version": "7.0.0-next.4", "packageName": "@verdaccio/core", - "hash": "sha512-leREshFssUKy+yI+Y6r9uyfuOEluLbdEs47WpI0hlV6htXkgBjfWIi884i4V/SCm+UIU8Dhn2iHPRo06KlRvFQ==" + "hash": "sha512-wbgFq7d2m/ijmusD6wPVxm6aCxvSLNcP/XagrNKahEbdcgMcDv+6Dm6ZBaKcVgtIMv++aZkc3F3mV4Scj3snSQ==" } }, "npm:@verdaccio/file-locking": { @@ -5598,13 +5544,13 @@ "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" } }, - "npm:@verdaccio/file-locking@11.0.0-6-next.7": { + "npm:@verdaccio/file-locking@12.0.0-next.1": { "type": "npm", - "name": "npm:@verdaccio/file-locking@11.0.0-6-next.7", + "name": "npm:@verdaccio/file-locking@12.0.0-next.1", "data": { - "version": "11.0.0-6-next.7", + "version": "12.0.0-next.1", "packageName": "@verdaccio/file-locking", - "hash": "sha512-S0GNoe2oBOgB7fKJN2vZqnl5qDEvdnTfKAfa47InXweJROeul6kjlE2/NlbNbK3zZID01VR1HFrFehMQO0Jyfw==" + "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" } }, "npm:@verdaccio/local-storage": { @@ -5616,6 +5562,33 @@ "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" } }, + "npm:async@3.2.4": { + "type": "npm", + "name": "npm:async@3.2.4", + "data": { + "version": "3.2.4", + "packageName": "async", + "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.5", + "packageName": "async", + "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + } + }, + "npm:async@2.6.4": { + "type": "npm", + "name": "npm:async@2.6.4", + "data": { + "version": "2.6.4", + "packageName": "async", + "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + } + }, "npm:mkdirp@1.0.4": { "type": "npm", "name": "npm:mkdirp@1.0.4", @@ -5638,27 +5611,27 @@ "type": "npm", "name": "npm:@verdaccio/logger-7", "data": { - "version": "6.0.0-6-next.16", + "version": "7.0.0-next.4", "packageName": "@verdaccio/logger-7", - "hash": "sha512-QElvJcICP3DiJgDPUP4JRjWuImh6RbLWeK83iubrb/y865OmvrOgCgnBAZn0/i/L6buPFa/Sh5A07PBRuYWHgw==" + "hash": "sha512-kx+/vY9THFHXTxsQT/McbqG4psu6CmlkjnLvcrk0Gbyki3Uaquo79K/3rPokHWnS7Ur45gxYIukIAzVfcA0mKA==" } }, "npm:@verdaccio/logger-commons": { "type": "npm", "name": "npm:@verdaccio/logger-commons", "data": { - "version": "6.0.0-6-next.39", + "version": "7.0.0-next.4", "packageName": "@verdaccio/logger-commons", - "hash": "sha512-jdk8nDu2u3307XV2RtBo+FrC30xXGuSvZN7pQqFWCB9dJo21LpsMPTCgj9eBEwaAT+/ICTJURjO0VBkMlvcbGQ==" + "hash": "sha512-l7T3u8eW84UrQQHAOjqUw12t9q2IRleCnniQ9wV/KpBQNwuE3BPPy6t9/64QW9eXOzldJ8G3w7ttPCsK+cq8uw==" } }, "npm:@verdaccio/logger-prettify": { "type": "npm", "name": "npm:@verdaccio/logger-prettify", "data": { - "version": "6.0.0-6-next.10", + "version": "7.0.0-next.1", "packageName": "@verdaccio/logger-prettify", - "hash": "sha512-G9woGojHXoRg3W4fE2ZlNy2c25f5faqLWHxVdnDFbgbH6dieG+GzlyNwiOcrRC4LEkh7dWcgwuNMx1NZFojqhg==" + "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" } }, "npm:dayjs@1.11.7": { @@ -5674,36 +5647,36 @@ "type": "npm", "name": "npm:dayjs", "data": { - "version": "1.11.9", + "version": "1.11.10", "packageName": "dayjs", - "hash": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==" + "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" } }, "npm:@verdaccio/middleware": { "type": "npm", "name": "npm:@verdaccio/middleware", "data": { - "version": "6.0.0-6-next.50", + "version": "7.0.0-next.4", "packageName": "@verdaccio/middleware", - "hash": "sha512-eWn1C3p4Tc2ijqrzM0YjSb48DyNkH30UURjh23WyUVrMC7sn7s0DR9DlrRlVC8OSi8oqyQzV1KihowkzFLDcag==" + "hash": "sha512-EjRif42rbikn5WUB6+an9IX6zoAXiIG5jKOmzdOx6vIZ3iYg0HmgEFW5do2gVchFiox1+M2WMRTS55J0xG+dCA==" } }, "npm:@verdaccio/search": { "type": "npm", "name": "npm:@verdaccio/search", "data": { - "version": "6.0.0-6-next.2", + "version": "7.0.0-next.2", "packageName": "@verdaccio/search", - "hash": "sha512-5Hkcxoj7crPn6Zth59I54af6KO5Ho7bzvCHCDbEwcmjewKcQJB4Kst4cEtpN/xA1ao0hqOSruEObl7/mqCq8hg==" + "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" } }, "npm:@verdaccio/signature": { "type": "npm", "name": "npm:@verdaccio/signature", "data": { - "version": "6.0.0-6-next.2", + "version": "7.0.0-next.2", "packageName": "@verdaccio/signature", - "hash": "sha512-aFvMbxxHzJCpPmqSgVuQYvYN2RP11CoSEcTXikkyb1zF4Uf3cOy53zUZ1Y7iOKCRYTgWrmet9KP7+24e44GHxg==" + "hash": "sha512-rxoSmdKrSJZEoSsWKjgytpqf2Bltbs6sR5Hflu8xXfPZPmHpXkGgAdb8tuSlnmjzo6hXoKfje8b9BJoP2bDwbA==" } }, "npm:@verdaccio/streams": { @@ -5719,36 +5692,54 @@ "type": "npm", "name": "npm:@verdaccio/tarball", "data": { - "version": "11.0.0-6-next.40", + "version": "12.0.0-next.4", "packageName": "@verdaccio/tarball", - "hash": "sha512-1470DzyV9fdEsjqFhjOQ/5kU5EEgHXV8tyqKyZK+AQ+2g6mpj6NfU5Q82fpmoyzNlPGjREygE75KBv/niRCgRA==" + "hash": "sha512-3GuyDaoshKOYdv+zTEKiyUO/0h3xGvr+RCJBkvMkPwIXfbkWDPyk00lxSXZDCqwFePZgcDaHOqS7krz2rMdsoQ==" } }, "npm:@verdaccio/ui-theme": { "type": "npm", "name": "npm:@verdaccio/ui-theme", "data": { - "version": "6.0.0-6-next.71", + "version": "7.0.0-next.4", "packageName": "@verdaccio/ui-theme", - "hash": "sha512-HX9NY0pZSg/H1C4GHLGzt91Xo5Oq8+VyZYN3JocHKev/EIE6G2/UuInKGAJxxdSIkno6jUyfrGZi2t9Qhgwwnw==" + "hash": "sha512-zvkAMyBmD0txGEpocdGQ9yRCvPYZEb0lH6lh0AAOcKwXg5SaY9yW/n2Rx3k6873xebA4bEMldWB3j+Uv8Jciqw==" } }, "npm:@verdaccio/url": { "type": "npm", "name": "npm:@verdaccio/url", "data": { - "version": "11.0.0-6-next.37", + "version": "12.0.0-next.4", "packageName": "@verdaccio/url", - "hash": "sha512-bPEq/aS77IzMUv7H1Zq4fVJeM7IxIImCan+ydQzFWGJfoGXgAz8p5PBm1+fqCgtEyQ/TeK6EowdXitX9lAIGVQ==" + "hash": "sha512-0SszVxX6VGgbrwPWU2WzvEbTUEZP4j6Krulb7Ju6hCVrV6A1/W/CGrztnRNcdE/avSZWZvvDpQ65NBRFE7pjtQ==" + } + }, + "npm:validator@13.9.0": { + "type": "npm", + "name": "npm:validator@13.9.0", + "data": { + "version": "13.9.0", + "packageName": "validator", + "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.11.0", + "packageName": "validator", + "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" } }, "npm:@verdaccio/utils": { "type": "npm", "name": "npm:@verdaccio/utils", "data": { - "version": "6.0.0-6-next.39", + "version": "7.0.0-next.4", "packageName": "@verdaccio/utils", - "hash": "sha512-V4+pBaXxObgofHcAw7BZXv2RZwCi2KaWNIcpQNYz6AcF15gLT0C2/8e1M8nMLb7Qnips3fetpA26VNNvl5XRdw==" + "hash": "sha512-hgGUkmxBl03TvXQSvgHeI9BU6JrCW/QQu7O3+9f1etvCz2EWQ81JvCv8qsY3bHCT/ggYapvr/8xcjtUtJ1/KgA==" } }, "npm:@vitejs/plugin-basic-ssl": { @@ -5922,6 +5913,15 @@ "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" } }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, "npm:@zkochan/js-yaml": { "type": "npm", "name": "npm:@zkochan/js-yaml", @@ -5943,19 +5943,10 @@ "npm:abbrev": { "type": "npm", "name": "npm:abbrev", - "data": { - "version": "1.1.1", - "packageName": "abbrev", - "hash": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - } - }, - "npm:abbrev@2.0.0": { - "type": "npm", - "name": "npm:abbrev@2.0.0", "data": { "version": "2.0.0", "packageName": "abbrev", - "hash": "8855624444442833710" + "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" } }, "npm:abort-controller": { @@ -5980,9 +5971,9 @@ "type": "npm", "name": "npm:acorn", "data": { - "version": "8.9.0", + "version": "8.11.2", "packageName": "acorn", - "hash": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==" + "hash": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" } }, "npm:acorn-globals": { @@ -6016,9 +6007,9 @@ "type": "npm", "name": "npm:acorn-walk", "data": { - "version": "8.2.0", + "version": "8.3.1", "packageName": "acorn-walk", - "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + "hash": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==" } }, "npm:address": { @@ -6039,13 +6030,22 @@ "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" } }, - "npm:agentkeepalive": { + "npm:agent-base": { "type": "npm", - "name": "npm:agentkeepalive", + "name": "npm:agent-base", "data": { - "version": "4.3.0", - "packageName": "agentkeepalive", - "hash": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==" + "version": "7.1.0", + "packageName": "agent-base", + "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" + } + }, + "npm:agent-base@6.0.2": { + "type": "npm", + "name": "npm:agent-base@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" } }, "npm:ajv-formats": { @@ -6093,6 +6093,15 @@ "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" } }, + "npm:ansi-escapes@5.0.0": { + "type": "npm", + "name": "npm:ansi-escapes@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ansi-escapes", + "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" + } + }, "npm:ansi-escapes@6.2.0": { "type": "npm", "name": "npm:ansi-escapes@6.2.0", @@ -6147,6 +6156,24 @@ "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" } }, + "npm:picomatch@2.3.1": { + "type": "npm", + "name": "npm:picomatch@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "3.0.1", + "packageName": "picomatch", + "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" + } + }, "npm:apache-md5": { "type": "npm", "name": "npm:apache-md5", @@ -6156,15 +6183,6 @@ "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" } }, - "npm:aproba": { - "type": "npm", - "name": "npm:aproba", - "data": { - "version": "2.0.0", - "packageName": "aproba", - "hash": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - } - }, "npm:arch": { "type": "npm", "name": "npm:arch", @@ -6174,60 +6192,6 @@ "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" } }, - "npm:are-we-there-yet": { - "type": "npm", - "name": "npm:are-we-there-yet", - "data": { - "version": "3.0.1", - "packageName": "are-we-there-yet", - "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" - } - }, - "npm:are-we-there-yet@4.0.1": { - "type": "npm", - "name": "npm:are-we-there-yet@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "are-we-there-yet", - "hash": "2067525616894023226" - } - }, - "npm:readable-stream@3.6.2": { - "type": "npm", - "name": "npm:readable-stream@3.6.2", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readable-stream@4.4.2": { - "type": "npm", - "name": "npm:readable-stream@4.4.2", - "data": { - "version": "4.4.2", - "packageName": "readable-stream", - "hash": "41880603492280987" - } - }, - "npm:readable-stream@4.4.1": { - "type": "npm", - "name": "npm:readable-stream@4.4.1", - "data": { - "version": "4.4.1", - "packageName": "readable-stream", - "hash": "sha512-llAHX9QC25bz5RPIoTeJxPaA/hgryaldValRhVZ2fK9bzbmFiscpz8fw6iBTvJfAk1w4FC1KXQme/nO7fbKyKg==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, "npm:arg": { "type": "npm", "name": "npm:arg", @@ -6250,9 +6214,9 @@ "type": "npm", "name": "npm:aria-query", "data": { - "version": "5.1.3", + "version": "5.3.0", "packageName": "aria-query", - "hash": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==" + "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" } }, "npm:array-buffer-byte-length": { @@ -6291,40 +6255,13 @@ "hash": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==" } }, - "npm:array-includes": { + "npm:arraybuffer.prototype.slice": { "type": "npm", - "name": "npm:array-includes", + "name": "npm:arraybuffer.prototype.slice", "data": { - "version": "3.1.6", - "packageName": "array-includes", - "hash": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.1", - "packageName": "array.prototype.flat", - "hash": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.1", - "packageName": "array.prototype.flatmap", - "hash": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==" - } - }, - "npm:array.prototype.tosorted": { - "type": "npm", - "name": "npm:array.prototype.tosorted", - "data": { - "version": "1.1.1", - "packageName": "array.prototype.tosorted", - "hash": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==" + "version": "1.0.2", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" } }, "npm:asn1": { @@ -6354,22 +6291,13 @@ "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" } }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.4", - "packageName": "async", - "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - } - }, - "npm:async@2.6.4": { + "npm:async-each-series": { "type": "npm", - "name": "npm:async@2.6.4", + "name": "npm:async-each-series", "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + "version": "0.1.1", + "packageName": "async-each-series", + "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" } }, "npm:asynckit": { @@ -6412,9 +6340,9 @@ "type": "npm", "name": "npm:autoprefixer", "data": { - "version": "10.4.14", + "version": "10.4.16", "packageName": "autoprefixer", - "hash": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==" + "hash": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" } }, "npm:available-typed-arrays": { @@ -6448,72 +6376,270 @@ "type": "npm", "name": "npm:axios", "data": { - "version": "1.4.0", + "version": "0.21.4", "packageName": "axios", - "hash": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==" + "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" } }, - "npm:form-data@4.0.0": { + "npm:axios@1.6.2": { "type": "npm", - "name": "npm:form-data@4.0.0", + "name": "npm:axios@1.6.2", + "data": { + "version": "1.6.2", + "packageName": "axios", + "hash": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", "data": { "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + "packageName": "axobject-query", + "hash": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==" } }, - "npm:form-data": { + "npm:babel-jest": { "type": "npm", - "name": "npm:form-data", + "name": "npm:babel-jest", "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" } }, - "npm:proxy-from-env@1.1.0": { + "npm:babel-loader": { "type": "npm", - "name": "npm:proxy-from-env@1.1.0", + "name": "npm:babel-loader", "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + "version": "9.1.3", + "packageName": "babel-loader", + "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" } }, - "npm:proxy-from-env": { + "npm:find-cache-dir@4.0.0": { "type": "npm", - "name": "npm:proxy-from-env", + "name": "npm:find-cache-dir@4.0.0", "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" } }, - "npm:axobject-query": { + "npm:find-cache-dir": { "type": "npm", - "name": "npm:axobject-query", + "name": "npm:find-cache-dir", "data": { - "version": "3.1.1", - "packageName": "axobject-query", - "hash": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==" + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" } }, - "npm:babel-jest": { + "npm:find-up@6.3.0": { "type": "npm", - "name": "npm:babel-jest", + "name": "npm:find-up@6.3.0", "data": { - "version": "29.5.0", - "packageName": "babel-jest", - "hash": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==" + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" } }, - "npm:babel-loader": { + "npm:find-up@5.0.0": { "type": "npm", - "name": "npm:babel-loader", + "name": "npm:find-up@5.0.0", "data": { - "version": "9.1.2", - "packageName": "babel-loader", - "hash": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==" + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" + } + }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, + "npm:locate-path@6.0.0": { + "type": "npm", + "name": "npm:locate-path@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:p-locate@5.0.0": { + "type": "npm", + "name": "npm:p-locate@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:pkg-dir@7.0.0": { + "type": "npm", + "name": "npm:pkg-dir@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" } }, "npm:babel-plugin-const-enum": { @@ -6534,13 +6660,31 @@ "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" } }, + "npm:istanbul-lib-instrument@5.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "6.0.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" + } + }, "npm:babel-plugin-jest-hoist": { "type": "npm", "name": "npm:babel-plugin-jest-hoist", "data": { - "version": "29.5.0", + "version": "29.6.3", "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==" + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" } }, "npm:babel-plugin-macros": { @@ -6552,31 +6696,40 @@ "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" } }, + "npm:babel-plugin-macros@3.1.0": { + "type": "npm", + "name": "npm:babel-plugin-macros@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" + } + }, "npm:babel-plugin-polyfill-corejs2": { "type": "npm", "name": "npm:babel-plugin-polyfill-corejs2", "data": { - "version": "0.3.3", + "version": "0.4.7", "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==" + "hash": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==" } }, "npm:babel-plugin-polyfill-corejs3": { "type": "npm", "name": "npm:babel-plugin-polyfill-corejs3", "data": { - "version": "0.6.0", + "version": "0.8.7", "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==" + "hash": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==" } }, "npm:babel-plugin-polyfill-regenerator": { "type": "npm", "name": "npm:babel-plugin-polyfill-regenerator", "data": { - "version": "0.4.1", + "version": "0.5.4", "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==" + "hash": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==" } }, "npm:babel-plugin-transform-typescript-metadata": { @@ -6601,9 +6754,9 @@ "type": "npm", "name": "npm:babel-preset-jest", "data": { - "version": "29.5.0", + "version": "29.6.3", "packageName": "babel-preset-jest", - "hash": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==" + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" } }, "npm:balanced-match": { @@ -6624,6 +6777,15 @@ "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" } }, + "npm:base64id": { + "type": "npm", + "name": "npm:base64id", + "data": { + "version": "2.0.0", + "packageName": "base64id", + "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" + } + }, "npm:basic-auth": { "type": "npm", "name": "npm:basic-auth", @@ -6705,6 +6867,69 @@ "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" } }, + "npm:cross-spawn@5.1.0": { + "type": "npm", + "name": "npm:cross-spawn@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "cross-spawn", + "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:shebang-command@1.2.0": { + "type": "npm", + "name": "npm:shebang-command@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "341129833107810678" + } + }, + "npm:shebang-regex@1.0.0": { + "type": "npm", + "name": "npm:shebang-regex@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "3348982168836855660" + } + }, "npm:bin-version": { "type": "npm", "name": "npm:bin-version", @@ -6741,6 +6966,42 @@ "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" } }, + "npm:readable-stream@3.6.2": { + "type": "npm", + "name": "npm:readable-stream@3.6.2", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readable-stream@4.4.2": { + "type": "npm", + "name": "npm:readable-stream@4.4.2", + "data": { + "version": "4.4.2", + "packageName": "readable-stream", + "hash": "41880603492280987" + } + }, + "npm:readable-stream@4.5.1": { + "type": "npm", + "name": "npm:readable-stream@4.5.1", + "data": { + "version": "4.5.1", + "packageName": "readable-stream", + "hash": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, "npm:blob-util": { "type": "npm", "name": "npm:blob-util", @@ -6786,6 +7047,15 @@ "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } }, + "npm:ms@2.1.3": { + "type": "npm", + "name": "npm:ms@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, "npm:ms": { "type": "npm", "name": "npm:ms", @@ -6795,13 +7065,22 @@ "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } }, - "npm:ms@2.1.3": { + "npm:on-finished@2.4.1": { "type": "npm", - "name": "npm:ms@2.1.3", + "name": "npm:on-finished@2.4.1", "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "7983584697866717947" + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" } }, "npm:qs@6.11.0": { @@ -6822,15 +7101,6 @@ "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" } }, - "npm:qs@6.5.3": { - "type": "npm", - "name": "npm:qs@6.5.3", - "data": { - "version": "6.5.3", - "packageName": "qs", - "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - } - }, "npm:bonjour-service": { "type": "npm", "name": "npm:bonjour-service", @@ -6867,13 +7137,130 @@ "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" } }, + "npm:browser-sync": { + "type": "npm", + "name": "npm:browser-sync", + "data": { + "version": "2.29.3", + "packageName": "browser-sync", + "hash": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==" + } + }, + "npm:browser-sync-client": { + "type": "npm", + "name": "npm:browser-sync-client", + "data": { + "version": "2.29.3", + "packageName": "browser-sync-client", + "hash": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==" + } + }, + "npm:browser-sync-ui": { + "type": "npm", + "name": "npm:browser-sync-ui", + "data": { + "version": "2.29.3", + "packageName": "browser-sync-ui", + "hash": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==" + } + }, + "npm:fs-extra@3.0.1": { + "type": "npm", + "name": "npm:fs-extra@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "fs-extra", + "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-extra@10.1.0": { + "type": "npm", + "name": "npm:fs-extra@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:jsonfile@3.0.1": { + "type": "npm", + "name": "npm:jsonfile@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "jsonfile", + "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonfile@5.0.0": { + "type": "npm", + "name": "npm:jsonfile@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "jsonfile", + "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, "npm:browserslist": { "type": "npm", "name": "npm:browserslist", "data": { - "version": "4.21.5", + "version": "4.22.2", "packageName": "browserslist", - "hash": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==" + "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" } }, "npm:bs-logger": { @@ -6885,6 +7272,15 @@ "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" } }, + "npm:bs-recipes": { + "type": "npm", + "name": "npm:bs-recipes", + "data": { + "version": "1.3.4", + "packageName": "bs-recipes", + "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" + } + }, "npm:bser": { "type": "npm", "name": "npm:bser", @@ -6979,54 +7375,81 @@ "type": "npm", "name": "npm:cacache", "data": { - "version": "17.0.6", + "version": "18.0.1", "packageName": "cacache", - "hash": "sha512-ixcYmEBExFa/+ajIPjcwypxL97CjJyOsH9A/W+4qgEPIpJvKlC+HmVY8nkIck6n3PwUTdgq9c489niJGwl+5Cw==" + "hash": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==" } }, - "npm:cacache@18.0.1": { + "npm:glob@10.3.10": { "type": "npm", - "name": "npm:cacache@18.0.1", + "name": "npm:glob@10.3.10", "data": { - "version": "18.0.1", - "packageName": "cacache", - "hash": "82531839294239853" + "version": "10.3.10", + "packageName": "glob", + "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" } }, - "npm:cacheable-lookup": { + "npm:glob": { "type": "npm", - "name": "npm:cacheable-lookup", + "name": "npm:glob", "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" } }, - "npm:cacheable-request": { + "npm:glob@6.0.4": { "type": "npm", - "name": "npm:cacheable-request", + "name": "npm:glob@6.0.4", "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + "version": "6.0.4", + "packageName": "glob", + "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" } }, - "npm:cachedir": { + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.4", + "packageName": "cacheable-request", + "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + } + }, + "npm:cachedir": { "type": "npm", "name": "npm:cachedir", "data": { - "version": "2.3.0", + "version": "2.4.0", "packageName": "cachedir", - "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" + "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" } }, "npm:call-bind": { "type": "npm", "name": "npm:call-bind", "data": { - "version": "1.0.2", + "version": "1.0.5", "packageName": "call-bind", - "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" } }, "npm:callsites": { @@ -7069,9 +7492,9 @@ "type": "npm", "name": "npm:caniuse-lite", "data": { - "version": "1.0.30001511", + "version": "1.0.30001570", "packageName": "caniuse-lite", - "hash": "sha512-NaWPJawcoedlghN4P7bDNeADD7K+rZaY6V8ZcME7PkEZo/nfOg+lnrUgRWiKbNxcQ4/toFKSxnS4WdbyPZnKkw==" + "hash": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==" } }, "npm:cardinal": { @@ -7092,42 +7515,6 @@ "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" } }, - "npm:color-convert@2.0.1": { - "type": "npm", - "name": "npm:color-convert@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-name@1.1.4": { - "type": "npm", - "name": "npm:color-name@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, "npm:char-regex": { "type": "npm", "name": "npm:char-regex", @@ -7186,9 +7573,9 @@ "type": "npm", "name": "npm:ci-info", "data": { - "version": "3.8.0", + "version": "3.9.0", "packageName": "ci-info", - "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" } }, "npm:ci-info@4.0.0": { @@ -7218,6 +7605,15 @@ "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" } }, + "npm:cli-cursor@4.0.0": { + "type": "npm", + "name": "npm:cli-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-cursor", + "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" + } + }, "npm:cli-spinners": { "type": "npm", "name": "npm:cli-spinners", @@ -7239,55 +7635,46 @@ "npm:cli-truncate": { "type": "npm", "name": "npm:cli-truncate", - "data": { - "version": "3.1.0", - "packageName": "cli-truncate", - "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" - } - }, - "npm:cli-truncate@2.1.0": { - "type": "npm", - "name": "npm:cli-truncate@2.1.0", "data": { "version": "2.1.0", "packageName": "cli-truncate", "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" } }, - "npm:cli-width": { + "npm:cli-truncate@3.1.0": { "type": "npm", - "name": "npm:cli-width", + "name": "npm:cli-truncate@3.1.0", "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" } }, "npm:clipanion": { "type": "npm", "name": "npm:clipanion", "data": { - "version": "3.2.0", + "version": "3.2.1", "packageName": "clipanion", - "hash": "sha512-XaPQiJQZKbyaaDbv5yR/cAt/ORfZfENkr4wGQj+Go/Uf/65ofTQBCPirgWFeJctZW24V3mxrFiEnEmqBflrJYA==" + "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" } }, "npm:cliui": { "type": "npm", "name": "npm:cliui", "data": { - "version": "7.0.4", + "version": "8.0.1", "packageName": "cliui", - "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" } }, - "npm:cliui@8.0.1": { + "npm:cliui@7.0.4": { "type": "npm", - "name": "npm:cliui@8.0.1", + "name": "npm:cliui@7.0.4", "data": { - "version": "8.0.1", + "version": "7.0.4", "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" } }, "npm:clone": { @@ -7357,18 +7744,9 @@ "type": "npm", "name": "npm:collect-v8-coverage", "data": { - "version": "1.0.1", + "version": "1.0.2", "packageName": "collect-v8-coverage", - "hash": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" - } - }, - "npm:color-support": { - "type": "npm", - "name": "npm:color-support", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" } }, "npm:colord": { @@ -7389,6 +7767,15 @@ "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" } }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, "npm:combined-stream": { "type": "npm", "name": "npm:combined-stream", @@ -7416,13 +7803,13 @@ "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" } }, - "npm:commander@10.0.1": { + "npm:commander@11.0.0": { "type": "npm", - "name": "npm:commander@10.0.1", + "name": "npm:commander@11.0.0", "data": { - "version": "10.0.1", + "version": "11.0.0", "packageName": "commander", - "hash": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" } }, "npm:commander@2.20.3": { @@ -7434,6 +7821,15 @@ "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" } }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, "npm:common-tags": { "type": "npm", "name": "npm:common-tags", @@ -7536,19 +7932,10 @@ "npm:ini": { "type": "npm", "name": "npm:ini", - "data": { - "version": "4.0.0", - "packageName": "ini", - "hash": "sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg==" - } - }, - "npm:ini@4.1.1": { - "type": "npm", - "name": "npm:ini@4.1.1", "data": { "version": "4.1.1", "packageName": "ini", - "hash": "5359929658052267619" + "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" } }, "npm:confusing-browser-globals": { @@ -7560,9 +7947,27 @@ "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" } }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.6.6", + "packageName": "connect", + "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" + } + }, "npm:connect-history-api-fallback": { "type": "npm", "name": "npm:connect-history-api-fallback", + "data": { + "version": "1.6.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + } + }, + "npm:connect-history-api-fallback@2.0.0": { + "type": "npm", + "name": "npm:connect-history-api-fallback@2.0.0", "data": { "version": "2.0.0", "packageName": "connect-history-api-fallback", @@ -7578,15 +7983,6 @@ "hash": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==" } }, - "npm:console-control-strings": { - "type": "npm", - "name": "npm:console-control-strings", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - } - }, "npm:content-disposition": { "type": "npm", "name": "npm:content-disposition", @@ -7659,6 +8055,15 @@ "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" } }, + "npm:cookie@0.4.2": { + "type": "npm", + "name": "npm:cookie@0.4.2", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, "npm:cookie-signature": { "type": "npm", "name": "npm:cookie-signature", @@ -7699,9 +8104,9 @@ "type": "npm", "name": "npm:core-js-compat", "data": { - "version": "3.31.0", + "version": "3.34.0", "packageName": "core-js-compat", - "hash": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==" + "hash": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==" } }, "npm:core-util-is": { @@ -7740,6 +8145,15 @@ "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" } }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, "npm:create-require": { "type": "npm", "name": "npm:create-require", @@ -7753,36 +8167,9 @@ "type": "npm", "name": "npm:critters", "data": { - "version": "0.0.16", + "version": "0.0.20", "packageName": "critters", - "hash": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + "hash": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==" } }, "npm:crypto-random-string": { @@ -7798,18 +8185,18 @@ "type": "npm", "name": "npm:css-declaration-sorter", "data": { - "version": "6.4.0", + "version": "7.1.1", "packageName": "css-declaration-sorter", - "hash": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==" + "hash": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==" } }, "npm:css-loader": { "type": "npm", "name": "npm:css-loader", "data": { - "version": "6.7.3", + "version": "6.8.1", "packageName": "css-loader", - "hash": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==" + "hash": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==" } }, "npm:css-minimizer-webpack-plugin": { @@ -7821,36 +8208,9 @@ "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" } }, - "npm:postcss@8.4.24": { - "type": "npm", - "name": "npm:postcss@8.4.24", - "data": { - "version": "8.4.24", - "packageName": "postcss", - "hash": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.23", - "packageName": "postcss", - "hash": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==" - } - }, "npm:css-select": { "type": "npm", "name": "npm:css-select", - "data": { - "version": "4.3.0", - "packageName": "css-select", - "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" - } - }, - "npm:css-select@5.1.0": { - "type": "npm", - "name": "npm:css-select@5.1.0", "data": { "version": "5.1.0", "packageName": "css-select", @@ -7897,27 +8257,27 @@ "type": "npm", "name": "npm:cssnano", "data": { - "version": "6.0.1", + "version": "6.0.2", "packageName": "cssnano", - "hash": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==" + "hash": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==" } }, "npm:cssnano-preset-default": { "type": "npm", "name": "npm:cssnano-preset-default", "data": { - "version": "6.0.1", + "version": "6.0.2", "packageName": "cssnano-preset-default", - "hash": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==" + "hash": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==" } }, "npm:cssnano-utils": { "type": "npm", "name": "npm:cssnano-utils", "data": { - "version": "4.0.0", + "version": "4.0.1", "packageName": "cssnano-utils", - "hash": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==" + "hash": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==" } }, "npm:csso": { @@ -7978,36 +8338,9 @@ "type": "npm", "name": "npm:cypress", "data": { - "version": "12.16.0", + "version": "12.17.4", "packageName": "cypress", - "hash": "sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "11.1.1", - "packageName": "fs-extra", - "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" + "hash": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==" } }, "npm:dashdash": { @@ -8064,24 +8397,6 @@ "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" } }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "0.7.0", - "packageName": "dedent", - "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" - } - }, - "npm:deep-equal": { - "type": "npm", - "name": "npm:deep-equal", - "data": { - "version": "2.2.1", - "packageName": "deep-equal", - "hash": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==" - } - }, "npm:deep-extend": { "type": "npm", "name": "npm:deep-extend", @@ -8136,6 +8451,15 @@ "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" } }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.1", + "packageName": "define-data-property", + "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" + } + }, "npm:define-lazy-prop": { "type": "npm", "name": "npm:define-lazy-prop", @@ -8149,9 +8473,9 @@ "type": "npm", "name": "npm:define-properties", "data": { - "version": "1.2.0", + "version": "1.2.1", "packageName": "define-properties", - "hash": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==" + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" } }, "npm:delayed-stream": { @@ -8163,15 +8487,6 @@ "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" } }, - "npm:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - } - }, "npm:depd": { "type": "npm", "name": "npm:depd", @@ -8199,6 +8514,15 @@ "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" } }, + "npm:dequal": { + "type": "npm", + "name": "npm:dequal", + "data": { + "version": "2.0.3", + "packageName": "dequal", + "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + } + }, "npm:destroy": { "type": "npm", "name": "npm:destroy", @@ -8208,6 +8532,15 @@ "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" } }, + "npm:destroy@1.0.4": { + "type": "npm", + "name": "npm:destroy@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "destroy", + "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" + } + }, "npm:detect-newline": { "type": "npm", "name": "npm:detect-newline", @@ -8235,6 +8568,15 @@ "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" } }, + "npm:dev-ip": { + "type": "npm", + "name": "npm:dev-ip", + "data": { + "version": "1.0.1", + "packageName": "dev-ip", + "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" + } + }, "npm:diacritics-map": { "type": "npm", "name": "npm:diacritics-map", @@ -8266,9 +8608,9 @@ "type": "npm", "name": "npm:diff-sequences", "data": { - "version": "29.4.3", + "version": "29.6.3", "packageName": "diff-sequences", - "hash": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==" + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" } }, "npm:dir-glob": { @@ -8293,9 +8635,9 @@ "type": "npm", "name": "npm:dns-packet", "data": { - "version": "5.6.0", + "version": "5.6.1", "packageName": "dns-packet", - "hash": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==" + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" } }, "npm:doctrine": { @@ -8307,27 +8649,9 @@ "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" } }, - "npm:doctrine@2.1.0": { - "type": "npm", - "name": "npm:doctrine@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, "npm:dom-serializer": { "type": "npm", "name": "npm:dom-serializer", - "data": { - "version": "1.4.1", - "packageName": "dom-serializer", - "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" - } - }, - "npm:dom-serializer@2.0.0": { - "type": "npm", - "name": "npm:dom-serializer@2.0.0", "data": { "version": "2.0.0", "packageName": "dom-serializer", @@ -8355,15 +8679,6 @@ "npm:domhandler": { "type": "npm", "name": "npm:domhandler", - "data": { - "version": "4.3.1", - "packageName": "domhandler", - "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" - } - }, - "npm:domhandler@5.0.3": { - "type": "npm", - "name": "npm:domhandler@5.0.3", "data": { "version": "5.0.3", "packageName": "domhandler", @@ -8373,15 +8688,6 @@ "npm:domutils": { "type": "npm", "name": "npm:domutils", - "data": { - "version": "2.8.0", - "packageName": "domutils", - "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" - } - }, - "npm:domutils@3.1.0": { - "type": "npm", - "name": "npm:domutils@3.1.0", "data": { "version": "3.1.0", "packageName": "domutils", @@ -8401,9 +8707,18 @@ "type": "npm", "name": "npm:dotenv", "data": { - "version": "10.0.0", + "version": "16.3.1", "packageName": "dotenv", - "hash": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" } }, "npm:duplexer": { @@ -8442,6 +8757,24 @@ "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" } }, + "npm:easy-extender": { + "type": "npm", + "name": "npm:easy-extender", + "data": { + "version": "2.3.4", + "packageName": "easy-extender", + "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" + } + }, + "npm:eazy-logger": { + "type": "npm", + "name": "npm:eazy-logger", + "data": { + "version": "4.0.1", + "packageName": "eazy-logger", + "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" + } + }, "npm:ecc-jsbn": { "type": "npm", "name": "npm:ecc-jsbn", @@ -8482,9 +8815,9 @@ "type": "npm", "name": "npm:electron-to-chromium", "data": { - "version": "1.4.447", + "version": "1.4.615", "packageName": "electron-to-chromium", - "hash": "sha512-sxX0LXh+uL41hSJsujAN86PjhrV/6c79XmpY0TvjZStV6VxIgarf8SRkUoUTuYmFcZQTemsoqo8qXOGw5npWfw==" + "hash": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==" } }, "npm:emittery": { @@ -8541,6 +8874,51 @@ "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" } }, + "npm:engine.io": { + "type": "npm", + "name": "npm:engine.io", + "data": { + "version": "6.5.4", + "packageName": "engine.io", + "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" + } + }, + "npm:engine.io-client": { + "type": "npm", + "name": "npm:engine.io-client", + "data": { + "version": "6.5.3", + "packageName": "engine.io-client", + "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" + } + }, + "npm:ws@8.11.0": { + "type": "npm", + "name": "npm:ws@8.11.0", + "data": { + "version": "8.11.0", + "packageName": "ws", + "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.15.1", + "packageName": "ws", + "hash": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==" + } + }, + "npm:engine.io-parser": { + "type": "npm", + "name": "npm:engine.io-parser", + "data": { + "version": "5.2.1", + "packageName": "engine.io-parser", + "hash": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" + } + }, "npm:enhanced-resolve": { "type": "npm", "name": "npm:enhanced-resolve", @@ -8562,15 +8940,6 @@ "npm:entities": { "type": "npm", "name": "npm:entities", - "data": { - "version": "2.2.0", - "packageName": "entities", - "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - } - }, - "npm:entities@4.5.0": { - "type": "npm", - "name": "npm:entities@4.5.0", "data": { "version": "4.5.0", "packageName": "entities", @@ -8599,9 +8968,9 @@ "type": "npm", "name": "npm:envinfo", "data": { - "version": "7.8.1", + "version": "7.11.0", "packageName": "envinfo", - "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" } }, "npm:err-code": { @@ -8644,45 +9013,27 @@ "type": "npm", "name": "npm:es-abstract", "data": { - "version": "1.21.2", + "version": "1.22.3", "packageName": "es-abstract", - "hash": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==" - } - }, - "npm:es-get-iterator": { - "type": "npm", - "name": "npm:es-get-iterator", - "data": { - "version": "1.1.3", - "packageName": "es-get-iterator", - "hash": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==" + "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" } }, "npm:es-module-lexer": { "type": "npm", "name": "npm:es-module-lexer", "data": { - "version": "1.3.0", + "version": "1.4.1", "packageName": "es-module-lexer", - "hash": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==" + "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" } }, "npm:es-set-tostringtag": { "type": "npm", "name": "npm:es-set-tostringtag", "data": { - "version": "2.0.1", + "version": "2.0.2", "packageName": "es-set-tostringtag", - "hash": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.0.0", - "packageName": "es-shim-unscopables", - "hash": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==" + "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" } }, "npm:es-to-primitive": { @@ -8698,18 +9049,27 @@ "type": "npm", "name": "npm:esbuild", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "esbuild", - "hash": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==" + "hash": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==" + } + }, + "npm:esbuild@0.18.20": { + "type": "npm", + "name": "npm:esbuild@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "esbuild", + "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" } }, "npm:esbuild-wasm": { "type": "npm", "name": "npm:esbuild-wasm", "data": { - "version": "0.17.18", + "version": "0.19.5", "packageName": "esbuild-wasm", - "hash": "sha512-h4m5zVa+KaDuRFIbH9dokMwovvkIjTQJS7/Ry+0Z1paVuS9aIkso2vdA2GmwH9GSvGX6w71WveJ3PfkoLuWaRw==" + "hash": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==" } }, "npm:escalade": { @@ -8743,243 +9103,63 @@ "type": "npm", "name": "npm:eslint", "data": { - "version": "8.15.0", - "packageName": "eslint", - "hash": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==" - } - }, - "npm:eslint@8.44.0": { - "type": "npm", - "name": "npm:eslint@8.44.0", - "data": { - "version": "8.44.0", + "version": "8.48.0", "packageName": "eslint", - "hash": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==" + "hash": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==" } }, "npm:eslint-config-prettier": { "type": "npm", "name": "npm:eslint-config-prettier", "data": { - "version": "8.1.0", + "version": "9.1.0", "packageName": "eslint-config-prettier", - "hash": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==" - } - }, - "npm:eslint-config-standard": { - "type": "npm", - "name": "npm:eslint-config-standard", - "data": { - "version": "17.1.0", - "packageName": "eslint-config-standard", - "hash": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==" - } - }, - "npm:eslint-config-standard-jsx": { - "type": "npm", - "name": "npm:eslint-config-standard-jsx", - "data": { - "version": "11.0.0", - "packageName": "eslint-config-standard-jsx", - "hash": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.7", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.8.0", - "packageName": "eslint-module-utils", - "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + "hash": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==" } }, "npm:eslint-plugin-cypress": { "type": "npm", "name": "npm:eslint-plugin-cypress", "data": { - "version": "2.13.3", + "version": "2.15.1", "packageName": "eslint-plugin-cypress", - "hash": "sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g==" - } - }, - "npm:eslint-plugin-es": { - "type": "npm", - "name": "npm:eslint-plugin-es", - "data": { - "version": "4.1.0", - "packageName": "eslint-plugin-es", - "hash": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==" - } - }, - "npm:eslint-utils@2.1.0": { - "type": "npm", - "name": "npm:eslint-utils@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "3.0.0", - "packageName": "eslint-utils", - "hash": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==" + "hash": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==" } }, - "npm:eslint-visitor-keys@1.3.0": { + "npm:eslint-scope": { "type": "npm", - "name": "npm:eslint-visitor-keys@1.3.0", + "name": "npm:eslint-scope", "data": { - "version": "1.3.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" } }, - "npm:eslint-visitor-keys@2.1.0": { + "npm:eslint-scope@5.1.1": { "type": "npm", - "name": "npm:eslint-visitor-keys@2.1.0", + "name": "npm:eslint-scope@5.1.1", "data": { - "version": "2.1.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" } }, "npm:eslint-visitor-keys": { "type": "npm", "name": "npm:eslint-visitor-keys", "data": { - "version": "3.4.1", + "version": "3.4.3", "packageName": "eslint-visitor-keys", - "hash": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.27.5", - "packageName": "eslint-plugin-import", - "hash": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==" - } - }, - "npm:json5@1.0.2": { - "type": "npm", - "name": "npm:json5@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "json5", - "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:strip-bom@3.0.0": { - "type": "npm", - "name": "npm:strip-bom@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:tsconfig-paths@3.14.2": { - "type": "npm", - "name": "npm:tsconfig-paths@3.14.2", - "data": { - "version": "3.14.2", - "packageName": "tsconfig-paths", - "hash": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:eslint-plugin-n": { - "type": "npm", - "name": "npm:eslint-plugin-n", - "data": { - "version": "15.7.0", - "packageName": "eslint-plugin-n", - "hash": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==" - } - }, - "npm:eslint-plugin-promise": { - "type": "npm", - "name": "npm:eslint-plugin-promise", - "data": { - "version": "6.1.1", - "packageName": "eslint-plugin-promise", - "hash": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.32.2", - "packageName": "eslint-plugin-react", - "hash": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==" - } - }, - "npm:resolve@2.0.0-next.4": { - "type": "npm", - "name": "npm:resolve@2.0.0-next.4", - "data": { - "version": "2.0.0-next.4", - "packageName": "resolve", - "hash": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.2", - "packageName": "resolve", - "hash": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==" + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" } }, "npm:espree": { "type": "npm", "name": "npm:espree", "data": { - "version": "9.6.0", + "version": "9.6.1", "packageName": "espree", - "hash": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==" + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" } }, "npm:esprima": { @@ -9009,6 +9189,24 @@ "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" } }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, "npm:esutils": { "type": "npm", "name": "npm:esutils", @@ -9063,6 +9261,15 @@ "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" } }, + "npm:eventemitter3@5.0.1": { + "type": "npm", + "name": "npm:eventemitter3@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "eventemitter3", + "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" + } + }, "npm:events": { "type": "npm", "name": "npm:events", @@ -9072,42 +9279,6 @@ "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" } }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "341129833107810678" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "3348982168836855660" - } - }, "npm:executable": { "type": "npm", "name": "npm:executable", @@ -9153,33 +9324,6 @@ "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" } }, - "npm:isarray@1.0.0": { - "type": "npm", - "name": "npm:isarray@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isarray@0.0.1": { - "type": "npm", - "name": "npm:isarray@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "isarray", - "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, "npm:isobject@2.1.0": { "type": "npm", "name": "npm:isobject@2.1.0", @@ -9202,9 +9346,9 @@ "type": "npm", "name": "npm:expect", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "expect", - "hash": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==" + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" } }, "npm:exponential-backoff": { @@ -9243,6 +9387,33 @@ "hash": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==" } }, + "npm:isarray@0.0.1": { + "type": "npm", + "name": "npm:isarray@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, + "npm:isarray@2.0.5": { + "type": "npm", + "name": "npm:isarray@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, "npm:path-to-regexp@1.8.0": { "type": "npm", "name": "npm:path-to-regexp@1.8.0", @@ -9261,6 +9432,24 @@ "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" } }, + "npm:finalhandler@1.2.0": { + "type": "npm", + "name": "npm:finalhandler@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.0", + "packageName": "finalhandler", + "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" + } + }, "npm:raw-body@2.5.1": { "type": "npm", "name": "npm:raw-body@2.5.1", @@ -9279,6 +9468,78 @@ "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" } }, + "npm:send@0.18.0": { + "type": "npm", + "name": "npm:send@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.16.2", + "packageName": "send", + "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" + } + }, + "npm:serve-static@1.15.0": { + "type": "npm", + "name": "npm:serve-static@1.15.0", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.13.2", + "packageName": "serve-static", + "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" + } + }, + "npm:statuses@2.0.1": { + "type": "npm", + "name": "npm:statuses@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:statuses@1.4.0": { + "type": "npm", + "name": "npm:statuses@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "statuses", + "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "1.3.1", + "packageName": "statuses", + "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" + } + }, "npm:ext-list": { "type": "npm", "name": "npm:ext-list", @@ -9391,9 +9652,9 @@ "type": "npm", "name": "npm:fast-redact", "data": { - "version": "3.2.0", + "version": "3.3.0", "packageName": "fast-redact", - "hash": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==" + "hash": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==" } }, "npm:fast-safe-stringify": { @@ -9409,9 +9670,9 @@ "type": "npm", "name": "npm:fastq", "data": { - "version": "1.15.0", + "version": "1.16.0", "packageName": "fastq", - "hash": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==" + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" } }, "npm:faye-websocket": { @@ -9441,33 +9702,6 @@ "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" } }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:figures@6.0.1": { - "type": "npm", - "name": "npm:figures@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "figures", - "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" - } - }, - "npm:figures@2.0.0": { - "type": "npm", - "name": "npm:figures@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "figures", - "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" - } - }, "npm:file-entry-cache": { "type": "npm", "name": "npm:file-entry-cache", @@ -9513,60 +9747,6 @@ "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" } }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:find-up@2.1.0": { - "type": "npm", - "name": "npm:find-up@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-up", - "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" - } - }, - "npm:find-up@5.0.0": { - "type": "npm", - "name": "npm:find-up@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, "npm:find-up-simple": { "type": "npm", "name": "npm:find-up-simple", @@ -9598,27 +9778,27 @@ "type": "npm", "name": "npm:flat-cache", "data": { - "version": "3.0.4", + "version": "3.2.0", "packageName": "flat-cache", - "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" } }, "npm:flatted": { "type": "npm", "name": "npm:flatted", "data": { - "version": "3.2.7", + "version": "3.2.9", "packageName": "flatted", - "hash": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" } }, "npm:follow-redirects": { "type": "npm", "name": "npm:follow-redirects", "data": { - "version": "1.15.2", + "version": "1.15.3", "packageName": "follow-redirects", - "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + "hash": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" } }, "npm:for-each": { @@ -9684,6 +9864,24 @@ "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" } }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:form-data@4.0.0": { + "type": "npm", + "name": "npm:form-data@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, "npm:forwarded": { "type": "npm", "name": "npm:forwarded", @@ -9697,9 +9895,9 @@ "type": "npm", "name": "npm:fraction.js", "data": { - "version": "4.2.0", + "version": "4.3.7", "packageName": "fraction.js", - "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" } }, "npm:fresh": { @@ -9732,19 +9930,10 @@ "npm:fs-minipass": { "type": "npm", "name": "npm:fs-minipass", - "data": { - "version": "3.0.2", - "packageName": "fs-minipass", - "hash": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==" - } - }, - "npm:fs-minipass@3.0.3": { - "type": "npm", - "name": "npm:fs-minipass@3.0.3", "data": { "version": "3.0.3", "packageName": "fs-minipass", - "hash": "9283175188910202019" + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" } }, "npm:fs-minipass@2.1.0": { @@ -9760,9 +9949,9 @@ "type": "npm", "name": "npm:fs-monkey", "data": { - "version": "1.0.4", + "version": "1.0.5", "packageName": "fs-monkey", - "hash": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==" + "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" } }, "npm:fs.realpath": { @@ -9778,45 +9967,27 @@ "type": "npm", "name": "npm:fsevents", "data": { - "version": "2.3.2", + "version": "2.3.3", "packageName": "fsevents", - "hash": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" } }, "npm:function-bind": { "type": "npm", "name": "npm:function-bind", - "data": { - "version": "1.1.1", - "packageName": "function-bind", - "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - } - }, - "npm:function-bind@1.1.2": { - "type": "npm", - "name": "npm:function-bind@1.1.2", "data": { "version": "1.1.2", "packageName": "function-bind", - "hash": "18249092172207658379" + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" } }, "npm:function.prototype.name": { "type": "npm", "name": "npm:function.prototype.name", "data": { - "version": "1.1.5", + "version": "1.1.6", "packageName": "function.prototype.name", - "hash": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==" - } - }, - "npm:functional-red-black-tree": { - "type": "npm", - "name": "npm:functional-red-black-tree", - "data": { - "version": "1.0.1", - "packageName": "functional-red-black-tree", - "hash": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" + "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" } }, "npm:functions-have-names": { @@ -9828,24 +9999,6 @@ "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" } }, - "npm:gauge": { - "type": "npm", - "name": "npm:gauge", - "data": { - "version": "4.0.4", - "packageName": "gauge", - "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" - } - }, - "npm:gauge@5.0.1": { - "type": "npm", - "name": "npm:gauge@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "gauge", - "hash": "11205983861061131040" - } - }, "npm:gensync": { "type": "npm", "name": "npm:gensync", @@ -9868,9 +10021,9 @@ "type": "npm", "name": "npm:get-intrinsic", "data": { - "version": "1.2.1", + "version": "1.2.2", "packageName": "get-intrinsic", - "hash": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==" + "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" } }, "npm:get-package-type": { @@ -9882,15 +10035,6 @@ "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" } }, - "npm:get-stdin": { - "type": "npm", - "name": "npm:get-stdin", - "data": { - "version": "8.0.0", - "packageName": "get-stdin", - "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" - } - }, "npm:get-symbol-description": { "type": "npm", "name": "npm:get-symbol-description", @@ -9990,15 +10134,6 @@ "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" } }, - "npm:grapheme-splitter": { - "type": "npm", - "name": "npm:grapheme-splitter", - "data": { - "version": "1.0.4", - "packageName": "grapheme-splitter", - "hash": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" - } - }, "npm:graphemer": { "type": "npm", "name": "npm:graphemer", @@ -10048,27 +10183,9 @@ "type": "npm", "name": "npm:handlebars", "data": { - "version": "4.7.7", + "version": "4.7.8", "packageName": "handlebars", - "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" - } - }, - "npm:har-schema": { - "type": "npm", - "name": "npm:har-schema", - "data": { - "version": "2.0.0", - "packageName": "har-schema", - "hash": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" - } - }, - "npm:har-validator": { - "type": "npm", - "name": "npm:har-validator", - "data": { - "version": "5.1.5", - "packageName": "har-validator", - "hash": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==" + "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" } }, "npm:harmony-reflect": { @@ -10080,15 +10197,6 @@ "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" } }, - "npm:has": { - "type": "npm", - "name": "npm:has", - "data": { - "version": "1.0.3", - "packageName": "has", - "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" - } - }, "npm:has-bigints": { "type": "npm", "name": "npm:has-bigints", @@ -10102,9 +10210,9 @@ "type": "npm", "name": "npm:has-property-descriptors", "data": { - "version": "1.0.0", + "version": "1.0.1", "packageName": "has-property-descriptors", - "hash": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==" + "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" } }, "npm:has-proto": { @@ -10134,13 +10242,13 @@ "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" } }, - "npm:has-unicode": { + "npm:hasown": { "type": "npm", - "name": "npm:has-unicode", + "name": "npm:hasown", "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" } }, "npm:hdr-histogram-js": { @@ -10179,6 +10287,24 @@ "hash": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==" } }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "7.0.1", + "packageName": "hosted-git-info", + "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, "npm:hpack.js": { "type": "npm", "name": "npm:hpack.js", @@ -10215,6 +10341,15 @@ "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" } }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "8.0.2", + "packageName": "htmlparser2", + "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" + } + }, "npm:http-cache-semantics": { "type": "npm", "name": "npm:http-cache-semantics", @@ -10278,24 +10413,6 @@ "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" } }, - "npm:is-plain-obj@3.0.0": { - "type": "npm", - "name": "npm:is-plain-obj@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, "npm:http-server": { "type": "npm", "name": "npm:http-server", @@ -10314,15 +10431,6 @@ "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" } }, - "npm:http-signature@1.2.0": { - "type": "npm", - "name": "npm:http-signature@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "http-signature", - "hash": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==" - } - }, "npm:http-status-codes": { "type": "npm", "name": "npm:http-status-codes", @@ -10341,13 +10449,22 @@ "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" } }, - "npm:humanize-ms": { + "npm:https-proxy-agent": { "type": "npm", - "name": "npm:humanize-ms", + "name": "npm:https-proxy-agent", "data": { - "version": "1.2.1", - "packageName": "humanize-ms", - "hash": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==" + "version": "7.0.2", + "packageName": "https-proxy-agent", + "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" + } + }, + "npm:https-proxy-agent@5.0.1": { + "type": "npm", + "name": "npm:https-proxy-agent@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" } }, "npm:husky": { @@ -10390,27 +10507,18 @@ "type": "npm", "name": "npm:ignore", "data": { - "version": "5.2.4", + "version": "5.3.0", "packageName": "ignore", - "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" } }, "npm:ignore-walk": { "type": "npm", "name": "npm:ignore-walk", - "data": { - "version": "6.0.3", - "packageName": "ignore-walk", - "hash": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==" - } - }, - "npm:ignore-walk@6.0.4": { - "type": "npm", - "name": "npm:ignore-walk@6.0.4", "data": { "version": "6.0.4", "packageName": "ignore-walk", - "hash": "16689579619212849223" + "hash": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==" } }, "npm:image-size": { @@ -10426,9 +10534,18 @@ "type": "npm", "name": "npm:immutable", "data": { - "version": "4.3.0", + "version": "3.8.2", + "packageName": "immutable", + "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" + } + }, + "npm:immutable@4.3.4": { + "type": "npm", + "name": "npm:immutable@4.3.4", + "data": { + "version": "4.3.4", "packageName": "immutable", - "hash": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==" + "hash": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" } }, "npm:import-fresh": { @@ -10534,18 +10651,18 @@ "type": "npm", "name": "npm:inquirer-autocomplete-prompt", "data": { - "version": "2.0.0", + "version": "2.0.1", "packageName": "inquirer-autocomplete-prompt", - "hash": "sha512-c2LljLP3ewVJe4AUZzKdA6oWjqhpy5pfsisHAjh7mP3WUQ/O02x5OLMMqcLOYuRHx6i2hlVSIhUv0xYGyFxFYA==" + "hash": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==" } }, "npm:internal-slot": { "type": "npm", "name": "npm:internal-slot", "data": { - "version": "1.0.5", + "version": "1.0.6", "packageName": "internal-slot", - "hash": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==" + "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" } }, "npm:into-stream": { @@ -10584,15 +10701,6 @@ "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" } }, - "npm:is-arguments": { - "type": "npm", - "name": "npm:is-arguments", - "data": { - "version": "1.1.1", - "packageName": "is-arguments", - "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" - } - }, "npm:is-array-buffer": { "type": "npm", "name": "npm:is-array-buffer", @@ -10668,19 +10776,10 @@ "npm:is-core-module": { "type": "npm", "name": "npm:is-core-module", - "data": { - "version": "2.12.1", - "packageName": "is-core-module", - "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" - } - }, - "npm:is-core-module@2.13.1": { - "type": "npm", - "name": "npm:is-core-module@2.13.1", "data": { "version": "2.13.1", "packageName": "is-core-module", - "hash": "1088848723806808446" + "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" } }, "npm:is-date-object": { @@ -10732,18 +10831,18 @@ "type": "npm", "name": "npm:is-fullwidth-code-point", "data": { - "version": "4.0.0", + "version": "3.0.0", "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" } }, - "npm:is-fullwidth-code-point@3.0.0": { + "npm:is-fullwidth-code-point@4.0.0": { "type": "npm", - "name": "npm:is-fullwidth-code-point@3.0.0", + "name": "npm:is-fullwidth-code-point@4.0.0", "data": { - "version": "3.0.0", + "version": "4.0.0", "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" } }, "npm:is-generator-fn": { @@ -10791,15 +10890,6 @@ "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" } }, - "npm:is-map": { - "type": "npm", - "name": "npm:is-map", - "data": { - "version": "2.0.2", - "packageName": "is-map", - "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" - } - }, "npm:is-negative-zero": { "type": "npm", "name": "npm:is-negative-zero", @@ -10836,6 +10926,15 @@ "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" } }, + "npm:is-number-like": { + "type": "npm", + "name": "npm:is-number-like", + "data": { + "version": "1.0.8", + "packageName": "is-number-like", + "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" + } + }, "npm:is-number-object": { "type": "npm", "name": "npm:is-number-object", @@ -10863,6 +10962,24 @@ "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" } }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, "npm:is-plain-object": { "type": "npm", "name": "npm:is-plain-object", @@ -10899,15 +11016,6 @@ "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" } }, - "npm:is-set": { - "type": "npm", - "name": "npm:is-set", - "data": { - "version": "2.0.2", - "packageName": "is-set", - "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" - } - }, "npm:is-shared-array-buffer": { "type": "npm", "name": "npm:is-shared-array-buffer", @@ -10948,9 +11056,9 @@ "type": "npm", "name": "npm:is-typed-array", "data": { - "version": "1.1.10", + "version": "1.1.12", "packageName": "is-typed-array", - "hash": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==" + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" } }, "npm:is-typedarray": { @@ -10962,33 +11070,6 @@ "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" } }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-unicode-supported@2.0.0": { - "type": "npm", - "name": "npm:is-unicode-supported@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-unicode-supported", - "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" - } - }, - "npm:is-weakmap": { - "type": "npm", - "name": "npm:is-weakmap", - "data": { - "version": "2.0.1", - "packageName": "is-weakmap", - "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" - } - }, "npm:is-weakref": { "type": "npm", "name": "npm:is-weakref", @@ -10998,15 +11079,6 @@ "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" } }, - "npm:is-weakset": { - "type": "npm", - "name": "npm:is-weakset", - "data": { - "version": "2.0.2", - "packageName": "is-weakset", - "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" - } - }, "npm:is-what": { "type": "npm", "name": "npm:is-what", @@ -11025,22 +11097,13 @@ "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" } }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isexe@3.1.1": { + "npm:is-wsl@1.1.0": { "type": "npm", - "name": "npm:isexe@3.1.1", + "name": "npm:is-wsl@1.1.0", "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "12947349301482897918" + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" } }, "npm:isstream": { @@ -11065,27 +11128,18 @@ "type": "npm", "name": "npm:istanbul-lib-coverage", "data": { - "version": "3.2.0", + "version": "3.2.2", "packageName": "istanbul-lib-coverage", - "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" } }, "npm:istanbul-lib-report": { "type": "npm", "name": "npm:istanbul-lib-report", "data": { - "version": "3.0.0", + "version": "3.0.1", "packageName": "istanbul-lib-report", - "hash": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" } }, "npm:istanbul-lib-source-maps": { @@ -11101,27 +11155,18 @@ "type": "npm", "name": "npm:istanbul-reports", "data": { - "version": "3.1.5", + "version": "3.1.6", "packageName": "istanbul-reports", - "hash": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==" + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" } }, "npm:jackspeak": { "type": "npm", "name": "npm:jackspeak", - "data": { - "version": "2.2.1", - "packageName": "jackspeak", - "hash": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==" - } - }, - "npm:jackspeak@2.3.6": { - "type": "npm", - "name": "npm:jackspeak@2.3.6", "data": { "version": "2.3.6", "packageName": "jackspeak", - "hash": "10023275040098202367" + "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" } }, "npm:jake": { @@ -11146,144 +11191,153 @@ "type": "npm", "name": "npm:jest", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest", - "hash": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==" + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" } }, "npm:jest-changed-files": { "type": "npm", "name": "npm:jest-changed-files", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-changed-files", - "hash": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==" + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" } }, "npm:jest-circus": { "type": "npm", "name": "npm:jest-circus", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-circus", - "hash": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==" + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:dedent@1.5.1": { + "type": "npm", + "name": "npm:dedent@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" } }, "npm:jest-cli": { "type": "npm", "name": "npm:jest-cli", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-cli", - "hash": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==" + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" } }, "npm:jest-config": { "type": "npm", "name": "npm:jest-config", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-config", - "hash": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==" + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" } }, "npm:jest-diff": { "type": "npm", "name": "npm:jest-diff", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-diff", - "hash": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==" + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" } }, "npm:jest-docblock": { "type": "npm", "name": "npm:jest-docblock", "data": { - "version": "29.4.3", + "version": "29.7.0", "packageName": "jest-docblock", - "hash": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==" + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" } }, "npm:jest-each": { "type": "npm", "name": "npm:jest-each", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-each", - "hash": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==" + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" } }, "npm:jest-environment-jsdom": { "type": "npm", "name": "npm:jest-environment-jsdom", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-environment-jsdom", - "hash": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==" + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" } }, "npm:jest-environment-node": { "type": "npm", "name": "npm:jest-environment-node", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-environment-node", - "hash": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==" + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" } }, "npm:jest-get-type": { "type": "npm", "name": "npm:jest-get-type", "data": { - "version": "29.4.3", + "version": "29.6.3", "packageName": "jest-get-type", - "hash": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==" + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" } }, "npm:jest-haste-map": { "type": "npm", "name": "npm:jest-haste-map", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-haste-map", - "hash": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==" + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" } }, "npm:jest-leak-detector": { "type": "npm", "name": "npm:jest-leak-detector", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-leak-detector", - "hash": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==" + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" } }, "npm:jest-matcher-utils": { "type": "npm", "name": "npm:jest-matcher-utils", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-matcher-utils", - "hash": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==" + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" } }, "npm:jest-message-util": { "type": "npm", "name": "npm:jest-message-util", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-message-util", - "hash": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==" + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" } }, "npm:jest-mock": { "type": "npm", "name": "npm:jest-mock", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-mock", - "hash": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==" + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" } }, "npm:jest-pnp-resolver": { @@ -11299,36 +11353,36 @@ "type": "npm", "name": "npm:jest-preset-angular", "data": { - "version": "13.1.1", + "version": "13.1.4", "packageName": "jest-preset-angular", - "hash": "sha512-X8i7icKt9U5uhj7YKqdEZm7ZZPvNFRxfBnU+9SALdIkHYJhwtlJ5/MUk9wo4f3lX2smOkIl9LPJUu1APO+11Jg==" + "hash": "sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==" } }, "npm:jest-regex-util": { "type": "npm", "name": "npm:jest-regex-util", "data": { - "version": "29.4.3", + "version": "29.6.3", "packageName": "jest-regex-util", - "hash": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==" + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" } }, "npm:jest-resolve": { "type": "npm", "name": "npm:jest-resolve", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-resolve", - "hash": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==" + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" } }, "npm:jest-resolve-dependencies": { "type": "npm", "name": "npm:jest-resolve-dependencies", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-resolve-dependencies", - "hash": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==" + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" } }, "npm:resolve.exports@2.0.2": { @@ -11353,63 +11407,63 @@ "type": "npm", "name": "npm:jest-runner", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-runner", - "hash": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==" + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" } }, "npm:jest-runtime": { "type": "npm", "name": "npm:jest-runtime", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-runtime", - "hash": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==" + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" } }, "npm:jest-snapshot": { "type": "npm", "name": "npm:jest-snapshot", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-snapshot", - "hash": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==" + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" } }, "npm:jest-util": { "type": "npm", "name": "npm:jest-util", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-util", - "hash": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==" + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" } }, "npm:jest-validate": { "type": "npm", "name": "npm:jest-validate", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-validate", - "hash": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==" + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" } }, "npm:jest-watcher": { "type": "npm", "name": "npm:jest-watcher", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-watcher", - "hash": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==" + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" } }, "npm:jest-worker": { "type": "npm", "name": "npm:jest-worker", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "jest-worker", - "hash": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==" + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" } }, "npm:jest-worker@27.5.1": { @@ -11421,6 +11475,15 @@ "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" } }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "1.21.0", + "packageName": "jiti", + "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" + } + }, "npm:jju": { "type": "npm", "name": "npm:jju", @@ -11457,51 +11520,6 @@ "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" } }, - "npm:tough-cookie@4.1.3": { - "type": "npm", - "name": "npm:tough-cookie@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "2.5.0", - "packageName": "tough-cookie", - "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.0", - "packageName": "universalify", - "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - } - }, "npm:jsesc": { "type": "npm", "name": "npm:jsesc", @@ -11556,15 +11574,6 @@ "hash": "12902821898341430299" } }, - "npm:json-parse-even-better-errors@3.0.0": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" - } - }, "npm:json-parse-helpfulerror": { "type": "npm", "name": "npm:json-parse-helpfulerror", @@ -11587,9 +11596,9 @@ "type": "npm", "name": "npm:json-server", "data": { - "version": "0.17.3", + "version": "0.17.4", "packageName": "json-server", - "hash": "sha512-LDNOvleTv3rPAcefzXZpXMDZshV0FtSzWo8ZjnTOhKm4OCiUvsYGrGrfz4iHXIFd+UbRgFHm6gcOHI/BSZ/3fw==" + "hash": "sha512-bGBb0WtFuAKbgI7JV3A864irWnMZSvBYRJbohaOuatHwKSRFUfqtQlrYMrB6WbalXy/cJabyjlb7JkHli6dYjQ==" } }, "npm:json-stable-stringify-without-jsonify": { @@ -11610,13 +11619,22 @@ "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" } }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, "npm:jsonc-eslint-parser": { "type": "npm", "name": "npm:jsonc-eslint-parser", "data": { - "version": "2.3.0", + "version": "2.4.0", "packageName": "jsonc-eslint-parser", - "hash": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==" + "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" } }, "npm:jsonc-parser": { @@ -11628,24 +11646,6 @@ "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" } }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonfile@5.0.0": { - "type": "npm", - "name": "npm:jsonfile@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "jsonfile", - "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" - } - }, "npm:jsonparse": { "type": "npm", "name": "npm:jsonparse", @@ -11668,9 +11668,9 @@ "type": "npm", "name": "npm:jsonwebtoken", "data": { - "version": "9.0.0", + "version": "9.0.2", "packageName": "jsonwebtoken", - "hash": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==" + "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" } }, "npm:jsprim": { @@ -11682,24 +11682,6 @@ "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" } }, - "npm:jsprim@1.4.2": { - "type": "npm", - "name": "npm:jsprim@1.4.2", - "data": { - "version": "1.4.2", - "packageName": "jsprim", - "hash": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.3.4", - "packageName": "jsx-ast-utils", - "hash": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==" - } - }, "npm:jwa": { "type": "npm", "name": "npm:jwa", @@ -11740,9 +11722,9 @@ "type": "npm", "name": "npm:keyv", "data": { - "version": "4.5.2", + "version": "4.5.4", "packageName": "keyv", - "hash": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==" + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" } }, "npm:kleur": { @@ -11776,9 +11758,9 @@ "type": "npm", "name": "npm:launch-editor", "data": { - "version": "2.6.0", + "version": "2.6.1", "packageName": "launch-editor", - "hash": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==" + "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" } }, "npm:lazy-ass": { @@ -11799,15 +11781,6 @@ "hash": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==" } }, - "npm:less": { - "type": "npm", - "name": "npm:less", - "data": { - "version": "4.1.3", - "packageName": "less", - "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" - } - }, "npm:less-loader": { "type": "npm", "name": "npm:less-loader", @@ -11817,51 +11790,6 @@ "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" } }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, "npm:leven": { "type": "npm", "name": "npm:leven", @@ -11892,19 +11820,37 @@ "npm:lilconfig": { "type": "npm", "name": "npm:lilconfig", + "data": { + "version": "3.0.0", + "packageName": "lilconfig", + "hash": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==" + } + }, + "npm:lilconfig@2.1.0": { + "type": "npm", + "name": "npm:lilconfig@2.1.0", "data": { "version": "2.1.0", "packageName": "lilconfig", "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" } }, + "npm:limiter": { + "type": "npm", + "name": "npm:limiter", + "data": { + "version": "1.1.5", + "packageName": "limiter", + "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" + } + }, "npm:lines-and-columns": { "type": "npm", "name": "npm:lines-and-columns", "data": { - "version": "2.0.3", + "version": "2.0.4", "packageName": "lines-and-columns", - "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" } }, "npm:lines-and-columns@1.2.4": { @@ -11920,18 +11866,18 @@ "type": "npm", "name": "npm:lint-staged", "data": { - "version": "13.2.3", + "version": "13.3.0", "packageName": "lint-staged", - "hash": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==" + "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" } }, - "npm:listr2@5.0.8": { + "npm:listr2@6.6.1": { "type": "npm", - "name": "npm:listr2@5.0.8", + "name": "npm:listr2@6.6.1", "data": { - "version": "5.0.8", + "version": "6.6.1", "packageName": "listr2", - "hash": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==" + "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" } }, "npm:listr2": { @@ -11943,13 +11889,49 @@ "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" } }, - "npm:slice-ansi@3.0.0": { + "npm:log-update@5.0.1": { "type": "npm", - "name": "npm:slice-ansi@3.0.0", + "name": "npm:log-update@5.0.1", "data": { - "version": "3.0.0", + "version": "5.0.1", + "packageName": "log-update", + "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:restore-cursor@4.0.0": { + "type": "npm", + "name": "npm:restore-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "restore-cursor", + "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:slice-ansi@5.0.0": { + "type": "npm", + "name": "npm:slice-ansi@5.0.0", + "data": { + "version": "5.0.0", "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" } }, "npm:slice-ansi@4.0.0": { @@ -11965,9 +11947,9 @@ "type": "npm", "name": "npm:slice-ansi", "data": { - "version": "5.0.0", + "version": "3.0.0", "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" } }, "npm:yaml@2.3.1": { @@ -12006,13 +11988,22 @@ "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" } }, - "npm:load-json-file@5.3.0": { + "npm:strip-bom@3.0.0": { "type": "npm", - "name": "npm:load-json-file@5.3.0", + "name": "npm:strip-bom@3.0.0", "data": { - "version": "5.3.0", - "packageName": "load-json-file", - "hash": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==" + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" } }, "npm:loader-runner": { @@ -12024,40 +12015,58 @@ "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" } }, - "npm:locate-path": { + "npm:localtunnel": { "type": "npm", - "name": "npm:locate-path", + "name": "npm:localtunnel", "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + "version": "2.0.2", + "packageName": "localtunnel", + "hash": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==" } }, - "npm:locate-path@3.0.0": { + "npm:yargs@17.1.1": { "type": "npm", - "name": "npm:locate-path@3.0.0", + "name": "npm:yargs@17.1.1", "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + "version": "17.1.1", + "packageName": "yargs", + "hash": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==" } }, - "npm:locate-path@2.0.0": { + "npm:yargs@16.2.0": { "type": "npm", - "name": "npm:locate-path@2.0.0", + "name": "npm:yargs@16.2.0", "data": { - "version": "2.0.0", - "packageName": "locate-path", - "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" } }, - "npm:locate-path@6.0.0": { + "npm:yargs": { "type": "npm", - "name": "npm:locate-path@6.0.0", + "name": "npm:yargs", "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yargs-parser@20.2.9": { + "type": "npm", + "name": "npm:yargs-parser@20.2.9", + "data": { + "version": "20.2.9", + "packageName": "yargs-parser", + "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" } }, "npm:lockfile": { @@ -12132,6 +12141,51 @@ "hash": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" } }, + "npm:lodash.includes": { + "type": "npm", + "name": "npm:lodash.includes", + "data": { + "version": "4.3.0", + "packageName": "lodash.includes", + "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" + } + }, + "npm:lodash.isboolean": { + "type": "npm", + "name": "npm:lodash.isboolean", + "data": { + "version": "3.0.3", + "packageName": "lodash.isboolean", + "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + } + }, + "npm:lodash.isfinite": { + "type": "npm", + "name": "npm:lodash.isfinite", + "data": { + "version": "3.3.2", + "packageName": "lodash.isfinite", + "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" + } + }, + "npm:lodash.isinteger": { + "type": "npm", + "name": "npm:lodash.isinteger", + "data": { + "version": "4.0.4", + "packageName": "lodash.isinteger", + "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" + } + }, + "npm:lodash.isnumber": { + "type": "npm", + "name": "npm:lodash.isnumber", + "data": { + "version": "3.0.3", + "packageName": "lodash.isnumber", + "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + } + }, "npm:lodash.isplainobject": { "type": "npm", "name": "npm:lodash.isplainobject", @@ -12222,24 +12276,6 @@ "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" } }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, "npm:lowdb": { "type": "npm", "name": "npm:lowdb", @@ -12270,19 +12306,10 @@ "npm:make-fetch-happen": { "type": "npm", "name": "npm:make-fetch-happen", - "data": { - "version": "11.1.1", - "packageName": "make-fetch-happen", - "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" - } - }, - "npm:make-fetch-happen@13.0.0": { - "type": "npm", - "name": "npm:make-fetch-happen@13.0.0", "data": { "version": "13.0.0", "packageName": "make-fetch-happen", - "hash": "7528465726135027139" + "hash": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==" } }, "npm:makeerror": { @@ -12469,9 +12496,9 @@ "type": "npm", "name": "npm:minipass", "data": { - "version": "5.0.0", + "version": "7.0.4", "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" } }, "npm:minipass@3.3.6": { @@ -12483,49 +12510,31 @@ "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" } }, - "npm:minipass@7.0.4": { + "npm:minipass@5.0.0": { "type": "npm", - "name": "npm:minipass@7.0.4", + "name": "npm:minipass@5.0.0", "data": { - "version": "7.0.4", + "version": "5.0.0", "packageName": "minipass", - "hash": "10137614760203815997" + "hash": "967233070033727926" } }, "npm:minipass-collect": { "type": "npm", "name": "npm:minipass-collect", - "data": { - "version": "1.0.2", - "packageName": "minipass-collect", - "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" - } - }, - "npm:minipass-collect@2.0.1": { - "type": "npm", - "name": "npm:minipass-collect@2.0.1", "data": { "version": "2.0.1", "packageName": "minipass-collect", - "hash": "6286271237527683964" + "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" } }, "npm:minipass-fetch": { "type": "npm", "name": "npm:minipass-fetch", - "data": { - "version": "3.0.3", - "packageName": "minipass-fetch", - "hash": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==" - } - }, - "npm:minipass-fetch@3.0.4": { - "type": "npm", - "name": "npm:minipass-fetch@3.0.4", "data": { "version": "3.0.4", "packageName": "minipass-fetch", - "hash": "8956990235727874625" + "hash": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==" } }, "npm:minipass-flush": { @@ -12573,6 +12582,15 @@ "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" } }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "1.2.0", + "packageName": "mitt", + "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" + } + }, "npm:mixin-deep": { "type": "npm", "name": "npm:mixin-deep", @@ -12591,24 +12609,6 @@ "hash": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==" } }, - "npm:on-finished@2.3.0": { - "type": "npm", - "name": "npm:on-finished@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, "npm:mrmime": { "type": "npm", "name": "npm:mrmime", @@ -12627,24 +12627,6 @@ "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" } }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "0.0.8", - "packageName": "mute-stream", - "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - } - }, - "npm:mute-stream@1.0.0": { - "type": "npm", - "name": "npm:mute-stream@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "16115303212711239780" - } - }, "npm:mv": { "type": "npm", "name": "npm:mv", @@ -12694,9 +12676,9 @@ "type": "npm", "name": "npm:nanoid", "data": { - "version": "3.3.6", + "version": "3.3.7", "packageName": "nanoid", - "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" } }, "npm:natural-compare": { @@ -12708,15 +12690,6 @@ "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" } }, - "npm:natural-compare-lite": { - "type": "npm", - "name": "npm:natural-compare-lite", - "data": { - "version": "1.4.0", - "packageName": "natural-compare-lite", - "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" - } - }, "npm:ncp": { "type": "npm", "name": "npm:ncp", @@ -12730,9 +12703,9 @@ "type": "npm", "name": "npm:needle", "data": { - "version": "3.2.0", + "version": "3.3.1", "packageName": "needle", - "hash": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==" + "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" } }, "npm:negotiator": { @@ -12882,28 +12855,19 @@ "npm:node-gyp": { "type": "npm", "name": "npm:node-gyp", - "data": { - "version": "9.4.0", - "packageName": "node-gyp", - "hash": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==" - } - }, - "npm:node-gyp@10.0.1": { - "type": "npm", - "name": "npm:node-gyp@10.0.1", "data": { "version": "10.0.1", "packageName": "node-gyp", - "hash": "16415563419608742726" + "hash": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==" } }, "npm:node-gyp-build": { "type": "npm", "name": "npm:node-gyp-build", "data": { - "version": "4.6.0", + "version": "4.7.1", "packageName": "node-gyp-build", - "hash": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==" + "hash": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==" } }, "npm:node-int64": { @@ -12915,31 +12879,49 @@ "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" } }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, "npm:node-releases": { "type": "npm", "name": "npm:node-releases", "data": { - "version": "2.0.12", + "version": "2.0.14", "packageName": "node-releases", - "hash": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" + "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" } }, "npm:nopt": { "type": "npm", "name": "npm:nopt", "data": { - "version": "6.0.0", + "version": "7.2.0", "packageName": "nopt", - "hash": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" + "hash": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==" } }, - "npm:nopt@7.2.0": { + "npm:normalize-package-data": { "type": "npm", - "name": "npm:nopt@7.2.0", + "name": "npm:normalize-package-data", "data": { - "version": "7.2.0", - "packageName": "nopt", - "hash": "5342237565931378178" + "version": "6.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" + } + }, + "npm:normalize-package-data@2.5.0": { + "type": "npm", + "name": "npm:normalize-package-data@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" } }, "npm:normalize-path": { @@ -12981,19 +12963,10 @@ "npm:npm-install-checks": { "type": "npm", "name": "npm:npm-install-checks", - "data": { - "version": "6.1.1", - "packageName": "npm-install-checks", - "hash": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==" - } - }, - "npm:npm-install-checks@6.3.0": { - "type": "npm", - "name": "npm:npm-install-checks@6.3.0", "data": { "version": "6.3.0", "packageName": "npm-install-checks", - "hash": "6033146002159595593" + "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" } }, "npm:npm-normalize-package-bin": { @@ -13008,73 +12981,37 @@ "npm:npm-package-arg": { "type": "npm", "name": "npm:npm-package-arg", - "data": { - "version": "10.1.0", - "packageName": "npm-package-arg", - "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" - } - }, - "npm:npm-package-arg@11.0.1": { - "type": "npm", - "name": "npm:npm-package-arg@11.0.1", "data": { "version": "11.0.1", "packageName": "npm-package-arg", - "hash": "7582532888618332007" + "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" } }, "npm:npm-packlist": { "type": "npm", "name": "npm:npm-packlist", - "data": { - "version": "7.0.4", - "packageName": "npm-packlist", - "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" - } - }, - "npm:npm-packlist@8.0.1": { - "type": "npm", - "name": "npm:npm-packlist@8.0.1", "data": { "version": "8.0.1", "packageName": "npm-packlist", - "hash": "17171210598504663350" + "hash": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==" } }, "npm:npm-pick-manifest": { "type": "npm", "name": "npm:npm-pick-manifest", - "data": { - "version": "8.0.1", - "packageName": "npm-pick-manifest", - "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" - } - }, - "npm:npm-pick-manifest@9.0.0": { - "type": "npm", - "name": "npm:npm-pick-manifest@9.0.0", "data": { "version": "9.0.0", "packageName": "npm-pick-manifest", - "hash": "8809466789689825313" + "hash": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==" } }, "npm:npm-registry-fetch": { "type": "npm", "name": "npm:npm-registry-fetch", - "data": { - "version": "14.0.5", - "packageName": "npm-registry-fetch", - "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" - } - }, - "npm:npm-registry-fetch@16.1.0": { - "type": "npm", - "name": "npm:npm-registry-fetch@16.1.0", "data": { "version": "16.1.0", "packageName": "npm-registry-fetch", - "hash": "11308245374241807600" + "hash": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==" } }, "npm:npm-run-all": { @@ -13113,15 +13050,6 @@ "hash": "13187644880041451271" } }, - "npm:@npmcli/agent@2.2.0": { - "type": "npm", - "name": "npm:@npmcli/agent@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "@npmcli/agent", - "hash": "14014059303892723744" - } - }, "npm:@npmcli/arborist@7.2.2": { "type": "npm", "name": "npm:@npmcli/arborist@7.2.2", @@ -13194,22 +13122,13 @@ "hash": "2838677265610359007" } }, - "npm:@sigstore/bundle@2.1.0": { + "npm:aproba@2.0.0": { "type": "npm", - "name": "npm:@sigstore/bundle@2.1.0", + "name": "npm:aproba@2.0.0", "data": { - "version": "2.1.0", - "packageName": "@sigstore/bundle", - "hash": "2548407292680462866" - } - }, - "npm:@sigstore/sign@2.2.0": { - "type": "npm", - "name": "npm:@sigstore/sign@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "@sigstore/sign", - "hash": "17892639030825074300" + "version": "2.0.0", + "packageName": "aproba", + "hash": "17279615999774402081" } }, "npm:archy@1.0.0": { @@ -13221,6 +13140,15 @@ "hash": "7927190020983769851" } }, + "npm:are-we-there-yet@4.0.1": { + "type": "npm", + "name": "npm:are-we-there-yet@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "are-we-there-yet", + "hash": "2067525616894023226" + } + }, "npm:bin-links@4.0.3": { "type": "npm", "name": "npm:bin-links@4.0.3", @@ -13257,13 +13185,13 @@ "hash": "11797498964257484434" } }, - "npm:columnify@1.6.0": { + "npm:color-support@1.1.3": { "type": "npm", - "name": "npm:columnify@1.6.0", + "name": "npm:color-support@1.1.3", "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "4223446972626528808" + "version": "1.1.3", + "packageName": "color-support", + "hash": "3393818179792164157" } }, "npm:common-ancestor-path@1.0.1": { @@ -13275,6 +13203,24 @@ "hash": "6661427358504839173" } }, + "npm:console-control-strings@1.1.0": { + "type": "npm", + "name": "npm:console-control-strings@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "15599562434471903839" + } + }, + "npm:delegates@1.0.0": { + "type": "npm", + "name": "npm:delegates@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "8733352999539432694" + } + }, "npm:fastest-levenshtein@1.0.16": { "type": "npm", "name": "npm:fastest-levenshtein@1.0.16", @@ -13284,13 +13230,22 @@ "hash": "8701148827062880145" } }, - "npm:hasown@2.0.0": { + "npm:gauge@5.0.1": { "type": "npm", - "name": "npm:hasown@2.0.0", + "name": "npm:gauge@5.0.1", "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "3788474599132128554" + "version": "5.0.1", + "packageName": "gauge", + "hash": "11205983861061131040" + } + }, + "npm:has-unicode@2.0.1": { + "type": "npm", + "name": "npm:has-unicode@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "13943981828416008621" } }, "npm:init-package-json@6.0.0": { @@ -13482,15 +13437,6 @@ "hash": "17299148607020464567" } }, - "npm:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, "npm:p-map": { "type": "npm", "name": "npm:p-map", @@ -13522,9 +13468,9 @@ "type": "npm", "name": "npm:pacote", "data": { - "version": "15.1.3", + "version": "17.0.4", "packageName": "pacote", - "hash": "sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==" + "hash": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==" } }, "npm:parse-conflict-json@3.0.1": { @@ -13536,22 +13482,13 @@ "hash": "4836433519110231199" } }, - "npm:path-scurry@1.10.1": { - "type": "npm", - "name": "npm:path-scurry@1.10.1", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "12011382365270888598" - } - }, "npm:path-scurry": { "type": "npm", "name": "npm:path-scurry", "data": { - "version": "1.10.0", + "version": "1.10.1", "packageName": "path-scurry", - "hash": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==" + "hash": "12011382365270888598" } }, "npm:postcss-selector-parser": { @@ -13653,22 +13590,13 @@ "hash": "8789385965959140586" } }, - "npm:read-package-json@7.0.0": { - "type": "npm", - "name": "npm:read-package-json@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "read-package-json", - "hash": "2832168133989722474" - } - }, "npm:read-package-json": { "type": "npm", "name": "npm:read-package-json", "data": { - "version": "6.0.4", + "version": "7.0.0", "packageName": "read-package-json", - "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" + "hash": "2832168133989722474" } }, "npm:read-package-json-fast": { @@ -13707,31 +13635,22 @@ "hash": "16796670911009069817" } }, - "npm:set-blocking": { + "npm:set-blocking@2.0.0": { "type": "npm", - "name": "npm:set-blocking", + "name": "npm:set-blocking@2.0.0", "data": { "version": "2.0.0", "packageName": "set-blocking", "hash": "7925479020392693302" } }, - "npm:sigstore@2.1.0": { - "type": "npm", - "name": "npm:sigstore@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "sigstore", - "hash": "1779417821879983691" - } - }, "npm:sigstore": { "type": "npm", "name": "npm:sigstore", "data": { - "version": "1.7.0", + "version": "2.1.0", "packageName": "sigstore", - "hash": "sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q==" + "hash": "1779417821879983691" } }, "npm:smart-buffer": { @@ -13752,22 +13671,13 @@ "hash": "10075606660716242987" } }, - "npm:socks-proxy-agent@8.0.2": { - "type": "npm", - "name": "npm:socks-proxy-agent@8.0.2", - "data": { - "version": "8.0.2", - "packageName": "socks-proxy-agent", - "hash": "16729279058560436716" - } - }, "npm:socks-proxy-agent": { "type": "npm", "name": "npm:socks-proxy-agent", "data": { - "version": "7.0.0", + "version": "8.0.2", "packageName": "socks-proxy-agent", - "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" + "hash": "16729279058560436716" } }, "npm:spdx-correct": { @@ -13797,40 +13707,22 @@ "hash": "1415946028849809017" } }, - "npm:spdx-license-ids@3.0.16": { - "type": "npm", - "name": "npm:spdx-license-ids@3.0.16", - "data": { - "version": "3.0.16", - "packageName": "spdx-license-ids", - "hash": "14586284776616244379" - } - }, "npm:spdx-license-ids": { "type": "npm", "name": "npm:spdx-license-ids", "data": { - "version": "3.0.13", + "version": "3.0.16", "packageName": "spdx-license-ids", - "hash": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" - } - }, - "npm:ssri@10.0.5": { - "type": "npm", - "name": "npm:ssri@10.0.5", - "data": { - "version": "10.0.5", - "packageName": "ssri", - "hash": "3448831591758618758" + "hash": "14586284776616244379" } }, "npm:ssri": { "type": "npm", "name": "npm:ssri", "data": { - "version": "10.0.4", + "version": "10.0.5", "packageName": "ssri", - "hash": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==" + "hash": "3448831591758618758" } }, "npm:string_decoder@1.3.0": { @@ -13869,22 +13761,13 @@ "hash": "17289454424302757271" } }, - "npm:tar@6.2.0": { - "type": "npm", - "name": "npm:tar@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "6383215585396908452" - } - }, "npm:tar": { "type": "npm", "name": "npm:tar", "data": { - "version": "6.1.15", + "version": "6.2.0", "packageName": "tar", - "hash": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==" + "hash": "6383215585396908452" } }, "npm:text-table": { @@ -13914,22 +13797,13 @@ "hash": "6817532506522309275" } }, - "npm:tuf-js@2.1.0": { - "type": "npm", - "name": "npm:tuf-js@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "tuf-js", - "hash": "3979877721881428053" - } - }, "npm:tuf-js": { "type": "npm", "name": "npm:tuf-js", "data": { - "version": "1.1.7", + "version": "2.1.0", "packageName": "tuf-js", - "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" + "hash": "3979877721881428053" } }, "npm:unique-filename": { @@ -13995,9 +13869,9 @@ "hash": "10410747907664628096" } }, - "npm:wide-align": { + "npm:wide-align@1.1.5": { "type": "npm", - "name": "npm:wide-align", + "name": "npm:wide-align@1.1.5", "data": { "version": "1.1.5", "packageName": "wide-align", @@ -14044,9 +13918,18 @@ "type": "npm", "name": "npm:nwsapi", "data": { - "version": "2.2.5", + "version": "2.2.7", "packageName": "nwsapi", - "hash": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" + "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "17.2.6", + "packageName": "nx", + "hash": "sha512-lBHp0e0AMBwYwpT44a8b0j29szspmYUhY1okqNctz/3ifuonNFG9WGfbzRO4YKOrVkfNsuaomHVAE6gtqo55ng==" } }, "npm:nx-release": { @@ -14058,13 +13941,22 @@ "hash": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==" } }, - "npm:oauth-sign": { + "npm:proxy-from-env@1.1.0": { "type": "npm", - "name": "npm:oauth-sign", + "name": "npm:proxy-from-env@1.1.0", "data": { - "version": "0.9.0", - "packageName": "oauth-sign", - "hash": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.0.0", + "packageName": "proxy-from-env", + "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" } }, "npm:object-assign": { @@ -14080,18 +13972,9 @@ "type": "npm", "name": "npm:object-inspect", "data": { - "version": "1.12.3", + "version": "1.13.1", "packageName": "object-inspect", - "hash": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" - } - }, - "npm:object-is": { - "type": "npm", - "name": "npm:object-is", - "data": { - "version": "1.1.5", - "packageName": "object-is", - "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" } }, "npm:object-keys": { @@ -14107,36 +13990,9 @@ "type": "npm", "name": "npm:object.assign", "data": { - "version": "4.1.4", + "version": "4.1.5", "packageName": "object.assign", - "hash": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.6", - "packageName": "object.entries", - "hash": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.6", - "packageName": "object.fromentries", - "hash": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==" - } - }, - "npm:object.hasown": { - "type": "npm", - "name": "npm:object.hasown", - "data": { - "version": "1.1.2", - "packageName": "object.hasown", - "hash": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==" + "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" } }, "npm:object.pick": { @@ -14148,15 +14004,6 @@ "hash": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==" } }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.1.6", - "packageName": "object.values", - "hash": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==" - } - }, "npm:obuf": { "type": "npm", "name": "npm:obuf", @@ -14220,6 +14067,24 @@ "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" } }, + "npm:openurl": { + "type": "npm", + "name": "npm:openurl", + "data": { + "version": "1.1.1", + "packageName": "openurl", + "hash": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" + } + }, + "npm:opn": { + "type": "npm", + "name": "npm:opn", + "data": { + "version": "5.3.0", + "packageName": "opn", + "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" + } + }, "npm:optionator": { "type": "npm", "name": "npm:optionator", @@ -14229,15 +14094,6 @@ "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" } }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, "npm:os-filter-obj": { "type": "npm", "name": "npm:os-filter-obj", @@ -14310,69 +14166,6 @@ "hash": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" } }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@1.3.0": { - "type": "npm", - "name": "npm:p-limit@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "p-limit", - "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:p-locate@2.0.0": { - "type": "npm", - "name": "npm:p-locate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "p-locate", - "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" - } - }, - "npm:p-locate@5.0.0": { - "type": "npm", - "name": "npm:p-locate@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, "npm:p-reduce": { "type": "npm", "name": "npm:p-reduce", @@ -14454,15 +14247,6 @@ "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" } }, - "npm:parse5-htmlparser2-tree-adapter": { - "type": "npm", - "name": "npm:parse5-htmlparser2-tree-adapter", - "data": { - "version": "6.0.1", - "packageName": "parse5-htmlparser2-tree-adapter", - "hash": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==" - } - }, "npm:parse5-sax-parser": { "type": "npm", "name": "npm:parse5-sax-parser", @@ -14481,24 +14265,6 @@ "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" } }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, "npm:path-is-absolute": { "type": "npm", "name": "npm:path-is-absolute", @@ -14553,15 +14319,6 @@ "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" } }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, "npm:pino": { "type": "npm", "name": "npm:pino", @@ -14629,38 +14386,20 @@ "type": "npm", "name": "npm:piscina", "data": { - "version": "3.2.0", + "version": "4.1.0", "packageName": "piscina", - "hash": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==" + "hash": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==" } }, "npm:pkg-conf": { "type": "npm", "name": "npm:pkg-conf", - "data": { - "version": "3.1.0", - "packageName": "pkg-conf", - "hash": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==" - } - }, - "npm:pkg-conf@2.1.0": { - "type": "npm", - "name": "npm:pkg-conf@2.1.0", "data": { "version": "2.1.0", "packageName": "pkg-conf", "hash": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==" } }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, "npm:pkginfo": { "type": "npm", "name": "npm:pkginfo", @@ -14697,6 +14436,24 @@ "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" } }, + "npm:portscanner": { + "type": "npm", + "name": "npm:portscanner", + "data": { + "version": "2.2.0", + "packageName": "portscanner", + "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.31", + "packageName": "postcss", + "hash": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" + } + }, "npm:postcss-calc": { "type": "npm", "name": "npm:postcss-calc", @@ -14710,54 +14467,54 @@ "type": "npm", "name": "npm:postcss-colormin", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-colormin", - "hash": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==" + "hash": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==" } }, "npm:postcss-convert-values": { "type": "npm", "name": "npm:postcss-convert-values", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-convert-values", - "hash": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==" + "hash": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==" } }, "npm:postcss-discard-comments": { "type": "npm", "name": "npm:postcss-discard-comments", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-discard-comments", - "hash": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==" + "hash": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==" } }, "npm:postcss-discard-duplicates": { "type": "npm", "name": "npm:postcss-discard-duplicates", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-discard-duplicates", - "hash": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==" + "hash": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==" } }, "npm:postcss-discard-empty": { "type": "npm", "name": "npm:postcss-discard-empty", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-discard-empty", - "hash": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==" + "hash": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==" } }, "npm:postcss-discard-overridden": { "type": "npm", "name": "npm:postcss-discard-overridden", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-discard-overridden", - "hash": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==" + "hash": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==" } }, "npm:postcss-import": { @@ -14769,67 +14526,58 @@ "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" } }, - "npm:cosmiconfig-typescript-loader@4.3.0": { - "type": "npm", - "name": "npm:cosmiconfig-typescript-loader@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "cosmiconfig-typescript-loader", - "hash": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==" - } - }, "npm:postcss-merge-longhand": { "type": "npm", "name": "npm:postcss-merge-longhand", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-merge-longhand", - "hash": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==" + "hash": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==" } }, "npm:postcss-merge-rules": { "type": "npm", "name": "npm:postcss-merge-rules", "data": { - "version": "6.0.1", + "version": "6.0.2", "packageName": "postcss-merge-rules", - "hash": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==" + "hash": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==" } }, "npm:postcss-minify-font-values": { "type": "npm", "name": "npm:postcss-minify-font-values", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-minify-font-values", - "hash": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==" + "hash": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==" } }, "npm:postcss-minify-gradients": { "type": "npm", "name": "npm:postcss-minify-gradients", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-minify-gradients", - "hash": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==" + "hash": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==" } }, "npm:postcss-minify-params": { "type": "npm", "name": "npm:postcss-minify-params", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-minify-params", - "hash": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==" + "hash": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==" } }, "npm:postcss-minify-selectors": { "type": "npm", "name": "npm:postcss-minify-selectors", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-minify-selectors", - "hash": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==" + "hash": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==" } }, "npm:postcss-modules-extract-imports": { @@ -14872,126 +14620,126 @@ "type": "npm", "name": "npm:postcss-normalize-charset", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-charset", - "hash": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==" + "hash": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==" } }, "npm:postcss-normalize-display-values": { "type": "npm", "name": "npm:postcss-normalize-display-values", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-display-values", - "hash": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==" + "hash": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==" } }, "npm:postcss-normalize-positions": { "type": "npm", "name": "npm:postcss-normalize-positions", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-positions", - "hash": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==" + "hash": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==" } }, "npm:postcss-normalize-repeat-style": { "type": "npm", "name": "npm:postcss-normalize-repeat-style", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==" + "hash": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==" } }, "npm:postcss-normalize-string": { "type": "npm", "name": "npm:postcss-normalize-string", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-string", - "hash": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==" + "hash": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==" } }, "npm:postcss-normalize-timing-functions": { "type": "npm", "name": "npm:postcss-normalize-timing-functions", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==" + "hash": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==" } }, "npm:postcss-normalize-unicode": { "type": "npm", "name": "npm:postcss-normalize-unicode", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-unicode", - "hash": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==" + "hash": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==" } }, "npm:postcss-normalize-url": { "type": "npm", "name": "npm:postcss-normalize-url", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-url", - "hash": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==" + "hash": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==" } }, "npm:postcss-normalize-whitespace": { "type": "npm", "name": "npm:postcss-normalize-whitespace", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-normalize-whitespace", - "hash": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==" + "hash": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==" } }, "npm:postcss-ordered-values": { "type": "npm", "name": "npm:postcss-ordered-values", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-ordered-values", - "hash": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==" + "hash": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==" } }, "npm:postcss-reduce-initial": { "type": "npm", "name": "npm:postcss-reduce-initial", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-reduce-initial", - "hash": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==" + "hash": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==" } }, "npm:postcss-reduce-transforms": { "type": "npm", "name": "npm:postcss-reduce-transforms", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-reduce-transforms", - "hash": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==" + "hash": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==" } }, "npm:postcss-svgo": { "type": "npm", "name": "npm:postcss-svgo", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-svgo", - "hash": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==" + "hash": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==" } }, "npm:postcss-unique-selectors": { "type": "npm", "name": "npm:postcss-unique-selectors", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "postcss-unique-selectors", - "hash": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==" + "hash": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==" } }, "npm:postcss-value-parser": { @@ -15034,9 +14782,9 @@ "type": "npm", "name": "npm:pretty-format", "data": { - "version": "29.5.0", + "version": "29.7.0", "packageName": "pretty-format", - "hash": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==" + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" } }, "npm:process-nextick-args": { @@ -15066,40 +14814,13 @@ "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" } }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:react-is@16.13.1": { - "type": "npm", - "name": "npm:react-is@16.13.1", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, "npm:property-expr": { "type": "npm", "name": "npm:property-expr", "data": { - "version": "2.0.5", + "version": "2.0.6", "packageName": "property-expr", - "hash": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==" + "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" } }, "npm:proto-list": { @@ -15160,18 +14881,18 @@ "type": "npm", "name": "npm:punycode", "data": { - "version": "2.3.0", + "version": "2.3.1", "packageName": "punycode", - "hash": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" } }, "npm:pure-rand": { "type": "npm", "name": "npm:pure-rand", "data": { - "version": "6.0.2", + "version": "6.0.4", "packageName": "pure-rand", - "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" + "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" } }, "npm:querystringify": { @@ -15264,6 +14985,15 @@ "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" } }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, "npm:read-cache": { "type": "npm", "name": "npm:read-cache", @@ -15322,9 +15052,9 @@ "type": "npm", "name": "npm:reflect-metadata", "data": { - "version": "0.1.13", + "version": "0.1.14", "packageName": "reflect-metadata", - "hash": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + "hash": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==" } }, "npm:regenerate": { @@ -15340,27 +15070,27 @@ "type": "npm", "name": "npm:regenerate-unicode-properties", "data": { - "version": "10.1.0", + "version": "10.1.1", "packageName": "regenerate-unicode-properties", - "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" + "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" } }, "npm:regenerator-runtime": { "type": "npm", "name": "npm:regenerator-runtime", "data": { - "version": "0.13.11", + "version": "0.14.1", "packageName": "regenerator-runtime", - "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" } }, "npm:regenerator-transform": { "type": "npm", "name": "npm:regenerator-transform", "data": { - "version": "0.15.1", + "version": "0.15.2", "packageName": "regenerator-transform", - "hash": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==" + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" } }, "npm:regex-parser": { @@ -15376,18 +15106,9 @@ "type": "npm", "name": "npm:regexp.prototype.flags", "data": { - "version": "1.5.0", + "version": "1.5.1", "packageName": "regexp.prototype.flags", - "hash": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.2.0", - "packageName": "regexpp", - "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" } }, "npm:regexpu-core": { @@ -15453,15 +15174,6 @@ "hash": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==" } }, - "npm:request": { - "type": "npm", - "name": "npm:request", - "data": { - "version": "2.88.2", - "packageName": "request", - "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" - } - }, "npm:request-progress": { "type": "npm", "name": "npm:request-progress", @@ -15471,24 +15183,6 @@ "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" } }, - "npm:uuid@3.4.0": { - "type": "npm", - "name": "npm:uuid@3.4.0", - "data": { - "version": "3.4.0", - "packageName": "uuid", - "hash": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, "npm:require-directory": { "type": "npm", "name": "npm:require-directory", @@ -15516,6 +15210,15 @@ "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" } }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, "npm:resolve-alpn": { "type": "npm", "name": "npm:resolve-alpn", @@ -15543,6 +15246,15 @@ "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" } }, + "npm:resp-modifier": { + "type": "npm", + "name": "npm:resp-modifier", + "data": { + "version": "6.0.2", + "packageName": "resp-modifier", + "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" + } + }, "npm:responselike": { "type": "npm", "name": "npm:responselike", @@ -15552,15 +15264,6 @@ "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" } }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, "npm:reusify": { "type": "npm", "name": "npm:reusify", @@ -15583,18 +15286,9 @@ "type": "npm", "name": "npm:rollup", "data": { - "version": "3.26.0", + "version": "3.29.4", "packageName": "rollup", - "hash": "sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==" - } - }, - "npm:run-async": { - "type": "npm", - "name": "npm:run-async", - "data": { - "version": "2.4.1", - "packageName": "run-async", - "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" } }, "npm:run-parallel": { @@ -15606,6 +15300,15 @@ "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" } }, + "npm:rx": { + "type": "npm", + "name": "npm:rx", + "data": { + "version": "4.1.0", + "packageName": "rx", + "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" + } + }, "npm:rxjs": { "type": "npm", "name": "npm:rxjs", @@ -15615,6 +15318,15 @@ "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" } }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.0.1", + "packageName": "safe-array-concat", + "hash": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==" + } + }, "npm:safe-regex-test": { "type": "npm", "name": "npm:safe-regex-test", @@ -15637,14 +15349,23 @@ "type": "npm", "name": "npm:sass", "data": { - "version": "1.62.1", + "version": "1.69.5", "packageName": "sass", - "hash": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==" + "hash": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==" } }, "npm:sax": { "type": "npm", "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:sax@1.2.4": { + "type": "npm", + "name": "npm:sax@1.2.4", "data": { "version": "1.2.4", "packageName": "sax", @@ -15682,9 +15403,9 @@ "type": "npm", "name": "npm:selfsigned", "data": { - "version": "2.1.1", + "version": "2.4.1", "packageName": "selfsigned", - "hash": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==" + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" } }, "npm:semantic-release": { @@ -15732,33 +15453,6 @@ "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" } }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, "npm:setprototypeof@1.1.0": { "type": "npm", "name": "npm:setprototypeof@1.1.0", @@ -15777,31 +15471,22 @@ "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" } }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:statuses": { + "npm:serialize-javascript": { "type": "npm", - "name": "npm:statuses", + "name": "npm:serialize-javascript", "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" } }, - "npm:serve-static": { + "npm:serve-index": { "type": "npm", - "name": "npm:serve-static", + "name": "npm:serve-index", "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" } }, "npm:server-destroy": { @@ -15813,6 +15498,24 @@ "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" } }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.1.1", + "packageName": "set-function-length", + "hash": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.1", + "packageName": "set-function-name", + "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" + } + }, "npm:set-getter": { "type": "npm", "name": "npm:set-getter", @@ -15876,6 +15579,42 @@ "hash": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==" } }, + "npm:socket.io": { + "type": "npm", + "name": "npm:socket.io", + "data": { + "version": "4.7.2", + "packageName": "socket.io", + "hash": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==" + } + }, + "npm:socket.io-adapter": { + "type": "npm", + "name": "npm:socket.io-adapter", + "data": { + "version": "2.5.2", + "packageName": "socket.io-adapter", + "hash": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==" + } + }, + "npm:socket.io-client": { + "type": "npm", + "name": "npm:socket.io-client", + "data": { + "version": "4.7.2", + "packageName": "socket.io-client", + "hash": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==" + } + }, + "npm:socket.io-parser": { + "type": "npm", + "name": "npm:socket.io-parser", + "data": { + "version": "4.2.4", + "packageName": "socket.io-parser", + "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" + } + }, "npm:sockjs": { "type": "npm", "name": "npm:sockjs", @@ -15912,42 +15651,6 @@ "hash": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==" } }, - "npm:yargs@16.2.0": { - "type": "npm", - "name": "npm:yargs@16.2.0", - "data": { - "version": "16.2.0", - "packageName": "yargs", - "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yargs-parser@20.2.9": { - "type": "npm", - "name": "npm:yargs-parser@20.2.9", - "data": { - "version": "20.2.9", - "packageName": "yargs-parser", - "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, "npm:source-map-js": { "type": "npm", "name": "npm:source-map-js", @@ -15957,15 +15660,6 @@ "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" } }, - "npm:sourcemap-codec": { - "type": "npm", - "name": "npm:sourcemap-codec", - "data": { - "version": "1.4.8", - "packageName": "sourcemap-codec", - "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" - } - }, "npm:spawn-error-forwarder": { "type": "npm", "name": "npm:spawn-error-forwarder", @@ -16006,9 +15700,9 @@ "type": "npm", "name": "npm:sshpk", "data": { - "version": "1.17.0", + "version": "1.18.0", "packageName": "sshpk", - "hash": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==" + "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" } }, "npm:stack-utils": { @@ -16020,24 +15714,6 @@ "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" } }, - "npm:standard": { - "type": "npm", - "name": "npm:standard", - "data": { - "version": "17.1.0", - "packageName": "standard", - "hash": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==" - } - }, - "npm:standard-engine": { - "type": "npm", - "name": "npm:standard-engine", - "data": { - "version": "15.1.0", - "packageName": "standard-engine", - "hash": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==" - } - }, "npm:steno": { "type": "npm", "name": "npm:steno", @@ -16047,15 +15723,6 @@ "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" } }, - "npm:stop-iteration-iterator": { - "type": "npm", - "name": "npm:stop-iteration-iterator", - "data": { - "version": "1.0.0", - "packageName": "stop-iteration-iterator", - "hash": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==" - } - }, "npm:stream-combiner2": { "type": "npm", "name": "npm:stream-combiner2", @@ -16074,6 +15741,15 @@ "hash": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" } }, + "npm:stream-throttle": { + "type": "npm", + "name": "npm:stream-throttle", + "data": { + "version": "0.1.3", + "packageName": "stream-throttle", + "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" + } + }, "npm:string-argv": { "type": "npm", "name": "npm:string-argv", @@ -16092,49 +15768,40 @@ "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" } }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.8", - "packageName": "string.prototype.matchall", - "hash": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==" - } - }, "npm:string.prototype.padend": { "type": "npm", "name": "npm:string.prototype.padend", "data": { - "version": "3.1.4", + "version": "3.1.5", "packageName": "string.prototype.padend", - "hash": "sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==" + "hash": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==" } }, "npm:string.prototype.trim": { "type": "npm", "name": "npm:string.prototype.trim", "data": { - "version": "1.2.7", + "version": "1.2.8", "packageName": "string.prototype.trim", - "hash": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==" + "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" } }, "npm:string.prototype.trimend": { "type": "npm", "name": "npm:string.prototype.trimend", "data": { - "version": "1.0.6", + "version": "1.0.7", "packageName": "string.prototype.trimend", - "hash": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==" + "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" } }, "npm:string.prototype.trimstart": { "type": "npm", "name": "npm:string.prototype.trimstart", "data": { - "version": "1.0.6", + "version": "1.0.7", "packageName": "string.prototype.trimstart", - "hash": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==" + "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" } }, "npm:strip-color": { @@ -16195,9 +15862,9 @@ "type": "npm", "name": "npm:stylehacks", "data": { - "version": "6.0.0", + "version": "6.0.1", "packageName": "stylehacks", - "hash": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==" + "hash": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==" } }, "npm:stylus": { @@ -16240,9 +15907,9 @@ "type": "npm", "name": "npm:svgo", "data": { - "version": "3.0.2", + "version": "3.1.0", "packageName": "svgo", - "hash": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==" + "hash": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==" } }, "npm:symbol-observable": { @@ -16312,9 +15979,9 @@ "type": "npm", "name": "npm:terser", "data": { - "version": "5.17.1", + "version": "5.24.0", "packageName": "terser", - "hash": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==" + "hash": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==" } }, "npm:terser-webpack-plugin": { @@ -16357,9 +16024,9 @@ "type": "npm", "name": "npm:throttleit", "data": { - "version": "1.0.0", + "version": "1.0.1", "packageName": "throttleit", - "hash": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==" + "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" } }, "npm:through": { @@ -16461,6 +16128,15 @@ "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" } }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.3", + "packageName": "tough-cookie", + "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" + } + }, "npm:traverse": { "type": "npm", "name": "npm:traverse", @@ -16488,6 +16164,15 @@ "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" } }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "1.0.3", + "packageName": "ts-api-utils", + "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" + } + }, "npm:ts-jest": { "type": "npm", "name": "npm:ts-jest", @@ -16501,9 +16186,9 @@ "type": "npm", "name": "npm:ts-loader", "data": { - "version": "9.4.4", + "version": "9.5.1", "packageName": "ts-loader", - "hash": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==" + "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" } }, "npm:ts-node": { @@ -16515,6 +16200,15 @@ "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" } }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, "npm:tsconfig-paths-webpack-plugin": { "type": "npm", "name": "npm:tsconfig-paths-webpack-plugin", @@ -16524,6 +16218,15 @@ "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" } }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.2", + "packageName": "tslib", + "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + }, "npm:tsscmp": { "type": "npm", "name": "npm:tsscmp", @@ -16533,15 +16236,6 @@ "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" } }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, "npm:tunnel-agent": { "type": "npm", "name": "npm:tunnel-agent", @@ -16564,9 +16258,9 @@ "type": "npm", "name": "npm:typanion", "data": { - "version": "3.13.0", + "version": "3.14.0", "packageName": "typanion", - "hash": "sha512-AkZMjMIW8MGeQwBxu1bixzu/2Zk7rH6ILrI/9zBoW0sAiVaWwHjXSnmPBomfY2t7tSG6m5bIE+OYYyyuGnFVHA==" + "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" } }, "npm:type-check": { @@ -16596,6 +16290,33 @@ "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" } }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, "npm:typed-array-length": { "type": "npm", "name": "npm:typed-array-length", @@ -16623,6 +16344,24 @@ "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" } }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "5.2.2", + "packageName": "typescript", + "hash": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "1.0.37", + "packageName": "ua-parser-js", + "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" + } + }, "npm:uglify-js": { "type": "npm", "name": "npm:uglify-js", @@ -16641,6 +16380,15 @@ "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" } }, + "npm:undici": { + "type": "npm", + "name": "npm:undici", + "data": { + "version": "5.27.2", + "packageName": "undici", + "hash": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==" + } + }, "npm:unicode-canonical-property-names-ecmascript": { "type": "npm", "name": "npm:unicode-canonical-property-names-ecmascript", @@ -16753,9 +16501,9 @@ "type": "npm", "name": "npm:update-browserslist-db", "data": { - "version": "1.0.11", + "version": "1.0.13", "packageName": "update-browserslist-db", - "hash": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==" + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" } }, "npm:uri-js": { @@ -16785,13 +16533,13 @@ "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" } }, - "npm:v8-compile-cache": { + "npm:uuid": { "type": "npm", - "name": "npm:v8-compile-cache", + "name": "npm:uuid", "data": { - "version": "2.3.0", - "packageName": "v8-compile-cache", - "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" } }, "npm:v8-compile-cache-lib": { @@ -16807,18 +16555,9 @@ "type": "npm", "name": "npm:v8-to-istanbul", "data": { - "version": "9.1.0", + "version": "9.2.0", "packageName": "v8-to-istanbul", - "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.9.0", - "packageName": "validator", - "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" + "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" } }, "npm:vary": { @@ -16834,27 +16573,27 @@ "type": "npm", "name": "npm:verdaccio", "data": { - "version": "5.25.0", + "version": "5.29.0", "packageName": "verdaccio", - "hash": "sha512-h/BDAudOZtwC52waErxCjZA+YKuUi7Ojt3haRGxZ1ZTL26BkbjaKkzt0Y72Z2bauRLxmwtGevJWm2LV7ZTeIug==" + "hash": "sha512-Le3MhojXDCoXIDFNp5VaAalu8FtoZAJo6YTWxEAKCOO4MFN19XzwZsu4FkLrPHc5fPhyhqerTHBsG2qtoutxQA==" } }, "npm:verdaccio-audit": { "type": "npm", "name": "npm:verdaccio-audit", "data": { - "version": "11.0.0-6-next.34", + "version": "12.0.0-next.4", "packageName": "verdaccio-audit", - "hash": "sha512-TF+gnJJveEI4TGJTsVBCNwbfx5WBvlP7QoaDDxSmJQlmhzrsJ2MjhagWgAA/OoLV7p45bJ7e00v391Frv0pwnw==" + "hash": "sha512-X8Qe8Qv/BZPng7dQCCdot8g53eU65zM6GfLw0P1A68Hf5dzv/GJgekiPnIAXgSw5KJMKE8loNzd6+FfFLnQUSA==" } }, "npm:verdaccio-htpasswd": { "type": "npm", "name": "npm:verdaccio-htpasswd", "data": { - "version": "11.0.0-6-next.41", + "version": "12.0.0-next.4", "packageName": "verdaccio-htpasswd", - "hash": "sha512-HS1/3No2W7Dhl9DJ3tXUDgSOIL3do5tW2O2OvRVPc6aNKbqXFg22FIqjzpn1yG2sydTuBFKUSjMvmk/1oliKPg==" + "hash": "sha512-q4SxBIWMkVPUoKk2/JSPJjlTdC8treuLtVV/omRYjEgSbwJBhJlSeqwEiHlv0/idv/cfwXoDR3/WY9CWq8gieg==" } }, "npm:verror": { @@ -16866,22 +16605,13 @@ "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" } }, - "npm:version-guard": { - "type": "npm", - "name": "npm:version-guard", - "data": { - "version": "1.1.1", - "packageName": "version-guard", - "hash": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==" - } - }, "npm:vite": { "type": "npm", "name": "npm:vite", "data": { - "version": "4.3.9", + "version": "4.5.1", "packageName": "vite", - "hash": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==" + "hash": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==" } }, "npm:w3c-xmlserializer": { @@ -16924,18 +16654,18 @@ "type": "npm", "name": "npm:webpack", "data": { - "version": "5.80.0", + "version": "5.89.0", "packageName": "webpack", - "hash": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==" + "hash": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==" } }, "npm:webpack-dev-middleware": { "type": "npm", "name": "npm:webpack-dev-middleware", "data": { - "version": "6.0.2", + "version": "6.1.1", "packageName": "webpack-dev-middleware", - "hash": "sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ==" + "hash": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==" } }, "npm:webpack-dev-middleware@5.3.3": { @@ -16951,9 +16681,18 @@ "type": "npm", "name": "npm:webpack-dev-server", "data": { - "version": "4.13.2", + "version": "4.15.1", "packageName": "webpack-dev-server", - "hash": "sha512-5i6TrGBRxG4vnfDpB6qSQGfnB6skGBXNL5/542w2uRGLimX6qeE5BQMLrzIC3JYV/xlGOv+s+hTleI9AZKUQNw==" + "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.10.0", + "packageName": "webpack-merge", + "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" } }, "npm:webpack-node-externals": { @@ -17028,22 +16767,13 @@ "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" } }, - "npm:which-collection": { - "type": "npm", - "name": "npm:which-collection", - "data": { - "version": "1.0.1", - "packageName": "which-collection", - "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" - } - }, "npm:which-typed-array": { "type": "npm", "name": "npm:which-typed-array", "data": { - "version": "1.1.9", + "version": "1.1.13", "packageName": "which-typed-array", - "hash": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==" + "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" } }, "npm:wildcard": { @@ -17073,24 +16803,6 @@ "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" } }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.13.0", - "packageName": "ws", - "hash": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==" - } - }, - "npm:xdg-basedir": { - "type": "npm", - "name": "npm:xdg-basedir", - "data": { - "version": "4.0.0", - "packageName": "xdg-basedir", - "hash": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" - } - }, "npm:xml-name-validator": { "type": "npm", "name": "npm:xml-name-validator", @@ -17109,6 +16821,15 @@ "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" } }, + "npm:xmlhttprequest-ssl": { + "type": "npm", + "name": "npm:xmlhttprequest-ssl", + "data": { + "version": "2.0.0", + "packageName": "xmlhttprequest-ssl", + "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" + } + }, "npm:xtend": { "type": "npm", "name": "npm:xtend", @@ -17145,15 +16866,6 @@ "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" } }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, "npm:yup": { "type": "npm", "name": "npm:yup", @@ -17167,9 +16879,9 @@ "type": "npm", "name": "npm:zone.js", "data": { - "version": "0.13.1", + "version": "0.14.2", "packageName": "zone.js", - "hash": "sha512-+bIeDAFEBYuXRuU3qGQvzdPap+N1zjM4KkBAiiQuVVCrHrhjDuY6VkUhNa5+U27+9w0q3fbKiMCbpJ0XzMmSWA==" + "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" } } }, @@ -17256,7 +16968,7 @@ }, { "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/plugin-transform-async-generator-functions", "type": "static" }, { @@ -17279,11 +16991,6 @@ "target": "npm:@babel/runtime", "type": "static" }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/template", - "type": "static" - }, { "source": "npm:@angular-devkit/build-angular", "target": "npm:@discoveryjs/json-ext", @@ -17321,12 +17028,12 @@ }, { "source": "npm:@angular-devkit/build-angular", - "target": "npm:browserslist", + "target": "npm:browser-sync", "type": "static" }, { "source": "npm:@angular-devkit/build-angular", - "target": "npm:cacache", + "target": "npm:browserslist", "type": "static" }, { @@ -17356,7 +17063,12 @@ }, { "source": "npm:@angular-devkit/build-angular", - "target": "npm:glob", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:http-proxy-middleware", "type": "static" }, { @@ -17366,7 +17078,7 @@ }, { "source": "npm:@angular-devkit/build-angular", - "target": "npm:inquirer@8.2.4", + "target": "npm:inquirer@9.2.11", "type": "static" }, { @@ -17501,7 +17213,12 @@ }, { "source": "npm:@angular-devkit/build-angular", - "target": "npm:tslib@2.5.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:undici", "type": "static" }, { @@ -17540,77 +17257,87 @@ "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:figures@5.0.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:figures@5.0.0", + "target": "npm:is-unicode-supported@1.3.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:@ljharb/through", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", "target": "npm:ansi-escapes", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:chalk", + "source": "npm:inquirer@9.2.11", + "target": "npm:chalk@5.3.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:cli-cursor", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:cli-width", + "source": "npm:inquirer@9.2.11", + "target": "npm:cli-width@4.1.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:external-editor", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:figures", + "source": "npm:inquirer@9.2.11", + "target": "npm:figures@5.0.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:lodash", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:mute-stream", + "source": "npm:inquirer@9.2.11", + "target": "npm:mute-stream@1.0.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:ora", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:run-async", + "source": "npm:inquirer@9.2.11", + "target": "npm:run-async@3.0.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:rxjs", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:string-width", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:wrap-ansi", "type": "static" }, @@ -17654,6 +17381,11 @@ "target": "npm:jsonc-parser", "type": "static" }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:picomatch", + "type": "static" + }, { "source": "npm:@angular-devkit/core", "target": "npm:rxjs", @@ -17841,7 +17573,7 @@ }, { "source": "npm:@angular/cli", - "target": "npm:@schematics/angular", + "target": "npm:@schematics/angular@17.0.7", "type": "static" }, { @@ -17861,7 +17593,7 @@ }, { "source": "npm:@angular/cli", - "target": "npm:inquirer@8.2.4", + "target": "npm:inquirer@9.2.11", "type": "static" }, { @@ -17915,77 +17647,102 @@ "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:figures@5.0.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:figures@5.0.0", + "target": "npm:is-unicode-supported@1.3.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:@ljharb/through", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", "target": "npm:ansi-escapes", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:chalk", + "source": "npm:inquirer@9.2.11", + "target": "npm:chalk@5.3.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:cli-cursor", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:cli-width", + "source": "npm:inquirer@9.2.11", + "target": "npm:cli-width@4.1.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:external-editor", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:figures", + "source": "npm:inquirer@9.2.11", + "target": "npm:figures@5.0.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:lodash", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:mute-stream", + "source": "npm:inquirer@9.2.11", + "target": "npm:mute-stream@1.0.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:ora", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:run-async", + "source": "npm:inquirer@9.2.11", + "target": "npm:run-async@3.0.0", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:rxjs", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:string-width", "type": "static" }, { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:inquirer@8.2.4", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", + "source": "npm:inquirer@9.2.11", "target": "npm:wrap-ansi", "type": "static" }, @@ -18026,7 +17783,7 @@ }, { "source": "npm:@angular/compiler-cli", - "target": "npm:@babel/core@7.21.8", + "target": "npm:@babel/core", "type": "static" }, { @@ -18064,101 +17821,6 @@ "target": "npm:yargs", "type": "static" }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/generator@7.22.5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.21.8", - "target": "npm:semver@6.3.0", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.22.5", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.22.5", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.22.5", - "target": "npm:jsesc", - "type": "static" - }, { "source": "npm:@angular/core", "target": "npm:rxjs", @@ -18279,9 +17941,14 @@ "target": "npm:chalk@2.4.2", "type": "static" }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + }, { "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles", + "target": "npm:ansi-styles@3.2.1", "type": "static" }, { @@ -18294,6 +17961,11 @@ "target": "npm:supports-color@5.5.0", "type": "static" }, + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + }, { "source": "npm:supports-color@5.5.0", "target": "npm:has-flag@3.0.0", @@ -18351,7 +18023,7 @@ }, { "source": "npm:@babel/core", - "target": "npm:convert-source-map", + "target": "npm:convert-source-map@2.0.0", "type": "static" }, { @@ -18371,7 +18043,7 @@ }, { "source": "npm:@babel/core", - "target": "npm:semver@6.3.0", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -18404,11 +18076,6 @@ "target": "npm:@babel/types", "type": "static" }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/core", - "type": "static" - }, { "source": "npm:@babel/helper-compilation-targets", "target": "npm:@babel/compat-data", @@ -18431,7 +18098,7 @@ }, { "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.0", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -18441,7 +18108,7 @@ }, { "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/helper-annotate-as-pure", "type": "static" }, { @@ -18476,22 +18143,12 @@ }, { "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/helper-split-export-declaration", "type": "static" }, { "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.0", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration@7.22.5", - "target": "npm:@babel/types", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -18501,7 +18158,7 @@ }, { "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/helper-annotate-as-pure", "type": "static" }, { @@ -18511,12 +18168,7 @@ }, { "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.0", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure@7.22.5", - "target": "npm:@babel/types", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -18549,14 +18201,9 @@ "target": "npm:resolve", "type": "static" }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:semver@6.3.0", - "type": "static" - }, { "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template@7.22.5", + "target": "npm:@babel/template", "type": "static" }, { @@ -18564,21 +18211,6 @@ "target": "npm:@babel/types", "type": "static" }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, { "source": "npm:@babel/helper-hoist-variables", "target": "npm:@babel/types", @@ -18596,62 +18228,32 @@ }, { "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", + "target": "npm:@babel/core", "type": "static" }, { "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/helper-environment-visitor", "type": "static" }, { "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", + "target": "npm:@babel/helper-module-imports", "type": "static" }, { "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/template@7.22.5", + "target": "npm:@babel/helper-simple-access", "type": "static" }, { "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", "type": "static" }, { "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", "type": "static" }, { @@ -18666,7 +18268,7 @@ }, { "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/helper-annotate-as-pure", "type": "static" }, { @@ -18680,13 +18282,8 @@ "type": "static" }, { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure@7.22.5", - "target": "npm:@babel/types", + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/core", "type": "static" }, { @@ -18704,36 +18301,6 @@ "target": "npm:@babel/helper-optimise-call-expression", "type": "static" }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/template@7.22.5", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, { "source": "npm:@babel/helper-simple-access", "target": "npm:@babel/types", @@ -18756,12 +18323,7 @@ }, { "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template@7.22.5", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/traverse", + "target": "npm:@babel/template", "type": "static" }, { @@ -18769,24 +18331,9 @@ "target": "npm:@babel/types", "type": "static" }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, { "source": "npm:@babel/helpers", - "target": "npm:@babel/template@7.22.5", + "target": "npm:@babel/template", "type": "static" }, { @@ -18799,21 +18346,6 @@ "target": "npm:@babel/types", "type": "static" }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, { "source": "npm:@babel/highlight", "target": "npm:@babel/helper-validator-identifier", @@ -18829,9 +18361,14 @@ "target": "npm:js-tokens", "type": "static" }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + }, { "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles", + "target": "npm:ansi-styles@3.2.1", "type": "static" }, { @@ -18844,6 +18381,11 @@ "target": "npm:supports-color@5.5.0", "type": "static" }, + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + }, { "source": "npm:supports-color@5.5.0", "target": "npm:has-flag@3.0.0", @@ -18879,66 +18421,6 @@ "target": "npm:@babel/plugin-transform-optional-chaining", "type": "static" }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, { "source": "npm:@babel/plugin-proposal-decorators", "target": "npm:@babel/core", @@ -18961,477 +18443,357 @@ }, { "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", "type": "static" }, { "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-split-export-declaration", "type": "static" }, { - "source": "npm:@babel/helper-split-export-declaration@7.22.5", - "target": "npm:@babel/types", + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-dynamic-import", + "source": "npm:@babel/plugin-proposal-private-property-in-object", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-namespace-from", + "source": "npm:@babel/plugin-syntax-async-generators", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-export-namespace-from", + "source": "npm:@babel/plugin-syntax-async-generators", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-json-strings", + "source": "npm:@babel/plugin-syntax-bigint", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-json-strings", + "source": "npm:@babel/plugin-syntax-bigint", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-logical-assignment-operators", + "source": "npm:@babel/plugin-syntax-class-properties", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-logical-assignment-operators", + "source": "npm:@babel/plugin-syntax-class-properties", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "source": "npm:@babel/plugin-syntax-class-static-block", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "source": "npm:@babel/plugin-syntax-class-static-block", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-numeric-separator", + "source": "npm:@babel/plugin-syntax-decorators", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-numeric-separator", + "source": "npm:@babel/plugin-syntax-decorators", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", + "source": "npm:@babel/plugin-syntax-dynamic-import", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", + "source": "npm:@babel/plugin-syntax-dynamic-import", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "source": "npm:@babel/plugin-syntax-export-namespace-from", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "source": "npm:@babel/plugin-syntax-export-namespace-from", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", + "source": "npm:@babel/plugin-syntax-import-assertions", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-optional-chaining", + "source": "npm:@babel/plugin-syntax-import-assertions", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-methods", + "source": "npm:@babel/plugin-syntax-import-attributes", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-methods", + "source": "npm:@babel/plugin-syntax-import-attributes", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-private-property-in-object", + "source": "npm:@babel/plugin-syntax-import-meta", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object", + "source": "npm:@babel/plugin-syntax-import-meta", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-unicode-property-regex", + "source": "npm:@babel/plugin-syntax-json-strings", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-proposal-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-unicode-property-regex", + "source": "npm:@babel/plugin-syntax-json-strings", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-async-generators", + "source": "npm:@babel/plugin-syntax-jsx", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-async-generators", + "source": "npm:@babel/plugin-syntax-jsx", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-bigint", + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-bigint", + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-class-properties", + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-class-properties", + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-class-static-block", + "source": "npm:@babel/plugin-syntax-numeric-separator", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-class-static-block", + "source": "npm:@babel/plugin-syntax-numeric-separator", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-decorators", + "source": "npm:@babel/plugin-syntax-object-rest-spread", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-decorators", + "source": "npm:@babel/plugin-syntax-object-rest-spread", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-dynamic-import", + "source": "npm:@babel/plugin-syntax-optional-catch-binding", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-dynamic-import", + "source": "npm:@babel/plugin-syntax-optional-catch-binding", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-export-namespace-from", + "source": "npm:@babel/plugin-syntax-optional-chaining", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-export-namespace-from", + "source": "npm:@babel/plugin-syntax-optional-chaining", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-import-assertions", + "source": "npm:@babel/plugin-syntax-private-property-in-object", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-import-assertions", + "source": "npm:@babel/plugin-syntax-private-property-in-object", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-import-meta", + "source": "npm:@babel/plugin-syntax-top-level-await", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-import-meta", + "source": "npm:@babel/plugin-syntax-top-level-await", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-json-strings", + "source": "npm:@babel/plugin-syntax-typescript", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-json-strings", + "source": "npm:@babel/plugin-syntax-typescript", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-jsx", + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/core", + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "source": "npm:@babel/plugin-transform-arrow-functions", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "source": "npm:@babel/plugin-transform-arrow-functions", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-numeric-separator", + "source": "npm:@babel/plugin-transform-async-generator-functions", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/core", + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-object-rest-spread", + "source": "npm:@babel/plugin-transform-async-generator-functions", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/core", + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-optional-chaining", + "source": "npm:@babel/plugin-transform-async-to-generator", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/core", + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-private-property-in-object", + "source": "npm:@babel/plugin-transform-async-to-generator", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-typescript", + "source": "npm:@babel/plugin-transform-block-scoped-functions", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-syntax-typescript", + "source": "npm:@babel/plugin-transform-block-scoped-functions", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-transform-arrow-functions", + "source": "npm:@babel/plugin-transform-block-scoping", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-transform-arrow-functions", + "source": "npm:@babel/plugin-transform-block-scoping", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-transform-async-to-generator", + "source": "npm:@babel/plugin-transform-class-properties", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", "type": "static" }, { - "source": "npm:@babel/plugin-transform-async-to-generator", + "source": "npm:@babel/plugin-transform-class-properties", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", + "source": "npm:@babel/plugin-transform-class-static-block", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", "type": "static" }, { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/core", + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", "type": "static" }, { @@ -19441,7 +18803,7 @@ }, { "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/helper-annotate-as-pure", "type": "static" }, { @@ -19476,7 +18838,7 @@ }, { "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/helper-split-export-declaration", "type": "static" }, { @@ -19484,16 +18846,6 @@ "target": "npm:globals", "type": "static" }, - { - "source": "npm:@babel/helper-annotate-as-pure@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, { "source": "npm:@babel/plugin-transform-computed-properties", "target": "npm:@babel/core", @@ -19506,22 +18858,7 @@ }, { "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template@7.22.5", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template@7.22.5", - "target": "npm:@babel/types", + "target": "npm:@babel/template", "type": "static" }, { @@ -19559,6 +18896,21 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-exponentiation-operator", "target": "npm:@babel/core", @@ -19574,6 +18926,21 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-for-of", "target": "npm:@babel/core", @@ -19584,6 +18951,11 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-function-name", "target": "npm:@babel/core", @@ -19604,6 +18976,21 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-literals", "target": "npm:@babel/core", @@ -19614,6 +19001,21 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-member-expression-literals", "target": "npm:@babel/core", @@ -19724,6 +19126,66 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-object-super", "target": "npm:@babel/core", @@ -19739,6 +19201,21 @@ "target": "npm:@babel/helper-replace-supers", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-optional-chaining", "target": "npm:@babel/core", @@ -19769,6 +19246,46 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-property-literals", "target": "npm:@babel/core", @@ -19836,7 +19353,7 @@ }, { "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.0", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -19901,7 +19418,7 @@ }, { "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure@7.22.5", + "target": "npm:@babel/helper-annotate-as-pure", "type": "static" }, { @@ -19920,17 +19437,27 @@ "type": "static" }, { - "source": "npm:@babel/helper-annotate-as-pure@7.22.5", - "target": "npm:@babel/types", + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/core", "type": "static" }, { "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/plugin-transform-unicode-escapes", + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, @@ -19950,253 +19477,248 @@ "type": "static" }, { - "source": "npm:@babel/preset-env", + "source": "npm:@babel/plugin-transform-unicode-sets-regex", "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", "type": "static" }, { - "source": "npm:@babel/preset-env", + "source": "npm:@babel/plugin-transform-unicode-sets-regex", "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", + "target": "npm:@babel/core", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/compat-data", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-compilation-targets", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-validator-option", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-class-static-block", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-dynamic-import", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/plugin-proposal-private-property-in-object", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-json-strings", + "target": "npm:@babel/plugin-syntax-async-generators", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-class-properties", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-class-static-block", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/plugin-syntax-dynamic-import", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-export-namespace-from", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-import-assertions", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-import-attributes", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/plugin-syntax-import-meta", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/plugin-syntax-json-strings", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-unicode-property-regex", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/plugin-syntax-numeric-separator", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/plugin-syntax-object-rest-spread", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/plugin-syntax-optional-chaining", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/plugin-syntax-private-property-in-object", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/plugin-syntax-top-level-await", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/plugin-transform-arrow-functions", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/plugin-transform-async-generator-functions", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/plugin-transform-async-to-generator", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/plugin-transform-block-scoped-functions", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/plugin-transform-block-scoping", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/plugin-transform-class-properties", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/plugin-transform-class-static-block", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/plugin-transform-classes", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/plugin-transform-computed-properties", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/plugin-transform-destructuring", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/plugin-transform-dotall-regex", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/plugin-transform-duplicate-keys", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/plugin-transform-dynamic-import", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/plugin-transform-exponentiation-operator", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/plugin-transform-export-namespace-from", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/plugin-transform-for-of", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/plugin-transform-function-name", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/plugin-transform-json-strings", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/plugin-transform-literals", "type": "static" }, { "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", "type": "static" }, { @@ -20234,16 +19756,51 @@ "target": "npm:@babel/plugin-transform-new-target", "type": "static" }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, { "source": "npm:@babel/preset-env", "target": "npm:@babel/plugin-transform-object-super", "type": "static" }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, { "source": "npm:@babel/preset-env", "target": "npm:@babel/plugin-transform-parameters", "type": "static" }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, { "source": "npm:@babel/preset-env", "target": "npm:@babel/plugin-transform-property-literals", @@ -20289,11 +19846,21 @@ "target": "npm:@babel/plugin-transform-unicode-escapes", "type": "static" }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, { "source": "npm:@babel/preset-env", "target": "npm:@babel/plugin-transform-unicode-regex", "type": "static" }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, { "source": "npm:@babel/preset-env", "target": "npm:@babel/preset-modules", @@ -20326,7 +19893,7 @@ }, { "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.0", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -20339,16 +19906,6 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/plugin-proposal-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, { "source": "npm:@babel/preset-modules", "target": "npm:@babel/types", @@ -20416,7 +19973,7 @@ }, { "source": "npm:@babel/traverse", - "target": "npm:@babel/generator@7.22.5", + "target": "npm:@babel/generator@7.23.6", "type": "static" }, { @@ -20436,7 +19993,7 @@ }, { "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration@7.22.5", + "target": "npm:@babel/helper-split-export-declaration", "type": "static" }, { @@ -20460,30 +20017,25 @@ "type": "static" }, { - "source": "npm:@babel/generator@7.22.5", + "source": "npm:@babel/generator@7.23.6", "target": "npm:@babel/types", "type": "static" }, { - "source": "npm:@babel/generator@7.22.5", + "source": "npm:@babel/generator@7.23.6", "target": "npm:@jridgewell/gen-mapping", "type": "static" }, { - "source": "npm:@babel/generator@7.22.5", + "source": "npm:@babel/generator@7.23.6", "target": "npm:@jridgewell/trace-mapping", "type": "static" }, { - "source": "npm:@babel/generator@7.22.5", + "source": "npm:@babel/generator@7.23.6", "target": "npm:jsesc", "type": "static" }, - { - "source": "npm:@babel/helper-split-export-declaration@7.22.5", - "target": "npm:@babel/types", - "type": "static" - }, { "source": "npm:@babel/types", "target": "npm:@babel/helper-string-parser", @@ -20646,7 +20198,7 @@ }, { "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.20.0", + "target": "npm:globals@13.24.0", "type": "static" }, { @@ -20695,7 +20247,7 @@ "type": "static" }, { - "source": "npm:globals@13.20.0", + "source": "npm:globals@13.24.0", "target": "npm:type-fest@0.20.2", "type": "static" }, @@ -21106,7 +20658,7 @@ }, { "source": "npm:@jest/reporters", - "target": "npm:glob@7.2.3", + "target": "npm:glob", "type": "static" }, { @@ -21174,41 +20726,6 @@ "target": "npm:v8-to-istanbul", "type": "static" }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, { "source": "npm:@jest/schemas", "target": "npm:@sinclair/typebox", @@ -21389,6 +20906,16 @@ "target": "npm:@jridgewell/trace-mapping", "type": "static" }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, { "source": "npm:@jridgewell/trace-mapping", "target": "npm:@jridgewell/resolve-uri", @@ -21396,7 +20923,12 @@ }, { "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@ljharb/through", + "target": "npm:call-bind", "type": "static" }, { @@ -21489,6 +21021,41 @@ "target": "npm:fastq", "type": "static" }, + { + "source": "npm:@npmcli/agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:debug", + "type": "static" + }, { "source": "npm:@npmcli/fs", "target": "npm:semver", @@ -21501,7 +21068,7 @@ }, { "source": "npm:@npmcli/git", - "target": "npm:lru-cache@7.18.3", + "target": "npm:lru-cache@10.1.0", "type": "static" }, { @@ -21531,12 +21098,12 @@ }, { "source": "npm:@npmcli/git", - "target": "npm:which@3.0.1", + "target": "npm:which@4.0.0", "type": "static" }, { - "source": "npm:which@3.0.1", - "target": "npm:isexe", + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", "type": "static" }, { @@ -21551,12 +21118,12 @@ }, { "source": "npm:@npmcli/promise-spawn", - "target": "npm:which@3.0.1", + "target": "npm:which@4.0.0", "type": "static" }, { - "source": "npm:which@3.0.1", - "target": "npm:isexe", + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", "type": "static" }, { @@ -21581,12 +21148,12 @@ }, { "source": "npm:@npmcli/run-script", - "target": "npm:which@3.0.1", + "target": "npm:which@4.0.0", "type": "static" }, { - "source": "npm:which@3.0.1", - "target": "npm:isexe", + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", "type": "static" }, { @@ -21595,1818 +21162,653 @@ "type": "static" }, { - "source": "npm:@nrwl/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/cypress", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nrwl/eslint-plugin-nx", - "target": "npm:@nx/eslint-plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nrwl/linter", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/web", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nrwl/webpack", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nrwl/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/linter@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/workspace@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:http-server", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:magic-string@0.26.7", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack-merge@5.7.3", - "type": "static" - }, - { - "source": "npm:@nrwl/linter@16.4.2", - "target": "npm:@nx/linter@16.4.2", - "type": "static" - }, - { - "source": "npm:@nrwl/tao@16.4.2", - "target": "npm:nx@16.4.2", - "type": "static" - }, - { - "source": "npm:@nrwl/workspace@16.4.2", - "target": "npm:@nx/workspace@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nrwl/linter@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:@nrwl/workspace@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:nx@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:magic-string@0.26.7", - "target": "npm:sourcemap-codec", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@swc-node/register", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nrwl/tao@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@yarnpkg/parsers@3.0.0-rc.46", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:v8-compile-cache", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-darwin-arm64@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-darwin-x64@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-arm64-gnu@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-arm64-musl@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-x64-gnu@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-x64-musl@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-win32-arm64-msvc@16.4.2", - "type": "static" - }, - { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-win32-x64-msvc@16.4.2", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:webpack-merge@5.7.3", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge@5.7.3", - "target": "npm:wildcard", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nrwl/cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/linter@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nrwl/linter@16.4.2", - "target": "npm:@nx/linter@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nrwl/linter@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nrwl/eslint-plugin-nx", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/js@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:semver@7.3.4", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit@16.1.1", - "target": "npm:@nx/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nrwl/js@16.1.1", - "target": "npm:@nx/js@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:@nrwl/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:semver@7.3.4", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@nrwl/js@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@nx/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:@nx/js@16.1.1", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.3.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:verdaccio", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace@16.4.2", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", + "source": "npm:@nrwl/angular", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:fast-glob", + "source": "npm:@nrwl/cypress", + "target": "npm:@nx/cypress", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:fs-extra", + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:ignore", + "source": "npm:@nrwl/eslint-plugin-nx", + "target": "npm:@nx/eslint-plugin", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:js-tokens", + "source": "npm:@nrwl/jest", + "target": "npm:@nx/jest", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:minimatch", + "source": "npm:@nrwl/js", + "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:semver@7.5.3", + "source": "npm:@nrwl/nx-plugin", + "target": "npm:@nx/plugin", "type": "static" }, { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", + "source": "npm:@nrwl/tao", + "target": "npm:nx", "type": "static" }, { - "source": "npm:@nx/js", + "source": "npm:@nrwl/tao", "target": "npm:tslib", "type": "static" }, { - "source": "npm:@nrwl/tao@16.4.2", - "target": "npm:nx@16.4.2", + "source": "npm:@nrwl/web", + "target": "npm:@nx/web", "type": "static" }, { - "source": "npm:@nrwl/workspace@16.4.2", - "target": "npm:@nx/workspace@16.4.2", + "source": "npm:@nrwl/webpack", + "target": "npm:@nx/webpack", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:@nrwl/workspace@16.4.2", + "source": "npm:@nrwl/workspace", + "target": "npm:@nx/workspace", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:@nx/devkit", + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/build-angular", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:@parcel/watcher", + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/core", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:chalk", + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/schematics", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:chokidar", + "source": "npm:@nx/angular", + "target": "npm:@schematics/angular", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:cli-cursor", + "source": "npm:@nx/angular", + "target": "npm:esbuild", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:cli-spinners", + "source": "npm:@nx/angular", + "target": "npm:rxjs", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:dotenv", + "source": "npm:@nx/angular", + "target": "npm:@nrwl/angular", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:figures", + "source": "npm:@nx/angular", + "target": "npm:@nx/cypress", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:flat", + "source": "npm:@nx/angular", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:ignore", + "source": "npm:@nx/angular", + "target": "npm:@nx/eslint", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:minimatch", + "source": "npm:@nx/angular", + "target": "npm:@nx/jest", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:npm-run-path", + "source": "npm:@nx/angular", + "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:nx@16.4.2", + "source": "npm:@nx/angular", + "target": "npm:@nx/web", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:open", + "source": "npm:@nx/angular", + "target": "npm:@nx/webpack", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:rxjs", + "source": "npm:@nx/angular", + "target": "npm:@nx/workspace", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:tmp", + "source": "npm:@nx/angular", + "target": "npm:@phenomnomnominal/tsquery", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:tslib", + "source": "npm:@nx/angular", + "target": "npm:@typescript-eslint/type-utils", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:yargs", + "source": "npm:@nx/angular", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:@nx/workspace@16.4.2", - "target": "npm:yargs-parser", + "source": "npm:@nx/angular", + "target": "npm:find-cache-dir", "type": "static" }, { - "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", - "target": "npm:js-yaml", + "source": "npm:@nx/angular", + "target": "npm:ignore", "type": "static" }, { - "source": "npm:@yarnpkg/parsers@3.0.0-rc.46", - "target": "npm:tslib", + "source": "npm:@nx/angular", + "target": "npm:magic-string", "type": "static" }, { - "source": "npm:glob@7.1.4", - "target": "npm:fs.realpath", + "source": "npm:@nx/angular", + "target": "npm:minimatch", "type": "static" }, { - "source": "npm:glob@7.1.4", - "target": "npm:inflight", + "source": "npm:@nx/angular", + "target": "npm:semver@7.5.3", "type": "static" }, { - "source": "npm:glob@7.1.4", - "target": "npm:inherits", + "source": "npm:@nx/angular", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:glob@7.1.4", - "target": "npm:minimatch", + "source": "npm:@nx/angular", + "target": "npm:webpack", "type": "static" }, { - "source": "npm:glob@7.1.4", - "target": "npm:once", + "source": "npm:@nx/angular", + "target": "npm:webpack-merge", "type": "static" }, { - "source": "npm:glob@7.1.4", - "target": "npm:path-is-absolute", + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", "type": "static" }, { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@swc-node/register", + "source": "npm:@nx/cypress", + "target": "npm:cypress", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@swc/core", + "source": "npm:@nx/cypress", + "target": "npm:@nrwl/cypress", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nrwl/tao@16.4.2", + "source": "npm:@nx/cypress", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@parcel/watcher", + "source": "npm:@nx/cypress", + "target": "npm:@nx/eslint", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@yarnpkg/lockfile", + "source": "npm:@nx/cypress", + "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@yarnpkg/parsers@3.0.0-rc.46", + "source": "npm:@nx/cypress", + "target": "npm:@phenomnomnominal/tsquery", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@zkochan/js-yaml", + "source": "npm:@nx/cypress", + "target": "npm:detect-port", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:axios", + "source": "npm:@nx/cypress", + "target": "npm:semver@7.5.3", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:chalk", + "source": "npm:@nx/cypress", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:cli-cursor", + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:cli-spinners", + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:cliui", + "source": "npm:@nx/devkit", + "target": "npm:nx", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:dotenv", + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", "type": "static" }, { - "source": "npm:nx@16.4.2", + "source": "npm:@nx/devkit", "target": "npm:enquirer", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:fast-glob", + "source": "npm:@nx/devkit", + "target": "npm:ignore", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:figures", + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:flat", + "source": "npm:@nx/devkit", + "target": "npm:tmp", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:fs-extra", + "source": "npm:@nx/devkit", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:glob@7.1.4", + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:ignore", + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:js-yaml@4.1.0", + "source": "npm:@nx/eslint", + "target": "npm:eslint", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:jsonc-parser", + "source": "npm:@nx/eslint", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:lines-and-columns", + "source": "npm:@nx/eslint", + "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:minimatch", + "source": "npm:@nx/eslint", + "target": "npm:@nx/linter", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:npm-run-path", + "source": "npm:@nx/eslint", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:open", + "source": "npm:@nx/eslint", + "target": "npm:typescript", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:semver@7.5.3", + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/parser", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:string-width", + "source": "npm:@nx/eslint-plugin", + "target": "npm:eslint-config-prettier", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:strong-log-transformer", + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nrwl/eslint-plugin-nx", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:tar-stream", + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:tmp", + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:tsconfig-paths", + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:tslib", + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/utils", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:v8-compile-cache", + "source": "npm:@nx/eslint-plugin", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:yargs", + "source": "npm:@nx/eslint-plugin", + "target": "npm:confusing-browser-globals", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:yargs-parser", + "source": "npm:@nx/eslint-plugin", + "target": "npm:jsonc-eslint-parser", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-darwin-arm64@16.4.2", + "source": "npm:@nx/eslint-plugin", + "target": "npm:semver@7.5.3", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-darwin-x64@16.4.2", + "source": "npm:@nx/eslint-plugin", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-freebsd-x64", + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.4.2", + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-arm64-gnu@16.4.2", + "source": "npm:@nx/jest", + "target": "npm:@jest/reporters", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-arm64-musl@16.4.2", + "source": "npm:@nx/jest", + "target": "npm:@jest/test-result", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-x64-gnu@16.4.2", + "source": "npm:@nx/jest", + "target": "npm:@nrwl/jest", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-linux-x64-musl@16.4.2", + "source": "npm:@nx/jest", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-win32-arm64-msvc@16.4.2", + "source": "npm:@nx/jest", + "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:nx@16.4.2", - "target": "npm:@nx/nx-win32-x64-msvc@16.4.2", + "source": "npm:@nx/jest", + "target": "npm:@phenomnomnominal/tsquery", "type": "static" }, { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", + "source": "npm:@nx/jest", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", + "source": "npm:@nx/jest", + "target": "npm:identity-obj-proxy", "type": "static" }, { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", + "source": "npm:@nx/jest", + "target": "npm:jest-config", "type": "static" }, { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", + "source": "npm:@nx/jest", + "target": "npm:jest-resolve", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:eslint", + "source": "npm:@nx/jest", + "target": "npm:jest-util", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:@nrwl/linter", + "source": "npm:@nx/jest", + "target": "npm:resolve.exports", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:@nx/devkit@16.1.1", + "source": "npm:@nx/jest", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:@nx/js@16.1.1", + "source": "npm:@nx/js", + "target": "npm:verdaccio", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:@phenomnomnominal/tsquery", + "source": "npm:@nx/js", + "target": "npm:@babel/core", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:tmp", + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-decorators", "type": "static" }, { - "source": "npm:@nx/linter", - "target": "npm:tslib", + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-class-properties", "type": "static" }, { - "source": "npm:@nrwl/devkit@16.1.1", - "target": "npm:@nx/devkit@16.1.1", + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-runtime", "type": "static" }, { - "source": "npm:@nrwl/js@16.1.1", - "target": "npm:@nx/js@16.1.1", + "source": "npm:@nx/js", + "target": "npm:@babel/preset-env", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:nx", + "source": "npm:@nx/js", + "target": "npm:@babel/preset-typescript", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:@nrwl/devkit@16.1.1", + "source": "npm:@nx/js", + "target": "npm:@babel/runtime", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:ejs", + "source": "npm:@nx/js", + "target": "npm:@nrwl/js", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:ignore", + "source": "npm:@nx/js", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:semver@7.3.4", + "source": "npm:@nx/js", + "target": "npm:@nx/workspace", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:tmp", + "source": "npm:@nx/js", + "target": "npm:@phenomnomnominal/tsquery", "type": "static" }, { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:tslib", + "source": "npm:@nx/js", + "target": "npm:babel-plugin-const-enum", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/core", + "source": "npm:@nx/js", + "target": "npm:babel-plugin-macros", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/plugin-proposal-class-properties", + "source": "npm:@nx/js", + "target": "npm:babel-plugin-transform-typescript-metadata", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/plugin-proposal-decorators", + "source": "npm:@nx/js", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/plugin-transform-runtime", + "source": "npm:@nx/js", + "target": "npm:columnify", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/preset-env", + "source": "npm:@nx/js", + "target": "npm:detect-port", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/preset-typescript", + "source": "npm:@nx/js", + "target": "npm:fast-glob@3.2.7", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@babel/runtime", + "source": "npm:@nx/js", + "target": "npm:fs-extra", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@nrwl/js@16.1.1", + "source": "npm:@nx/js", + "target": "npm:ignore", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@nx/devkit@16.1.1", + "source": "npm:@nx/js", + "target": "npm:js-tokens", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@nx/workspace", + "source": "npm:@nx/js", + "target": "npm:minimatch", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:@phenomnomnominal/tsquery", + "source": "npm:@nx/js", + "target": "npm:npm-package-arg", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:babel-plugin-const-enum", + "source": "npm:@nx/js", + "target": "npm:npm-run-path", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:babel-plugin-macros", + "source": "npm:@nx/js", + "target": "npm:ora@5.3.0", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:babel-plugin-transform-typescript-metadata", + "source": "npm:@nx/js", + "target": "npm:semver@7.5.3", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:chalk", + "source": "npm:@nx/js", + "target": "npm:source-map-support@0.5.19", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:fast-glob", + "source": "npm:@nx/js", + "target": "npm:ts-node", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:fs-extra", + "source": "npm:@nx/js", + "target": "npm:tsconfig-paths", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:ignore", + "source": "npm:@nx/js", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:js-tokens", + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:minimatch", + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:source-map-support@0.5.19", + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:tree-kill", + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", "type": "static" }, { - "source": "npm:@nx/js@16.1.1", - "target": "npm:tslib", + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", "type": "static" }, { @@ -23415,102 +21817,102 @@ "type": "static" }, { - "source": "npm:semver@7.3.4", - "target": "npm:lru-cache@6.0.0", + "source": "npm:ora@5.3.0", + "target": "npm:bl", "type": "static" }, { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", + "source": "npm:ora@5.3.0", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", + "source": "npm:ora@5.3.0", + "target": "npm:cli-cursor", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", + "source": "npm:ora@5.3.0", + "target": "npm:cli-spinners", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", + "source": "npm:ora@5.3.0", + "target": "npm:is-interactive", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", + "source": "npm:ora@5.3.0", + "target": "npm:log-symbols", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", + "source": "npm:ora@5.3.0", + "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:@nx/linter@16.4.2", + "source": "npm:ora@5.3.0", + "target": "npm:wcwidth", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:@phenomnomnominal/tsquery", + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:dotenv", + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra", + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map@0.6.1", "type": "static" }, { - "source": "npm:@nx/plugin", - "target": "npm:tslib", + "source": "npm:@nx/linter", + "target": "npm:@nx/eslint", "type": "static" }, { - "source": "npm:@nrwl/linter@16.4.2", - "target": "npm:@nx/linter@16.4.2", + "source": "npm:@nx/plugin", + "target": "npm:@nrwl/nx-plugin", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:eslint", + "source": "npm:@nx/plugin", + "target": "npm:@nx/devkit", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nrwl/linter@16.4.2", + "source": "npm:@nx/plugin", + "target": "npm:@nx/eslint", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:@nx/devkit", + "source": "npm:@nx/plugin", + "target": "npm:@nx/jest", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", + "source": "npm:@nx/plugin", "target": "npm:@nx/js", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", + "source": "npm:@nx/plugin", "target": "npm:@phenomnomnominal/tsquery", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", - "target": "npm:tmp", + "source": "npm:@nx/plugin", + "target": "npm:fs-extra", "type": "static" }, { - "source": "npm:@nx/linter@16.4.2", + "source": "npm:@nx/plugin", "target": "npm:tslib", "type": "static" }, @@ -23534,11 +21936,6 @@ "target": "npm:chalk", "type": "static" }, - { - "source": "npm:@nx/web", - "target": "npm:chokidar", - "type": "static" - }, { "source": "npm:@nx/web", "target": "npm:detect-port", @@ -23549,11 +21946,6 @@ "target": "npm:http-server", "type": "static" }, - { - "source": "npm:@nx/web", - "target": "npm:ignore", - "type": "static" - }, { "source": "npm:@nx/web", "target": "npm:tslib", @@ -23599,11 +21991,6 @@ "target": "npm:chalk", "type": "static" }, - { - "source": "npm:@nx/webpack", - "target": "npm:chokidar", - "type": "static" - }, { "source": "npm:@nx/webpack", "target": "npm:copy-webpack-plugin@10.2.4", @@ -23619,11 +22006,6 @@ "target": "npm:css-minimizer-webpack-plugin", "type": "static" }, - { - "source": "npm:@nx/webpack", - "target": "npm:dotenv", - "type": "static" - }, { "source": "npm:@nx/webpack", "target": "npm:fork-ts-checker-webpack-plugin", @@ -23631,12 +22013,7 @@ }, { "source": "npm:@nx/webpack", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less", + "target": "npm:less@4.1.3", "type": "static" }, { @@ -23724,16 +22101,6 @@ "target": "npm:ts-loader", "type": "static" }, - { - "source": "npm:@nx/webpack", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tsconfig-paths", - "type": "static" - }, { "source": "npm:@nx/webpack", "target": "npm:tsconfig-paths-webpack-plugin", @@ -23864,6 +22231,56 @@ "target": "npm:safer-buffer", "type": "static" }, + { + "source": "npm:less@4.1.3", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:source-map@0.6.1", + "type": "static" + }, { "source": "npm:loader-utils@2.0.4", "target": "npm:big.js", @@ -23880,8 +22297,13 @@ "type": "static" }, { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.2", "type": "static" }, { @@ -23916,7 +22338,7 @@ }, { "source": "npm:postcss-loader@6.2.1", - "target": "npm:semver@7.5.3", + "target": "npm:semver", "type": "static" }, { @@ -23939,11 +22361,6 @@ "target": "npm:neo-async", "type": "static" }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, { "source": "npm:source-map-loader@3.0.2", "target": "npm:webpack", @@ -23971,12 +22388,7 @@ }, { "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@parcel/watcher", + "target": "npm:@nx/devkit", "type": "static" }, { @@ -23986,47 +22398,7 @@ }, { "source": "npm:@nx/workspace", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:npm-run-path", + "target": "npm:enquirer", "type": "static" }, { @@ -24034,86 +22406,16 @@ "target": "npm:nx", "type": "static" }, - { - "source": "npm:@nx/workspace", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tmp", - "type": "static" - }, { "source": "npm:@nx/workspace", "target": "npm:tslib", "type": "static" }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs", - "type": "static" - }, { "source": "npm:@nx/workspace", "target": "npm:yargs-parser", "type": "static" }, - { - "source": "npm:@nrwl/devkit@16.1.1", - "target": "npm:@nx/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:@nrwl/devkit@16.1.1", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:semver@7.3.4", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.1.1", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.3.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, { "source": "npm:@octokit/core", "target": "npm:@octokit/auth-token", @@ -24259,16 +22561,6 @@ "target": "npm:@octokit/openapi-types", "type": "static" }, - { - "source": "npm:@parcel/watcher", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:@parcel/watcher", - "target": "npm:node-gyp-build", - "type": "static" - }, { "source": "npm:@phenomnomnominal/tsquery", "target": "npm:typescript", @@ -24301,12 +22593,12 @@ }, { "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/core", + "target": "npm:@angular-devkit/core@16.0.6", "type": "static" }, { "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/schematics", + "target": "npm:@angular-devkit/schematics@16.0.6", "type": "static" }, { @@ -24314,6 +22606,66 @@ "target": "npm:jsonc-parser", "type": "static" }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:@angular-devkit/core@16.0.6", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:magic-string@0.30.0", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:magic-string@0.30.0", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, { "source": "npm:@semantic-release/changelog", "target": "npm:semantic-release", @@ -24401,7 +22753,7 @@ }, { "source": "npm:@semantic-release/exec", - "target": "npm:execa@5.1.1", + "target": "npm:execa", "type": "static" }, { @@ -24414,51 +22766,6 @@ "target": "npm:parse-json", "type": "static" }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", - "type": "static" - }, { "source": "npm:@semantic-release/git", "target": "npm:semantic-release", @@ -24486,7 +22793,7 @@ }, { "source": "npm:@semantic-release/git", - "target": "npm:execa@5.1.1", + "target": "npm:execa", "type": "static" }, { @@ -24504,51 +22811,6 @@ "target": "npm:p-reduce", "type": "static" }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", - "type": "static" - }, { "source": "npm:@semantic-release/github", "target": "npm:semantic-release", @@ -24606,7 +22868,7 @@ }, { "source": "npm:@semantic-release/github", - "target": "npm:https-proxy-agent@7.0.2", + "target": "npm:https-proxy-agent", "type": "static" }, { @@ -24634,11 +22896,6 @@ "target": "npm:url-join@5.0.0", "type": "static" }, - { - "source": "npm:agent-base@7.1.0", - "target": "npm:debug", - "type": "static" - }, { "source": "npm:aggregate-error@5.0.0", "target": "npm:clean-stack@5.2.0", @@ -24711,7 +22968,7 @@ }, { "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:agent-base@7.1.0", + "target": "npm:agent-base", "type": "static" }, { @@ -24719,16 +22976,6 @@ "target": "npm:debug", "type": "static" }, - { - "source": "npm:https-proxy-agent@7.0.2", - "target": "npm:agent-base@7.1.0", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@7.0.2", - "target": "npm:debug", - "type": "static" - }, { "source": "npm:@semantic-release/npm", "target": "npm:semantic-release", @@ -24859,31 +23106,6 @@ "target": "npm:strip-final-newline@3.0.0", "type": "static" }, - { - "source": "npm:hosted-git-info@7.0.1", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:hosted-git-info@7.0.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - }, { "source": "npm:npm-run-path@5.1.0", "target": "npm:path-key@4.0.0", @@ -24916,7 +23138,7 @@ }, { "source": "npm:read-pkg@9.0.1", - "target": "npm:normalize-package-data@6.0.0", + "target": "npm:normalize-package-data", "type": "static" }, { @@ -24966,7 +23188,7 @@ }, { "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:get-stream@7.0.1", + "target": "npm:get-stream", "type": "static" }, { @@ -24989,6 +23211,26 @@ "target": "npm:read-pkg-up", "type": "static" }, + { + "source": "npm:@sigstore/bundle", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:make-fetch-happen", + "type": "static" + }, { "source": "npm:@sigstore/tuf", "target": "npm:@sigstore/protobuf-specs", @@ -25014,6 +23256,16 @@ "target": "npm:@swc/core", "type": "static" }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:typescript", + "type": "static" + }, { "source": "npm:@swc-node/register", "target": "npm:@swc-node/core", @@ -25026,7 +23278,7 @@ }, { "source": "npm:@swc-node/register", - "target": "npm:chalk", + "target": "npm:colorette", "type": "static" }, { @@ -25045,13 +23297,13 @@ "type": "static" }, { - "source": "npm:@swc-node/register", - "target": "npm:typescript@4.9.5", + "source": "npm:@swc-node/sourcemap-support", + "target": "npm:source-map-support", "type": "static" }, { "source": "npm:@swc-node/sourcemap-support", - "target": "npm:source-map-support", + "target": "npm:tslib", "type": "static" }, { @@ -25099,6 +23351,16 @@ "target": "npm:@swc/helpers", "type": "static" }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/counter", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/types", + "type": "static" + }, { "source": "npm:@swc/core", "target": "npm:@swc/core-darwin-arm64", @@ -25166,7 +23428,7 @@ }, { "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.2", + "target": "npm:minimatch@9.0.3", "type": "static" }, { @@ -25175,7 +23437,7 @@ "type": "static" }, { - "source": "npm:minimatch@9.0.2", + "source": "npm:minimatch@9.0.3", "target": "npm:brace-expansion@2.0.1", "type": "static" }, @@ -25274,6 +23536,11 @@ "target": "npm:@types/node", "type": "static" }, + { + "source": "npm:@types/cors", + "target": "npm:@types/node", + "type": "static" + }, { "source": "npm:@types/eslint", "target": "npm:@types/estree", @@ -25394,6 +23661,11 @@ "target": "npm:@types/node", "type": "static" }, + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + }, { "source": "npm:@types/responselike", "target": "npm:@types/node", @@ -25476,12 +23748,17 @@ }, { "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils@5.60.1", + "target": "npm:@typescript-eslint/type-utils@6.15.0", "type": "static" }, { "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils@5.60.1", + "target": "npm:@typescript-eslint/utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", "type": "static" }, { @@ -25491,7 +23768,7 @@ }, { "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:grapheme-splitter", + "target": "npm:graphemer", "type": "static" }, { @@ -25501,7 +23778,7 @@ }, { "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare-lite", + "target": "npm:natural-compare", "type": "static" }, { @@ -25511,89 +23788,74 @@ }, { "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:tsutils", + "target": "npm:ts-api-utils", "type": "static" }, { - "source": "npm:@typescript-eslint/type-utils@5.60.1", + "source": "npm:@typescript-eslint/type-utils@6.15.0", "target": "npm:eslint", "type": "static" }, { - "source": "npm:@typescript-eslint/type-utils@5.60.1", + "source": "npm:@typescript-eslint/type-utils@6.15.0", "target": "npm:@typescript-eslint/typescript-estree", "type": "static" }, { - "source": "npm:@typescript-eslint/type-utils@5.60.1", - "target": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:@typescript-eslint/utils@6.15.0", "type": "static" }, { - "source": "npm:@typescript-eslint/type-utils@5.60.1", + "source": "npm:@typescript-eslint/type-utils@6.15.0", "target": "npm:debug", "type": "static" }, { - "source": "npm:@typescript-eslint/type-utils@5.60.1", - "target": "npm:tsutils", + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:ts-api-utils", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:eslint", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:@eslint-community/eslint-utils", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:@types/json-schema", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:@types/semver", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:@typescript-eslint/scope-manager", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:@typescript-eslint/types", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:@typescript-eslint/typescript-estree", "type": "static" }, { - "source": "npm:@typescript-eslint/utils@5.60.1", - "target": "npm:eslint-scope@5.1.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@5.60.1", + "source": "npm:@typescript-eslint/utils@6.15.0", "target": "npm:semver", "type": "static" }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:estraverse@4.3.0", - "type": "static" - }, { "source": "npm:@typescript-eslint/parser", "target": "npm:eslint", @@ -25614,6 +23876,11 @@ "target": "npm:@typescript-eslint/typescript-estree", "type": "static" }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, { "source": "npm:@typescript-eslint/parser", "target": "npm:debug", @@ -25636,7 +23903,7 @@ }, { "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:@typescript-eslint/typescript-estree@6.13.1", "type": "static" }, { @@ -25651,51 +23918,51 @@ }, { "source": "npm:@typescript-eslint/type-utils", - "target": "npm:tsutils", + "target": "npm:ts-api-utils", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", - "target": "npm:@typescript-eslint/types@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", - "target": "npm:@typescript-eslint/visitor-keys@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:debug", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:globby", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:is-glob", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:semver", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", - "target": "npm:tsutils", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:ts-api-utils", "type": "static" }, { - "source": "npm:@typescript-eslint/visitor-keys@5.59.7", - "target": "npm:@typescript-eslint/types@5.59.7", + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/visitor-keys@5.59.7", + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", "target": "npm:eslint-visitor-keys", "type": "static" }, @@ -25731,7 +23998,7 @@ }, { "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tsutils", + "target": "npm:ts-api-utils", "type": "static" }, { @@ -25756,22 +24023,17 @@ }, { "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager@5.59.7", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types@5.59.7", + "target": "npm:@typescript-eslint/scope-manager@6.13.1", "type": "static" }, { "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree@5.59.7", + "target": "npm:@typescript-eslint/types@6.13.1", "type": "static" }, { "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint-scope@5.1.1", + "target": "npm:@typescript-eslint/typescript-estree@6.13.1", "type": "static" }, { @@ -25780,70 +24042,60 @@ "type": "static" }, { - "source": "npm:@typescript-eslint/scope-manager@5.59.7", - "target": "npm:@typescript-eslint/types@5.59.7", + "source": "npm:@typescript-eslint/scope-manager@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/scope-manager@5.59.7", - "target": "npm:@typescript-eslint/visitor-keys@5.59.7", + "source": "npm:@typescript-eslint/scope-manager@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", - "target": "npm:@typescript-eslint/types@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", - "target": "npm:@typescript-eslint/visitor-keys@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:debug", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:globby", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:is-glob", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", "target": "npm:semver", "type": "static" }, { - "source": "npm:@typescript-eslint/typescript-estree@5.59.7", - "target": "npm:tsutils", + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:ts-api-utils", "type": "static" }, { - "source": "npm:@typescript-eslint/visitor-keys@5.59.7", - "target": "npm:@typescript-eslint/types@5.59.7", + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", "type": "static" }, { - "source": "npm:@typescript-eslint/visitor-keys@5.59.7", + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", "target": "npm:eslint-visitor-keys", "type": "static" }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:estraverse@4.3.0", - "type": "static" - }, { "source": "npm:@typescript-eslint/visitor-keys", "target": "npm:@typescript-eslint/types", @@ -25891,7 +24143,7 @@ }, { "source": "npm:@verdaccio/config", - "target": "npm:minimatch@3.1.2", + "target": "npm:minimatch@7.4.6", "type": "static" }, { @@ -25899,14 +24151,19 @@ "target": "npm:yup", "type": "static" }, + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + }, { "source": "npm:js-yaml@4.1.0", "target": "npm:argparse@2.0.1", "type": "static" }, { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", + "source": "npm:minimatch@7.4.6", + "target": "npm:brace-expansion@2.0.1", "type": "static" }, { @@ -25936,17 +24193,7 @@ }, { "source": "npm:@verdaccio/core", - "target": "npm:semver@7.5.0", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.0", - "target": "npm:lru-cache@6.0.0", + "target": "npm:semver", "type": "static" }, { @@ -25971,7 +24218,7 @@ }, { "source": "npm:@verdaccio/local-storage", - "target": "npm:async", + "target": "npm:async@3.2.4", "type": "static" }, { @@ -26156,7 +24403,7 @@ }, { "source": "npm:@verdaccio/url", - "target": "npm:validator", + "target": "npm:validator@13.9.0", "type": "static" }, { @@ -26171,27 +24418,22 @@ }, { "source": "npm:@verdaccio/utils", - "target": "npm:minimatch@3.1.2", + "target": "npm:minimatch@7.4.6", "type": "static" }, { "source": "npm:@verdaccio/utils", - "target": "npm:semver@7.5.0", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", + "target": "npm:semver", "type": "static" }, { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", "type": "static" }, { - "source": "npm:semver@7.5.0", - "target": "npm:lru-cache@6.0.0", + "source": "npm:minimatch@7.4.6", + "target": "npm:brace-expansion@2.0.1", "type": "static" }, { @@ -26459,21 +24701,6 @@ "target": "npm:debug", "type": "static" }, - { - "source": "npm:agentkeepalive", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:humanize-ms", - "type": "static" - }, { "source": "npm:aggregate-error", "target": "npm:clean-stack", @@ -26546,32 +24773,7 @@ }, { "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", + "target": "npm:picomatch@2.3.1", "type": "static" }, { @@ -26581,7 +24783,7 @@ }, { "source": "npm:aria-query", - "target": "npm:deep-equal", + "target": "npm:dequal", "type": "static" }, { @@ -26595,93 +24797,38 @@ "type": "static" }, { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-shim-unscopables", + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", "type": "static" }, { - "source": "npm:array.prototype.flatmap", + "source": "npm:arraybuffer.prototype.slice", "target": "npm:call-bind", "type": "static" }, { - "source": "npm:array.prototype.flatmap", + "source": "npm:arraybuffer.prototype.slice", "target": "npm:define-properties", "type": "static" }, { - "source": "npm:array.prototype.flatmap", + "source": "npm:arraybuffer.prototype.slice", "target": "npm:es-abstract", "type": "static" }, { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-abstract", + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", "type": "static" }, { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-shim-unscopables", + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", "type": "static" }, { - "source": "npm:array.prototype.tosorted", - "target": "npm:get-intrinsic", + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-shared-array-buffer", "type": "static" }, { @@ -26734,34 +24881,9 @@ "target": "npm:follow-redirects", "type": "static" }, - { - "source": "npm:axios", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env@1.1.0", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - }, { "source": "npm:axobject-query", - "target": "npm:deep-equal", + "target": "npm:dequal", "type": "static" }, { @@ -26816,7 +24938,7 @@ }, { "source": "npm:babel-loader", - "target": "npm:find-cache-dir", + "target": "npm:find-cache-dir@4.0.0", "type": "static" }, { @@ -26824,6 +24946,46 @@ "target": "npm:schema-utils", "type": "static" }, + { + "source": "npm:find-cache-dir@4.0.0", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir@4.0.0", + "target": "npm:pkg-dir@7.0.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + }, + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + }, + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + }, + { + "source": "npm:pkg-dir@7.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + }, { "source": "npm:babel-plugin-const-enum", "target": "npm:@babel/core", @@ -26861,7 +25023,7 @@ }, { "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-instrument@5.2.1", "type": "static" }, { @@ -26869,6 +25031,31 @@ "target": "npm:test-exclude", "type": "static" }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, { "source": "npm:babel-plugin-jest-hoist", "target": "npm:@babel/template", @@ -26921,7 +25108,7 @@ }, { "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.0", + "target": "npm:semver@6.3.1", "type": "static" }, { @@ -27046,7 +25233,7 @@ }, { "source": "npm:bin-check", - "target": "npm:execa", + "target": "npm:execa@0.7.0", "type": "static" }, { @@ -27055,83 +25242,103 @@ "type": "static" }, { - "source": "npm:bin-version", - "target": "npm:execa@5.1.1", + "source": "npm:cross-spawn@5.1.0", + "target": "npm:lru-cache@4.1.5", "type": "static" }, { - "source": "npm:bin-version", - "target": "npm:find-versions", + "source": "npm:cross-spawn@5.1.0", + "target": "npm:shebang-command@1.2.0", "type": "static" }, { - "source": "npm:bin-version-check", - "target": "npm:bin-version", + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which@1.3.1", "type": "static" }, { - "source": "npm:bin-version-check", - "target": "npm:semver@7.5.3", + "source": "npm:execa@0.7.0", + "target": "npm:cross-spawn@5.1.0", "type": "static" }, { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", + "source": "npm:execa@0.7.0", + "target": "npm:get-stream@3.0.0", "type": "static" }, { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", + "source": "npm:execa@0.7.0", + "target": "npm:is-stream@1.1.0", "type": "static" }, { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", + "source": "npm:execa@0.7.0", + "target": "npm:npm-run-path@2.0.2", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", + "source": "npm:execa@0.7.0", + "target": "npm:p-finally", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", + "source": "npm:execa@0.7.0", + "target": "npm:signal-exit", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", + "source": "npm:execa@0.7.0", + "target": "npm:strip-eof", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", + "source": "npm:lru-cache@4.1.5", + "target": "npm:pseudomap", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", + "source": "npm:lru-cache@4.1.5", + "target": "npm:yallist@2.1.2", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key@2.0.1", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", + "source": "npm:which@1.3.1", + "target": "npm:isexe", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", + "source": "npm:bin-version", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:find-versions", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:bin-version", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver-truncate", "type": "static" }, { @@ -27201,7 +25408,7 @@ }, { "source": "npm:body-parser", - "target": "npm:on-finished", + "target": "npm:on-finished@2.4.1", "type": "static" }, { @@ -27229,6 +25436,11 @@ "target": "npm:ms@2.0.0", "type": "static" }, + { + "source": "npm:on-finished@2.4.1", + "target": "npm:ee-first", + "type": "static" + }, { "source": "npm:qs@6.11.0", "target": "npm:side-channel", @@ -27269,6 +25481,221 @@ "target": "npm:fill-range", "type": "static" }, + { + "source": "npm:browser-sync", + "target": "npm:browser-sync-client", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:browser-sync-ui", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:bs-recipes", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:dev-ip", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:easy-extender", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:eazy-logger", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:fs-extra@3.0.1", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:localtunnel", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:opn", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:portscanner", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:resp-modifier", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:rx", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:socket.io", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:ua-parser-js", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:mitt", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:async-each-series", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:socket.io-client", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:stream-throttle", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:jsonfile@3.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:jsonfile@3.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, { "source": "npm:browserslist", "target": "npm:caniuse-lite", @@ -27326,12 +25753,12 @@ }, { "source": "npm:cacache", - "target": "npm:glob@10.3.1", + "target": "npm:glob@10.3.10", "type": "static" }, { "source": "npm:cacache", - "target": "npm:lru-cache@7.18.3", + "target": "npm:lru-cache@10.1.0", "type": "static" }, { @@ -27359,11 +25786,6 @@ "target": "npm:p-map", "type": "static" }, - { - "source": "npm:cacache", - "target": "npm:promise-inflight", - "type": "static" - }, { "source": "npm:cacache", "target": "npm:ssri", @@ -27385,32 +25807,32 @@ "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:foreground-child", "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:jackspeak", "type": "static" }, { - "source": "npm:glob@10.3.1", - "target": "npm:minimatch@9.0.2", + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:minipass", "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:path-scurry", "type": "static" }, { - "source": "npm:minimatch@9.0.2", + "source": "npm:minimatch@9.0.3", "target": "npm:brace-expansion@2.0.1", "type": "static" }, @@ -27464,6 +25886,11 @@ "target": "npm:get-intrinsic", "type": "static" }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + }, { "source": "npm:caniuse-api", "target": "npm:browserslist", @@ -27496,27 +25923,12 @@ }, { "source": "npm:chalk", - "target": "npm:ansi-styles@4.3.0", + "target": "npm:ansi-styles", "type": "static" }, { "source": "npm:chalk", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", + "target": "npm:supports-color", "type": "static" }, { @@ -27581,54 +25993,49 @@ }, { "source": "npm:cli-truncate", - "target": "npm:string-width@5.1.2", + "target": "npm:string-width", "type": "static" }, { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", + "source": "npm:clipanion", + "target": "npm:typanion", "type": "static" }, { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", + "source": "npm:clipanion", + "target": "npm:typanion", "type": "static" }, { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", + "source": "npm:cliui", + "target": "npm:string-width", "type": "static" }, { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", + "source": "npm:cliui", + "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:clipanion", - "target": "npm:typanion", + "source": "npm:cliui", + "target": "npm:wrap-ansi@7.0.0", "type": "static" }, { - "source": "npm:clipanion", - "target": "npm:typanion", + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:ansi-styles", "type": "static" }, { - "source": "npm:cliui", + "source": "npm:wrap-ansi@7.0.0", "target": "npm:string-width", "type": "static" }, { - "source": "npm:cliui", + "source": "npm:wrap-ansi@7.0.0", "target": "npm:strip-ansi", "type": "static" }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - }, { "source": "npm:clone-deep", "target": "npm:is-plain-object", @@ -27654,6 +26061,16 @@ "target": "npm:color-name", "type": "static" }, + { + "source": "npm:columnify", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + }, { "source": "npm:combined-stream", "target": "npm:delayed-stream", @@ -27749,6 +26166,31 @@ "target": "npm:proto-list", "type": "static" }, + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, { "source": "npm:content-disposition", "target": "npm:safe-buffer", @@ -27786,7 +26228,7 @@ }, { "source": "npm:conventional-changelog-writer", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { @@ -27794,16 +26236,6 @@ "target": "npm:split2", "type": "static" }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, { "source": "npm:conventional-commits-parser", "target": "npm:is-text-path", @@ -27846,7 +26278,7 @@ }, { "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob@3.3.0", + "target": "npm:fast-glob", "type": "static" }, { @@ -27856,7 +26288,7 @@ }, { "source": "npm:copy-webpack-plugin", - "target": "npm:globby@13.2.1", + "target": "npm:globby@13.2.2", "type": "static" }, { @@ -27874,63 +26306,33 @@ "target": "npm:serialize-javascript", "type": "static" }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, { "source": "npm:glob-parent@6.0.2", "target": "npm:is-glob", "type": "static" }, { - "source": "npm:globby@13.2.1", + "source": "npm:globby@13.2.2", "target": "npm:dir-glob", "type": "static" }, { - "source": "npm:globby@13.2.1", - "target": "npm:fast-glob@3.3.0", + "source": "npm:globby@13.2.2", + "target": "npm:fast-glob", "type": "static" }, { - "source": "npm:globby@13.2.1", + "source": "npm:globby@13.2.2", "target": "npm:ignore", "type": "static" }, { - "source": "npm:globby@13.2.1", + "source": "npm:globby@13.2.2", "target": "npm:merge2", "type": "static" }, { - "source": "npm:globby@13.2.1", + "source": "npm:globby@13.2.2", "target": "npm:slash@4.0.0", "type": "static" }, @@ -27974,6 +26376,41 @@ "target": "npm:yaml", "type": "static" }, + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + }, { "source": "npm:critters", "target": "npm:chalk", @@ -27986,12 +26423,17 @@ }, { "source": "npm:critters", - "target": "npm:parse5@6.0.1", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:domhandler", "type": "static" }, { "source": "npm:critters", - "target": "npm:parse5-htmlparser2-tree-adapter", + "target": "npm:htmlparser2", "type": "static" }, { @@ -28096,7 +26538,7 @@ }, { "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss@8.4.24", + "target": "npm:postcss", "type": "static" }, { @@ -28109,21 +26551,6 @@ "target": "npm:serialize-javascript", "type": "static" }, - { - "source": "npm:postcss@8.4.24", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss@8.4.24", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss@8.4.24", - "target": "npm:source-map-js", - "type": "static" - }, { "source": "npm:css-select", "target": "npm:boolbase", @@ -28361,7 +26788,7 @@ }, { "source": "npm:cypress", - "target": "npm:@types/node@14.18.53", + "target": "npm:@types/node@16.18.68", "type": "static" }, { @@ -28524,6 +26951,11 @@ "target": "npm:pretty-bytes", "type": "static" }, + { + "source": "npm:cypress", + "target": "npm:process", + "type": "static" + }, { "source": "npm:cypress", "target": "npm:proxy-from-env", @@ -28541,7 +26973,7 @@ }, { "source": "npm:cypress", - "target": "npm:supports-color", + "target": "npm:supports-color@8.1.1", "type": "static" }, { @@ -28576,7 +27008,7 @@ }, { "source": "npm:execa@4.1.0", - "target": "npm:is-stream@2.0.1", + "target": "npm:is-stream", "type": "static" }, { @@ -28629,6 +27061,11 @@ "target": "npm:pump", "type": "static" }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + }, { "source": "npm:dashdash", "target": "npm:assert-plus", @@ -28659,149 +27096,34 @@ "target": "npm:mimic-response@3.1.0", "type": "static" }, - { - "source": "npm:deep-equal", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:es-get-iterator", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:which-collection", - "type": "static" - }, - { - "source": "npm:deep-equal", - "target": "npm:which-typed-array", - "type": "static" - }, { "source": "npm:default-gateway", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", + "target": "npm:execa", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", + "source": "npm:defaults", + "target": "npm:clone", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", + "source": "npm:define-data-property", + "target": "npm:get-intrinsic", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", + "source": "npm:define-data-property", + "target": "npm:gopd", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", + "source": "npm:define-data-property", + "target": "npm:has-property-descriptors", "type": "static" }, { - "source": "npm:defaults", - "target": "npm:clone", + "source": "npm:define-properties", + "target": "npm:define-data-property", "type": "static" }, { @@ -28924,6 +27246,16 @@ "target": "npm:util-deprecate", "type": "static" }, + { + "source": "npm:easy-extender", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:eazy-logger", + "target": "npm:chalk", + "type": "static" + }, { "source": "npm:ecc-jsbn", "target": "npm:jsbn", @@ -28959,6 +27291,81 @@ "target": "npm:once", "type": "static" }, + { + "source": "npm:engine.io", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cookie@0.4.2", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:ws@8.11.0", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:ws@8.11.0", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:xmlhttprequest-ssl", + "type": "static" + }, { "source": "npm:enhanced-resolve", "target": "npm:graceful-fs", @@ -29064,6 +27471,11 @@ "target": "npm:array-buffer-byte-length", "type": "static" }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, { "source": "npm:es-abstract", "target": "npm:available-typed-arrays", @@ -29111,22 +27523,22 @@ }, { "source": "npm:es-abstract", - "target": "npm:has", + "target": "npm:has-property-descriptors", "type": "static" }, { "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", + "target": "npm:has-proto", "type": "static" }, { "source": "npm:es-abstract", - "target": "npm:has-proto", + "target": "npm:has-symbols", "type": "static" }, { "source": "npm:es-abstract", - "target": "npm:has-symbols", + "target": "npm:hasown", "type": "static" }, { @@ -29194,6 +27606,11 @@ "target": "npm:regexp.prototype.flags", "type": "static" }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, { "source": "npm:es-abstract", "target": "npm:safe-regex-test", @@ -29216,62 +27633,32 @@ }, { "source": "npm:es-abstract", - "target": "npm:typed-array-length", + "target": "npm:typed-array-buffer", "type": "static" }, { "source": "npm:es-abstract", - "target": "npm:unbox-primitive", + "target": "npm:typed-array-byte-length", "type": "static" }, { "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:es-get-iterator", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-get-iterator", - "target": "npm:get-intrinsic", + "target": "npm:typed-array-byte-offset", "type": "static" }, { - "source": "npm:es-get-iterator", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-get-iterator", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:es-get-iterator", - "target": "npm:is-map", - "type": "static" - }, - { - "source": "npm:es-get-iterator", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:es-get-iterator", - "target": "npm:is-string", + "source": "npm:es-abstract", + "target": "npm:typed-array-length", "type": "static" }, { - "source": "npm:es-get-iterator", - "target": "npm:isarray", + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", "type": "static" }, { - "source": "npm:es-get-iterator", - "target": "npm:stop-iteration-iterator", + "source": "npm:es-abstract", + "target": "npm:which-typed-array", "type": "static" }, { @@ -29279,19 +27666,14 @@ "target": "npm:get-intrinsic", "type": "static" }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has", - "type": "static" - }, { "source": "npm:es-set-tostringtag", "target": "npm:has-tostringtag", "type": "static" }, { - "source": "npm:es-shim-unscopables", - "target": "npm:has", + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", "type": "static" }, { @@ -29439,16 +27821,41 @@ "target": "npm:source-map@0.6.1", "type": "static" }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, { "source": "npm:eslint", "target": "npm:@eslint/eslintrc", "type": "static" }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, { "source": "npm:eslint", "target": "npm:@humanwhocodes/config-array", "type": "static" }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, { "source": "npm:eslint", "target": "npm:ajv@6.12.6", @@ -29484,11 +27891,6 @@ "target": "npm:eslint-scope", "type": "static" }, - { - "source": "npm:eslint", - "target": "npm:eslint-utils", - "type": "static" - }, { "source": "npm:eslint", "target": "npm:eslint-visitor-keys", @@ -29521,7 +27923,7 @@ }, { "source": "npm:eslint", - "target": "npm:functional-red-black-tree", + "target": "npm:find-up@5.0.0", "type": "static" }, { @@ -29531,17 +27933,17 @@ }, { "source": "npm:eslint", - "target": "npm:globals@13.20.0", + "target": "npm:globals@13.24.0", "type": "static" }, { "source": "npm:eslint", - "target": "npm:ignore", + "target": "npm:graphemer", "type": "static" }, { "source": "npm:eslint", - "target": "npm:import-fresh", + "target": "npm:ignore", "type": "static" }, { @@ -29554,6 +27956,11 @@ "target": "npm:is-glob", "type": "static" }, + { + "source": "npm:eslint", + "target": "npm:is-path-inside", + "type": "static" + }, { "source": "npm:eslint", "target": "npm:js-yaml@4.1.0", @@ -29589,96 +27996,21 @@ "target": "npm:optionator", "type": "static" }, - { - "source": "npm:eslint", - "target": "npm:regexpp", - "type": "static" - }, { "source": "npm:eslint", "target": "npm:strip-ansi", "type": "static" }, - { - "source": "npm:eslint", - "target": "npm:strip-json-comments", - "type": "static" - }, { "source": "npm:eslint", "target": "npm:text-table", "type": "static" }, - { - "source": "npm:eslint", - "target": "npm:v8-compile-cache", - "type": "static" - }, { "source": "npm:eslint-config-prettier", "target": "npm:eslint", "type": "static" }, - { - "source": "npm:eslint-config-standard", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-config-standard", - "target": "npm:eslint-plugin-import", - "type": "static" - }, - { - "source": "npm:eslint-config-standard", - "target": "npm:eslint-plugin-n", - "type": "static" - }, - { - "source": "npm:eslint-config-standard", - "target": "npm:eslint-plugin-promise", - "type": "static" - }, - { - "source": "npm:eslint-config-standard-jsx", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-config-standard-jsx", - "target": "npm:eslint-plugin-react", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, { "source": "npm:eslint-plugin-cypress", "target": "npm:eslint", @@ -29686,307 +28018,12 @@ }, { "source": "npm:eslint-plugin-cypress", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:eslint-utils@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint-utils@2.1.0", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:semver@6.3.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.14.2", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:doctrine@2.1.0", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.14.2", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.14.2", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.14.2", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.14.2", - "target": "npm:strip-bom@3.0.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:eslint-plugin-es", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:ignore", + "target": "npm:globals@13.24.0", "type": "static" }, { - "source": "npm:eslint-plugin-n", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-n", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:eslint-plugin-promise", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.tosorted", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.4", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver@6.3.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:doctrine@2.1.0", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.4", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.4", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.4", - "target": "npm:supports-preserve-symlinks-flag", + "source": "npm:globals@13.24.0", + "target": "npm:type-fest@0.20.2", "type": "static" }, { @@ -29999,16 +28036,6 @@ "target": "npm:estraverse", "type": "static" }, - { - "source": "npm:eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@2.1.0", - "type": "static" - }, { "source": "npm:ajv@6.12.6", "target": "npm:fast-deep-equal", @@ -30029,13 +28056,23 @@ "target": "npm:uri-js", "type": "static" }, + { + "source": "npm:find-up@5.0.0", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up@5.0.0", + "target": "npm:path-exists", + "type": "static" + }, { "source": "npm:glob-parent@6.0.2", "target": "npm:is-glob", "type": "static" }, { - "source": "npm:globals@13.20.0", + "source": "npm:globals@13.24.0", "target": "npm:type-fest@0.20.2", "type": "static" }, @@ -30044,11 +28081,21 @@ "target": "npm:argparse@2.0.1", "type": "static" }, + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + }, { "source": "npm:minimatch@3.1.2", "target": "npm:brace-expansion", "type": "static" }, + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit", + "type": "static" + }, { "source": "npm:espree", "target": "npm:acorn", @@ -30076,77 +28123,47 @@ }, { "source": "npm:execa", - "target": "npm:cross-spawn@5.1.0", + "target": "npm:cross-spawn", "type": "static" }, { "source": "npm:execa", - "target": "npm:get-stream", + "target": "npm:get-stream@6.0.1", "type": "static" }, { "source": "npm:execa", - "target": "npm:is-stream", + "target": "npm:human-signals", "type": "static" }, { "source": "npm:execa", - "target": "npm:npm-run-path@2.0.2", + "target": "npm:is-stream", "type": "static" }, { "source": "npm:execa", - "target": "npm:p-finally", + "target": "npm:merge-stream", "type": "static" }, { "source": "npm:execa", - "target": "npm:signal-exit", + "target": "npm:npm-run-path", "type": "static" }, { "source": "npm:execa", - "target": "npm:strip-eof", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - }, - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key@2.0.1", + "target": "npm:onetime", "type": "static" }, { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", + "source": "npm:execa", + "target": "npm:signal-exit", "type": "static" }, { - "source": "npm:which@1.3.1", - "target": "npm:isexe", + "source": "npm:execa", + "target": "npm:strip-final-newline", "type": "static" }, { @@ -30186,7 +28203,7 @@ }, { "source": "npm:isobject@2.1.0", - "target": "npm:isarray@1.0.0", + "target": "npm:isarray", "type": "static" }, { @@ -30276,7 +28293,7 @@ }, { "source": "npm:express", - "target": "npm:finalhandler", + "target": "npm:finalhandler@1.2.0", "type": "static" }, { @@ -30301,7 +28318,7 @@ }, { "source": "npm:express", - "target": "npm:on-finished", + "target": "npm:on-finished@2.4.1", "type": "static" }, { @@ -30336,12 +28353,12 @@ }, { "source": "npm:express", - "target": "npm:send", + "target": "npm:send@0.18.0", "type": "static" }, { "source": "npm:express", - "target": "npm:serve-static", + "target": "npm:serve-static@1.15.0", "type": "static" }, { @@ -30351,7 +28368,7 @@ }, { "source": "npm:express", - "target": "npm:statuses", + "target": "npm:statuses@2.0.1", "type": "static" }, { @@ -30421,7 +28438,7 @@ }, { "source": "npm:body-parser@1.20.1", - "target": "npm:on-finished", + "target": "npm:on-finished@2.4.1", "type": "static" }, { @@ -30449,6 +28466,46 @@ "target": "npm:ms@2.0.0", "type": "static" }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:on-finished@2.4.1", + "target": "npm:ee-first", + "type": "static" + }, { "source": "npm:qs@6.11.0", "target": "npm:side-channel", @@ -30474,6 +28531,91 @@ "target": "npm:unpipe", "type": "static" }, + { + "source": "npm:send@0.18.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:send@0.18.0", + "type": "static" + }, { "source": "npm:ext-list", "target": "npm:mime-db", @@ -30719,6 +28861,11 @@ "target": "npm:flatted", "type": "static" }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + }, { "source": "npm:flat-cache", "target": "npm:rimraf", @@ -30736,7 +28883,7 @@ }, { "source": "npm:foreground-child", - "target": "npm:signal-exit@4.0.2", + "target": "npm:signal-exit@4.1.0", "type": "static" }, { @@ -30954,46 +29101,6 @@ "target": "npm:functions-have-names", "type": "static" }, - { - "source": "npm:gauge", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:wide-align", - "type": "static" - }, { "source": "npm:get-intrinsic", "target": "npm:function-bind", @@ -31001,17 +29108,17 @@ }, { "source": "npm:get-intrinsic", - "target": "npm:has", + "target": "npm:has-proto", "type": "static" }, { "source": "npm:get-intrinsic", - "target": "npm:has-proto", + "target": "npm:has-symbols", "type": "static" }, { "source": "npm:get-intrinsic", - "target": "npm:has-symbols", + "target": "npm:hasown", "type": "static" }, { @@ -31086,7 +29193,7 @@ }, { "source": "npm:glob", - "target": "npm:minimatch@5.1.6", + "target": "npm:minimatch@3.1.2", "type": "static" }, { @@ -31095,18 +29202,18 @@ "type": "static" }, { - "source": "npm:glob-parent", - "target": "npm:is-glob", + "source": "npm:glob", + "target": "npm:path-is-absolute", "type": "static" }, { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", + "source": "npm:glob-parent", + "target": "npm:is-glob", "type": "static" }, { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion@2.0.1", + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", "type": "static" }, { @@ -31131,7 +29238,7 @@ }, { "source": "npm:globby", - "target": "npm:fast-glob@3.3.0", + "target": "npm:fast-glob", "type": "static" }, { @@ -31149,31 +29256,6 @@ "target": "npm:slash", "type": "static" }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:micromatch", - "type": "static" - }, { "source": "npm:gopd", "target": "npm:get-intrinsic", @@ -31304,41 +29386,6 @@ "target": "npm:uglify-js", "type": "static" }, - { - "source": "npm:har-validator", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:har-validator", - "target": "npm:har-schema", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:has", - "target": "npm:function-bind", - "type": "static" - }, { "source": "npm:has-property-descriptors", "target": "npm:get-intrinsic", @@ -31349,6 +29396,11 @@ "target": "npm:has-symbols", "type": "static" }, + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + }, { "source": "npm:hdr-histogram-js", "target": "npm:@assemblyscript/loader", @@ -31366,7 +29418,7 @@ }, { "source": "npm:hosted-git-info", - "target": "npm:lru-cache@7.18.3", + "target": "npm:lru-cache@10.1.0", "type": "static" }, { @@ -31394,6 +29446,26 @@ "target": "npm:whatwg-encoding", "type": "static" }, + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities", + "type": "static" + }, { "source": "npm:http-errors", "target": "npm:depd", @@ -31411,7 +29483,7 @@ }, { "source": "npm:http-errors", - "target": "npm:statuses", + "target": "npm:statuses@2.0.1", "type": "static" }, { @@ -31441,7 +29513,7 @@ }, { "source": "npm:http-proxy-agent", - "target": "npm:agent-base", + "target": "npm:agent-base@6.0.2", "type": "static" }, { @@ -31449,6 +29521,11 @@ "target": "npm:debug", "type": "static" }, + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + }, { "source": "npm:http-proxy-middleware", "target": "npm:@types/express", @@ -31471,7 +29548,7 @@ }, { "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj@3.0.0", + "target": "npm:is-plain-obj", "type": "static" }, { @@ -31579,11 +29656,6 @@ "target": "npm:debug", "type": "static" }, - { - "source": "npm:humanize-ms", - "target": "npm:ms", - "type": "static" - }, { "source": "npm:iconv-lite", "target": "npm:safer-buffer", @@ -31601,7 +29673,7 @@ }, { "source": "npm:ignore-walk", - "target": "npm:minimatch@9.0.2", + "target": "npm:minimatch@9.0.3", "type": "static" }, { @@ -31610,7 +29682,7 @@ "type": "static" }, { - "source": "npm:minimatch@9.0.2", + "source": "npm:minimatch@9.0.3", "target": "npm:brace-expansion@2.0.1", "type": "static" }, @@ -31766,7 +29838,7 @@ }, { "source": "npm:internal-slot", - "target": "npm:has", + "target": "npm:hasown", "type": "static" }, { @@ -31784,16 +29856,6 @@ "target": "npm:p-is-promise", "type": "static" }, - { - "source": "npm:is-arguments", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-arguments", - "target": "npm:has-tostringtag", - "type": "static" - }, { "source": "npm:is-array-buffer", "target": "npm:call-bind", @@ -31836,7 +29898,7 @@ }, { "source": "npm:is-core-module", - "target": "npm:has", + "target": "npm:hasown", "type": "static" }, { @@ -31864,6 +29926,11 @@ "target": "npm:kind-of", "type": "static" }, + { + "source": "npm:is-number-like", + "target": "npm:lodash.isfinite", + "type": "static" + }, { "source": "npm:is-number-object", "target": "npm:has-tostringtag", @@ -31906,27 +29973,7 @@ }, { "source": "npm:is-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:has-tostringtag", + "target": "npm:which-typed-array", "type": "static" }, { @@ -31934,16 +29981,6 @@ "target": "npm:call-bind", "type": "static" }, - { - "source": "npm:is-weakset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:get-intrinsic", - "type": "static" - }, { "source": "npm:is-wsl", "target": "npm:is-docker", @@ -31996,7 +30033,7 @@ }, { "source": "npm:istanbul-lib-instrument", - "target": "npm:semver@6.3.0", + "target": "npm:semver", "type": "static" }, { @@ -32006,17 +30043,17 @@ }, { "source": "npm:istanbul-lib-report", - "target": "npm:make-dir", + "target": "npm:make-dir@4.0.0", "type": "static" }, { "source": "npm:istanbul-lib-report", - "target": "npm:supports-color@7.2.0", + "target": "npm:supports-color", "type": "static" }, { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", + "source": "npm:make-dir@4.0.0", + "target": "npm:semver", "type": "static" }, { @@ -32101,57 +30138,17 @@ }, { "source": "npm:jest-changed-files", - "target": "npm:execa@5.1.1", + "target": "npm:execa", "type": "static" }, { "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", + "target": "npm:jest-util", "type": "static" }, { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", + "source": "npm:jest-changed-files", + "target": "npm:p-limit", "type": "static" }, { @@ -32191,7 +30188,7 @@ }, { "source": "npm:jest-circus", - "target": "npm:dedent", + "target": "npm:dedent@1.5.1", "type": "static" }, { @@ -32254,6 +30251,51 @@ "target": "npm:stack-utils", "type": "static" }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:dedent@1.5.1", + "target": "npm:babel-plugin-macros@3.1.0", + "type": "static" + }, { "source": "npm:jest-cli", "target": "npm:@jest/core", @@ -32276,12 +30318,12 @@ }, { "source": "npm:jest-cli", - "target": "npm:exit", + "target": "npm:create-jest", "type": "static" }, { "source": "npm:jest-cli", - "target": "npm:graceful-fs", + "target": "npm:exit", "type": "static" }, { @@ -32304,11 +30346,6 @@ "target": "npm:jest-validate", "type": "static" }, - { - "source": "npm:jest-cli", - "target": "npm:prompts", - "type": "static" - }, { "source": "npm:jest-cli", "target": "npm:yargs", @@ -32361,7 +30398,7 @@ }, { "source": "npm:jest-config", - "target": "npm:glob@7.2.3", + "target": "npm:glob", "type": "static" }, { @@ -32434,41 +30471,6 @@ "target": "npm:strip-json-comments", "type": "static" }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, { "source": "npm:jest-diff", "target": "npm:chalk", @@ -33036,7 +31038,7 @@ }, { "source": "npm:jest-runtime", - "target": "npm:glob@7.2.3", + "target": "npm:glob", "type": "static" }, { @@ -33089,41 +31091,6 @@ "target": "npm:strip-bom", "type": "static" }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, { "source": "npm:jest-snapshot", "target": "npm:@babel/core", @@ -33144,11 +31111,6 @@ "target": "npm:@babel/plugin-syntax-typescript", "type": "static" }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/traverse", - "type": "static" - }, { "source": "npm:jest-snapshot", "target": "npm:@babel/types", @@ -33169,16 +31131,6 @@ "target": "npm:@jest/types", "type": "static" }, - { - "source": "npm:jest-snapshot", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@types/prettier", - "type": "static" - }, { "source": "npm:jest-snapshot", "target": "npm:babel-preset-current-node-syntax", @@ -33266,7 +31218,7 @@ }, { "source": "npm:jest-util", - "target": "npm:picomatch", + "target": "npm:picomatch@2.3.1", "type": "static" }, { @@ -33356,7 +31308,12 @@ }, { "source": "npm:jest-worker", - "target": "npm:supports-color", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", "type": "static" }, { @@ -33431,7 +31388,7 @@ }, { "source": "npm:jsdom", - "target": "npm:https-proxy-agent", + "target": "npm:https-proxy-agent@5.0.1", "type": "static" }, { @@ -33461,7 +31418,7 @@ }, { "source": "npm:jsdom", - "target": "npm:tough-cookie@4.1.3", + "target": "npm:tough-cookie", "type": "static" }, { @@ -33499,6 +31456,11 @@ "target": "npm:xml-name-validator", "type": "static" }, + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + }, { "source": "npm:form-data@4.0.0", "target": "npm:asynckit", @@ -33515,23 +31477,13 @@ "type": "static" }, { - "source": "npm:tough-cookie@4.1.3", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.3", - "target": "npm:punycode", + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:agent-base@6.0.2", "type": "static" }, { - "source": "npm:tough-cookie@4.1.3", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.3", - "target": "npm:url-parse", + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:debug", "type": "static" }, { @@ -33629,11 +31581,6 @@ "target": "npm:server-destroy", "type": "static" }, - { - "source": "npm:json-server", - "target": "npm:standard", - "type": "static" - }, { "source": "npm:json-server", "target": "npm:yargs", @@ -33686,57 +31633,67 @@ }, { "source": "npm:jsonwebtoken", - "target": "npm:lodash", + "target": "npm:lodash.includes", "type": "static" }, { "source": "npm:jsonwebtoken", - "target": "npm:ms", + "target": "npm:lodash.isboolean", "type": "static" }, { "source": "npm:jsonwebtoken", - "target": "npm:semver", + "target": "npm:lodash.isinteger", "type": "static" }, { - "source": "npm:jsprim", - "target": "npm:assert-plus", + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isnumber", "type": "static" }, { - "source": "npm:jsprim", - "target": "npm:extsprintf", + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isplainobject", "type": "static" }, { - "source": "npm:jsprim", - "target": "npm:json-schema", + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isstring", "type": "static" }, { - "source": "npm:jsprim", - "target": "npm:verror", + "source": "npm:jsonwebtoken", + "target": "npm:lodash.once", "type": "static" }, { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", + "source": "npm:jsonwebtoken", + "target": "npm:ms", "type": "static" }, { - "source": "npm:jsx-ast-utils", - "target": "npm:array.prototype.flat", + "source": "npm:jsonwebtoken", + "target": "npm:semver", "type": "static" }, { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", + "source": "npm:jsprim", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:extsprintf", "type": "static" }, { - "source": "npm:jsx-ast-utils", - "target": "npm:object.values", + "source": "npm:jsprim", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:verror", "type": "static" }, { @@ -33871,7 +31828,7 @@ }, { "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.1", + "target": "npm:semver@5.7.2", "type": "static" }, { @@ -33891,17 +31848,12 @@ }, { "source": "npm:lint-staged", - "target": "npm:chalk@5.2.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cli-truncate", + "target": "npm:chalk@5.3.0", "type": "static" }, { "source": "npm:lint-staged", - "target": "npm:commander@10.0.1", + "target": "npm:commander@11.0.0", "type": "static" }, { @@ -33911,17 +31863,17 @@ }, { "source": "npm:lint-staged", - "target": "npm:execa@7.1.1", + "target": "npm:execa@7.2.0", "type": "static" }, { "source": "npm:lint-staged", - "target": "npm:lilconfig", + "target": "npm:lilconfig@2.1.0", "type": "static" }, { "source": "npm:lint-staged", - "target": "npm:listr2@5.0.8", + "target": "npm:listr2@6.6.1", "type": "static" }, { @@ -33931,137 +31883,142 @@ }, { "source": "npm:lint-staged", - "target": "npm:normalize-path", + "target": "npm:pidtree", "type": "static" }, { "source": "npm:lint-staged", - "target": "npm:object-inspect", + "target": "npm:string-argv", "type": "static" }, { "source": "npm:lint-staged", - "target": "npm:pidtree", + "target": "npm:yaml@2.3.1", "type": "static" }, { - "source": "npm:lint-staged", - "target": "npm:string-argv", + "source": "npm:ansi-escapes@5.0.0", + "target": "npm:type-fest@1.4.0", "type": "static" }, { - "source": "npm:lint-staged", - "target": "npm:yaml@2.3.1", + "source": "npm:cli-cursor@4.0.0", + "target": "npm:restore-cursor@4.0.0", "type": "static" }, { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", + "source": "npm:cli-truncate@3.1.0", + "target": "npm:slice-ansi@5.0.0", "type": "static" }, { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", + "source": "npm:cli-truncate@3.1.0", + "target": "npm:string-width@5.1.2", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:cross-spawn", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:get-stream@6.0.1", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:human-signals@4.3.1", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:is-stream@3.0.0", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:merge-stream", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:npm-run-path@5.1.0", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:onetime@6.0.0", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:signal-exit", "type": "static" }, { - "source": "npm:execa@7.1.1", + "source": "npm:execa@7.2.0", "target": "npm:strip-final-newline@3.0.0", "type": "static" }, { - "source": "npm:listr2@5.0.8", + "source": "npm:listr2@6.6.1", "target": "npm:enquirer", "type": "static" }, { - "source": "npm:listr2@5.0.8", - "target": "npm:cli-truncate@2.1.0", + "source": "npm:listr2@6.6.1", + "target": "npm:cli-truncate@3.1.0", "type": "static" }, { - "source": "npm:listr2@5.0.8", + "source": "npm:listr2@6.6.1", "target": "npm:colorette", "type": "static" }, { - "source": "npm:listr2@5.0.8", - "target": "npm:log-update", + "source": "npm:listr2@6.6.1", + "target": "npm:eventemitter3@5.0.1", "type": "static" }, { - "source": "npm:listr2@5.0.8", - "target": "npm:p-map", + "source": "npm:listr2@6.6.1", + "target": "npm:log-update@5.0.1", "type": "static" }, { - "source": "npm:listr2@5.0.8", + "source": "npm:listr2@6.6.1", "target": "npm:rfdc", "type": "static" }, { - "source": "npm:listr2@5.0.8", - "target": "npm:rxjs", + "source": "npm:listr2@6.6.1", + "target": "npm:wrap-ansi@8.1.0", "type": "static" }, { - "source": "npm:listr2@5.0.8", - "target": "npm:through", + "source": "npm:log-update@5.0.1", + "target": "npm:ansi-escapes@5.0.0", "type": "static" }, { - "source": "npm:listr2@5.0.8", - "target": "npm:wrap-ansi", + "source": "npm:log-update@5.0.1", + "target": "npm:cli-cursor@4.0.0", "type": "static" }, { - "source": "npm:cli-truncate@2.1.0", - "target": "npm:slice-ansi@3.0.0", + "source": "npm:log-update@5.0.1", + "target": "npm:slice-ansi@5.0.0", "type": "static" }, { - "source": "npm:cli-truncate@2.1.0", - "target": "npm:string-width", + "source": "npm:log-update@5.0.1", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:wrap-ansi@8.1.0", "type": "static" }, { @@ -34075,18 +32032,63 @@ "type": "static" }, { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:ansi-styles@4.3.0", + "source": "npm:restore-cursor@4.0.0", + "target": "npm:onetime", "type": "static" }, { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:astral-regex", + "source": "npm:restore-cursor@4.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:slice-ansi@5.0.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi@5.0.0", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", "type": "static" }, { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:is-fullwidth-code-point@3.0.0", + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", "type": "static" }, { @@ -34116,7 +32118,7 @@ }, { "source": "npm:listr2", - "target": "npm:cli-truncate@2.1.0", + "target": "npm:cli-truncate", "type": "static" }, { @@ -34151,42 +32153,22 @@ }, { "source": "npm:listr2", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", + "target": "npm:wrap-ansi@7.0.0", "type": "static" }, { - "source": "npm:cli-truncate@2.1.0", - "target": "npm:slice-ansi@3.0.0", + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:ansi-styles", "type": "static" }, { - "source": "npm:cli-truncate@2.1.0", + "source": "npm:wrap-ansi@7.0.0", "target": "npm:string-width", "type": "static" }, { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:is-fullwidth-code-point@3.0.0", + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:strip-ansi", "type": "static" }, { @@ -34219,6 +32201,96 @@ "target": "npm:json-parse-better-errors", "type": "static" }, + { + "source": "npm:localtunnel", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:debug@4.3.2", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:openurl", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:yargs@17.1.1", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + }, + { + "source": "npm:debug@4.3.2", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, { "source": "npm:locate-path", "target": "npm:p-locate", @@ -34271,22 +32343,12 @@ }, { "source": "npm:log-update", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", + "target": "npm:wrap-ansi", "type": "static" }, { "source": "npm:slice-ansi@4.0.0", - "target": "npm:ansi-styles@4.3.0", + "target": "npm:ansi-styles", "type": "static" }, { @@ -34296,27 +32358,7 @@ }, { "source": "npm:slice-ansi@4.0.0", - "target": "npm:is-fullwidth-code-point@3.0.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", + "target": "npm:is-fullwidth-code-point", "type": "static" }, { @@ -34356,12 +32398,12 @@ }, { "source": "npm:make-dir", - "target": "npm:semver@6.3.0", + "target": "npm:semver@6.3.1", "type": "static" }, { "source": "npm:make-fetch-happen", - "target": "npm:agentkeepalive", + "target": "npm:@npmcli/agent", "type": "static" }, { @@ -34374,26 +32416,11 @@ "target": "npm:http-cache-semantics", "type": "static" }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:https-proxy-agent", - "type": "static" - }, { "source": "npm:make-fetch-happen", "target": "npm:is-lambda", "type": "static" }, - { - "source": "npm:make-fetch-happen", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, { "source": "npm:make-fetch-happen", "target": "npm:minipass", @@ -34424,11 +32451,6 @@ "target": "npm:promise-retry", "type": "static" }, - { - "source": "npm:make-fetch-happen", - "target": "npm:socks-proxy-agent", - "type": "static" - }, { "source": "npm:make-fetch-happen", "target": "npm:ssri", @@ -34576,7 +32598,7 @@ }, { "source": "npm:micromatch", - "target": "npm:picomatch", + "target": "npm:picomatch@2.3.1", "type": "static" }, { @@ -34601,12 +32623,7 @@ }, { "source": "npm:minipass-collect", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", + "target": "npm:minipass", "type": "static" }, { @@ -34726,7 +32743,7 @@ }, { "source": "npm:morgan", - "target": "npm:on-finished@2.3.0", + "target": "npm:on-finished", "type": "static" }, { @@ -34739,11 +32756,6 @@ "target": "npm:ms@2.0.0", "type": "static" }, - { - "source": "npm:on-finished@2.3.0", - "target": "npm:ee-first", - "type": "static" - }, { "source": "npm:multicast-dns", "target": "npm:dns-packet", @@ -34799,11 +32811,6 @@ "target": "npm:glob@6.0.4", "type": "static" }, - { - "source": "npm:needle", - "target": "npm:debug@3.2.7", - "type": "static" - }, { "source": "npm:needle", "target": "npm:iconv-lite@0.6.3", @@ -34814,11 +32821,6 @@ "target": "npm:sax", "type": "static" }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, { "source": "npm:iconv-lite@0.6.3", "target": "npm:safer-buffer", @@ -34886,7 +32888,7 @@ }, { "source": "npm:node-gyp", - "target": "npm:glob@7.2.3", + "target": "npm:glob@10.3.10", "type": "static" }, { @@ -34906,62 +32908,62 @@ }, { "source": "npm:node-gyp", - "target": "npm:npmlog", + "target": "npm:proc-log", "type": "static" }, { "source": "npm:node-gyp", - "target": "npm:rimraf", + "target": "npm:semver", "type": "static" }, { "source": "npm:node-gyp", - "target": "npm:semver", + "target": "npm:tar", "type": "static" }, { "source": "npm:node-gyp", - "target": "npm:tar", + "target": "npm:which@4.0.0", "type": "static" }, { - "source": "npm:node-gyp", - "target": "npm:which", + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", + "source": "npm:glob@10.3.10", + "target": "npm:foreground-child", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", + "source": "npm:glob@10.3.10", + "target": "npm:jackspeak", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", + "source": "npm:glob@10.3.10", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:once", + "source": "npm:glob@10.3.10", + "target": "npm:path-scurry", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion@2.0.1", "type": "static" }, { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", "type": "static" }, { @@ -35021,22 +33023,22 @@ }, { "source": "npm:npm", - "target": "npm:@npmcli/promise-spawn@7.0.0", + "target": "npm:@npmcli/promise-spawn", "type": "static" }, { "source": "npm:npm", - "target": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/run-script", "type": "static" }, { "source": "npm:npm", - "target": "npm:@sigstore/tuf@2.2.0", + "target": "npm:@sigstore/tuf", "type": "static" }, { "source": "npm:npm", - "target": "npm:abbrev@2.0.0", + "target": "npm:abbrev", "type": "static" }, { @@ -35046,7 +33048,7 @@ }, { "source": "npm:npm", - "target": "npm:cacache@18.0.1", + "target": "npm:cacache", "type": "static" }, { @@ -35071,7 +33073,7 @@ }, { "source": "npm:npm", - "target": "npm:columnify@1.6.0", + "target": "npm:columnify", "type": "static" }, { @@ -35081,7 +33083,7 @@ }, { "source": "npm:npm", - "target": "npm:fs-minipass@3.0.3", + "target": "npm:fs-minipass", "type": "static" }, { @@ -35096,12 +33098,12 @@ }, { "source": "npm:npm", - "target": "npm:hosted-git-info@7.0.1", + "target": "npm:hosted-git-info", "type": "static" }, { "source": "npm:npm", - "target": "npm:ini@4.1.1", + "target": "npm:ini", "type": "static" }, { @@ -35176,7 +33178,7 @@ }, { "source": "npm:npm", - "target": "npm:make-fetch-happen@13.0.0", + "target": "npm:make-fetch-happen", "type": "static" }, { @@ -35186,7 +33188,7 @@ }, { "source": "npm:npm", - "target": "npm:minipass@7.0.4", + "target": "npm:minipass", "type": "static" }, { @@ -35201,17 +33203,17 @@ }, { "source": "npm:npm", - "target": "npm:node-gyp@10.0.1", + "target": "npm:node-gyp", "type": "static" }, { "source": "npm:npm", - "target": "npm:nopt@7.2.0", + "target": "npm:nopt", "type": "static" }, { "source": "npm:npm", - "target": "npm:normalize-package-data@6.0.0", + "target": "npm:normalize-package-data", "type": "static" }, { @@ -35221,17 +33223,17 @@ }, { "source": "npm:npm", - "target": "npm:npm-install-checks@6.3.0", + "target": "npm:npm-install-checks", "type": "static" }, { "source": "npm:npm", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { "source": "npm:npm", - "target": "npm:npm-pick-manifest@9.0.0", + "target": "npm:npm-pick-manifest", "type": "static" }, { @@ -35241,7 +33243,7 @@ }, { "source": "npm:npm", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -35286,7 +33288,7 @@ }, { "source": "npm:npm", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { @@ -35296,7 +33298,7 @@ }, { "source": "npm:npm", - "target": "npm:ssri@10.0.5", + "target": "npm:ssri", "type": "static" }, { @@ -35311,7 +33313,7 @@ }, { "source": "npm:npm", - "target": "npm:tar@6.2.0", + "target": "npm:tar", "type": "static" }, { @@ -35436,7 +33438,7 @@ }, { "source": "npm:npm-run-all", - "target": "npm:ansi-styles", + "target": "npm:ansi-styles@3.2.1", "type": "static" }, { @@ -35479,9 +33481,14 @@ "target": "npm:string.prototype.padend", "type": "static" }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + }, { "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles", + "target": "npm:ansi-styles@3.2.1", "type": "static" }, { @@ -35494,6 +33501,11 @@ "target": "npm:supports-color@5.5.0", "type": "static" }, + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + }, { "source": "npm:cross-spawn@6.0.5", "target": "npm:nice-try", @@ -35506,7 +33518,7 @@ }, { "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.1", + "target": "npm:semver@5.7.2", "type": "static" }, { @@ -35570,28 +33582,28 @@ "type": "static" }, { - "source": "npm:@npmcli/agent@2.2.0", - "target": "npm:agent-base@7.1.0", + "source": "npm:@npmcli/agent", + "target": "npm:agent-base", "type": "static" }, { - "source": "npm:@npmcli/agent@2.2.0", + "source": "npm:@npmcli/agent", "target": "npm:http-proxy-agent@7.0.0", "type": "static" }, { - "source": "npm:@npmcli/agent@2.2.0", - "target": "npm:https-proxy-agent@7.0.2", + "source": "npm:@npmcli/agent", + "target": "npm:https-proxy-agent", "type": "static" }, { - "source": "npm:@npmcli/agent@2.2.0", + "source": "npm:@npmcli/agent", "target": "npm:lru-cache@10.1.0", "type": "static" }, { - "source": "npm:@npmcli/agent@2.2.0", - "target": "npm:socks-proxy-agent@8.0.2", + "source": "npm:@npmcli/agent", + "target": "npm:socks-proxy-agent", "type": "static" }, { @@ -35641,7 +33653,7 @@ }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/run-script", "type": "static" }, { @@ -35651,7 +33663,7 @@ }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:cacache@18.0.1", + "target": "npm:cacache", "type": "static" }, { @@ -35661,7 +33673,7 @@ }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:hosted-git-info@7.0.1", + "target": "npm:hosted-git-info", "type": "static" }, { @@ -35681,27 +33693,27 @@ }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:nopt@7.2.0", + "target": "npm:nopt", "type": "static" }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-install-checks@6.3.0", + "target": "npm:npm-install-checks", "type": "static" }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-pick-manifest@9.0.0", + "target": "npm:npm-pick-manifest", "type": "static" }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -35741,12 +33753,12 @@ }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:ssri@10.0.5", + "target": "npm:ssri", "type": "static" }, { @@ -35771,12 +33783,12 @@ }, { "source": "npm:@npmcli/config@8.0.3", - "target": "npm:ini@4.1.1", + "target": "npm:ini", "type": "static" }, { "source": "npm:@npmcli/config@8.0.3", - "target": "npm:nopt@7.2.0", + "target": "npm:nopt", "type": "static" }, { @@ -35791,7 +33803,7 @@ }, { "source": "npm:@npmcli/config@8.0.3", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { @@ -35801,56 +33813,56 @@ }, { "source": "npm:@npmcli/disparity-colors@3.0.0", - "target": "npm:ansi-styles@4.3.0", + "target": "npm:ansi-styles", "type": "static" }, { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", + "source": "npm:ansi-styles", + "target": "npm:color-convert", "type": "static" }, { "source": "npm:@npmcli/fs", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", - "target": "npm:@npmcli/promise-spawn@7.0.0", + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", + "source": "npm:@npmcli/git", "target": "npm:lru-cache@10.1.0", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", - "target": "npm:npm-pick-manifest@9.0.0", + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", + "source": "npm:@npmcli/git", "target": "npm:proc-log", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", + "source": "npm:@npmcli/git", "target": "npm:promise-inflight", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", + "source": "npm:@npmcli/git", "target": "npm:promise-retry", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", - "target": "npm:semver@7.5.4", + "source": "npm:@npmcli/git", + "target": "npm:semver", "type": "static" }, { - "source": "npm:@npmcli/git@5.0.3", + "source": "npm:@npmcli/git", "target": "npm:which@4.0.0", "type": "static" }, @@ -35886,7 +33898,7 @@ }, { "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:cacache@18.0.1", + "target": "npm:cacache", "type": "static" }, { @@ -35901,12 +33913,12 @@ }, { "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:@npmcli/git@5.0.3", + "target": "npm:@npmcli/git", "type": "static" }, { @@ -35916,7 +33928,7 @@ }, { "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:hosted-git-info@7.0.1", + "target": "npm:hosted-git-info", "type": "static" }, { @@ -35926,7 +33938,7 @@ }, { "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:normalize-package-data@6.0.0", + "target": "npm:normalize-package-data", "type": "static" }, { @@ -35936,11 +33948,11 @@ }, { "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { - "source": "npm:@npmcli/promise-spawn@7.0.0", + "source": "npm:@npmcli/promise-spawn", "target": "npm:which@4.0.0", "type": "static" }, @@ -35950,67 +33962,67 @@ "type": "static" }, { - "source": "npm:@npmcli/run-script@7.0.2", + "source": "npm:@npmcli/run-script", "target": "npm:@npmcli/node-gyp", "type": "static" }, { - "source": "npm:@npmcli/run-script@7.0.2", - "target": "npm:@npmcli/promise-spawn@7.0.0", + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", "type": "static" }, { - "source": "npm:@npmcli/run-script@7.0.2", - "target": "npm:node-gyp@10.0.1", + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", "type": "static" }, { - "source": "npm:@npmcli/run-script@7.0.2", + "source": "npm:@npmcli/run-script", "target": "npm:read-package-json-fast", "type": "static" }, { - "source": "npm:@npmcli/run-script@7.0.2", + "source": "npm:@npmcli/run-script", "target": "npm:which@4.0.0", "type": "static" }, { - "source": "npm:@sigstore/bundle@2.1.0", - "target": "npm:@sigstore/protobuf-specs@0.2.1", + "source": "npm:@sigstore/bundle", + "target": "npm:@sigstore/protobuf-specs", "type": "static" }, { - "source": "npm:@sigstore/sign@2.2.0", - "target": "npm:@sigstore/bundle@2.1.0", + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/bundle", "type": "static" }, { - "source": "npm:@sigstore/sign@2.2.0", - "target": "npm:@sigstore/protobuf-specs@0.2.1", + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/protobuf-specs", "type": "static" }, { - "source": "npm:@sigstore/sign@2.2.0", - "target": "npm:make-fetch-happen@13.0.0", + "source": "npm:@sigstore/sign", + "target": "npm:make-fetch-happen", "type": "static" }, { - "source": "npm:@sigstore/tuf@2.2.0", - "target": "npm:@sigstore/protobuf-specs@0.2.1", + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", "type": "static" }, { - "source": "npm:@sigstore/tuf@2.2.0", - "target": "npm:tuf-js@2.1.0", + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", "type": "static" }, { - "source": "npm:@tufjs/models@2.0.0", - "target": "npm:@tufjs/canonical-json@2.0.0", + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", "type": "static" }, { - "source": "npm:@tufjs/models@2.0.0", + "source": "npm:@tufjs/models", "target": "npm:minimatch@9.0.3", "type": "static" }, @@ -36020,7 +34032,7 @@ "type": "static" }, { - "source": "npm:agent-base@7.1.0", + "source": "npm:agent-base", "target": "npm:debug", "type": "static" }, @@ -36036,7 +34048,7 @@ }, { "source": "npm:are-we-there-yet@4.0.1", - "target": "npm:delegates", + "target": "npm:delegates@1.0.0", "type": "static" }, { @@ -36081,66 +34093,66 @@ }, { "source": "npm:builtins", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:@npmcli/fs", "type": "static" }, { - "source": "npm:cacache@18.0.1", - "target": "npm:fs-minipass@3.0.3", + "source": "npm:cacache", + "target": "npm:fs-minipass", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:glob@10.3.10", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:lru-cache@10.1.0", "type": "static" }, { - "source": "npm:cacache@18.0.1", - "target": "npm:minipass@7.0.4", + "source": "npm:cacache", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:cacache@18.0.1", - "target": "npm:minipass-collect@2.0.1", + "source": "npm:cacache", + "target": "npm:minipass-collect", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:minipass-flush", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:minipass-pipeline", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:p-map", "type": "static" }, { - "source": "npm:cacache@18.0.1", - "target": "npm:ssri@10.0.5", + "source": "npm:cacache", + "target": "npm:ssri", "type": "static" }, { - "source": "npm:cacache@18.0.1", - "target": "npm:tar@6.2.0", + "source": "npm:cacache", + "target": "npm:tar", "type": "static" }, { - "source": "npm:cacache@18.0.1", + "source": "npm:cacache", "target": "npm:unique-filename", "type": "static" }, @@ -36175,17 +34187,17 @@ "type": "static" }, { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", + "source": "npm:color-convert", + "target": "npm:color-name", "type": "static" }, { - "source": "npm:columnify@1.6.0", + "source": "npm:columnify", "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:columnify@1.6.0", + "source": "npm:columnify", "target": "npm:wcwidth", "type": "static" }, @@ -36240,28 +34252,28 @@ "type": "static" }, { - "source": "npm:fs-minipass@3.0.3", - "target": "npm:minipass@7.0.4", + "source": "npm:fs-minipass", + "target": "npm:minipass", "type": "static" }, { "source": "npm:gauge@5.0.1", - "target": "npm:aproba", + "target": "npm:aproba@2.0.0", "type": "static" }, { "source": "npm:gauge@5.0.1", - "target": "npm:color-support", + "target": "npm:color-support@1.1.3", "type": "static" }, { "source": "npm:gauge@5.0.1", - "target": "npm:console-control-strings", + "target": "npm:console-control-strings@1.1.0", "type": "static" }, { "source": "npm:gauge@5.0.1", - "target": "npm:has-unicode", + "target": "npm:has-unicode@2.0.1", "type": "static" }, { @@ -36281,7 +34293,7 @@ }, { "source": "npm:gauge@5.0.1", - "target": "npm:wide-align", + "target": "npm:wide-align@1.1.5", "type": "static" }, { @@ -36296,7 +34308,7 @@ }, { "source": "npm:glob@10.3.10", - "target": "npm:jackspeak@2.3.6", + "target": "npm:jackspeak", "type": "static" }, { @@ -36306,27 +34318,27 @@ }, { "source": "npm:glob@10.3.10", - "target": "npm:minipass@7.0.4", + "target": "npm:minipass", "type": "static" }, { "source": "npm:glob@10.3.10", - "target": "npm:path-scurry@1.10.1", + "target": "npm:path-scurry", "type": "static" }, { - "source": "npm:hasown@2.0.0", - "target": "npm:function-bind@1.1.2", + "source": "npm:hasown", + "target": "npm:function-bind", "type": "static" }, { - "source": "npm:hosted-git-info@7.0.1", + "source": "npm:hosted-git-info", "target": "npm:lru-cache@10.1.0", "type": "static" }, { "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:agent-base@7.1.0", + "target": "npm:agent-base", "type": "static" }, { @@ -36335,12 +34347,12 @@ "type": "static" }, { - "source": "npm:https-proxy-agent@7.0.2", - "target": "npm:agent-base@7.1.0", + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", "type": "static" }, { - "source": "npm:https-proxy-agent@7.0.2", + "source": "npm:https-proxy-agent", "target": "npm:debug", "type": "static" }, @@ -36350,13 +34362,13 @@ "type": "static" }, { - "source": "npm:ignore-walk@6.0.4", + "source": "npm:ignore-walk", "target": "npm:minimatch@9.0.3", "type": "static" }, { "source": "npm:init-package-json@6.0.0", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { @@ -36371,12 +34383,12 @@ }, { "source": "npm:init-package-json@6.0.0", - "target": "npm:read-package-json@7.0.0", + "target": "npm:read-package-json", "type": "static" }, { "source": "npm:init-package-json@6.0.0", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { @@ -36395,28 +34407,28 @@ "type": "static" }, { - "source": "npm:is-core-module@2.13.1", - "target": "npm:hasown@2.0.0", + "source": "npm:is-core-module", + "target": "npm:hasown", "type": "static" }, { - "source": "npm:jackspeak@2.3.6", + "source": "npm:jackspeak", "target": "npm:@isaacs/cliui", "type": "static" }, { - "source": "npm:jackspeak@2.3.6", + "source": "npm:jackspeak", "target": "npm:@pkgjs/parseargs", "type": "static" }, { "source": "npm:libnpmaccess@8.0.2", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { "source": "npm:libnpmaccess@8.0.2", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -36451,7 +34463,7 @@ }, { "source": "npm:libnpmdiff@6.0.4", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { @@ -36461,7 +34473,7 @@ }, { "source": "npm:libnpmdiff@6.0.4", - "target": "npm:tar@6.2.0", + "target": "npm:tar", "type": "static" }, { @@ -36471,7 +34483,7 @@ }, { "source": "npm:libnpmexec@7.0.5", - "target": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/run-script", "type": "static" }, { @@ -36481,7 +34493,7 @@ }, { "source": "npm:libnpmexec@7.0.5", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { @@ -36511,7 +34523,7 @@ }, { "source": "npm:libnpmexec@7.0.5", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { @@ -36526,22 +34538,22 @@ }, { "source": "npm:libnpmhook@10.0.1", - "target": "npm:aproba", + "target": "npm:aproba@2.0.0", "type": "static" }, { "source": "npm:libnpmhook@10.0.1", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { "source": "npm:libnpmorg@6.0.2", - "target": "npm:aproba", + "target": "npm:aproba@2.0.0", "type": "static" }, { "source": "npm:libnpmorg@6.0.2", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -36551,12 +34563,12 @@ }, { "source": "npm:libnpmpack@6.0.4", - "target": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/run-script", "type": "static" }, { "source": "npm:libnpmpack@6.0.4", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { @@ -36571,17 +34583,17 @@ }, { "source": "npm:libnpmpublish@9.0.3", - "target": "npm:normalize-package-data@6.0.0", + "target": "npm:normalize-package-data", "type": "static" }, { "source": "npm:libnpmpublish@9.0.3", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { "source": "npm:libnpmpublish@9.0.3", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -36591,42 +34603,42 @@ }, { "source": "npm:libnpmpublish@9.0.3", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { "source": "npm:libnpmpublish@9.0.3", - "target": "npm:sigstore@2.1.0", + "target": "npm:sigstore", "type": "static" }, { "source": "npm:libnpmpublish@9.0.3", - "target": "npm:ssri@10.0.5", + "target": "npm:ssri", "type": "static" }, { "source": "npm:libnpmsearch@7.0.1", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { "source": "npm:libnpmteam@6.0.1", - "target": "npm:aproba", + "target": "npm:aproba@2.0.0", "type": "static" }, { "source": "npm:libnpmteam@6.0.1", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { "source": "npm:libnpmversion@5.0.2", - "target": "npm:@npmcli/git@5.0.3", + "target": "npm:@npmcli/git", "type": "static" }, { "source": "npm:libnpmversion@5.0.2", - "target": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/run-script", "type": "static" }, { @@ -36641,62 +34653,62 @@ }, { "source": "npm:libnpmversion@5.0.2", - "target": "npm:semver@7.5.4", + "target": "npm:semver", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", - "target": "npm:@npmcli/agent@2.2.0", + "source": "npm:make-fetch-happen", + "target": "npm:@npmcli/agent", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", - "target": "npm:cacache@18.0.1", + "source": "npm:make-fetch-happen", + "target": "npm:cacache", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", + "source": "npm:make-fetch-happen", "target": "npm:http-cache-semantics", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", + "source": "npm:make-fetch-happen", "target": "npm:is-lambda", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", - "target": "npm:minipass@7.0.4", + "source": "npm:make-fetch-happen", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", - "target": "npm:minipass-fetch@3.0.4", + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", + "source": "npm:make-fetch-happen", "target": "npm:minipass-flush", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", + "source": "npm:make-fetch-happen", "target": "npm:minipass-pipeline", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", + "source": "npm:make-fetch-happen", "target": "npm:negotiator", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", + "source": "npm:make-fetch-happen", "target": "npm:promise-retry", "type": "static" }, { - "source": "npm:make-fetch-happen@13.0.0", - "target": "npm:ssri@10.0.5", + "source": "npm:make-fetch-happen", + "target": "npm:ssri", "type": "static" }, { @@ -36705,27 +34717,27 @@ "type": "static" }, { - "source": "npm:minipass-collect@2.0.1", - "target": "npm:minipass@7.0.4", + "source": "npm:minipass-collect", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:minipass-fetch@3.0.4", - "target": "npm:minipass@7.0.4", + "source": "npm:minipass-fetch", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:minipass-fetch@3.0.4", + "source": "npm:minipass-fetch", "target": "npm:minipass-sized", "type": "static" }, { - "source": "npm:minipass-fetch@3.0.4", + "source": "npm:minipass-fetch", "target": "npm:minizlib", "type": "static" }, { - "source": "npm:minipass-fetch@3.0.4", + "source": "npm:minipass-fetch", "target": "npm:encoding", "type": "static" }, @@ -36790,77 +34802,77 @@ "type": "static" }, { - "source": "npm:node-gyp@10.0.1", + "source": "npm:node-gyp", "target": "npm:env-paths", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", + "source": "npm:node-gyp", "target": "npm:exponential-backoff", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", + "source": "npm:node-gyp", "target": "npm:glob@10.3.10", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", + "source": "npm:node-gyp", "target": "npm:graceful-fs", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", - "target": "npm:make-fetch-happen@13.0.0", + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", - "target": "npm:nopt@7.2.0", + "source": "npm:node-gyp", + "target": "npm:nopt", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", + "source": "npm:node-gyp", "target": "npm:proc-log", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", - "target": "npm:semver@7.5.4", + "source": "npm:node-gyp", + "target": "npm:semver", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", - "target": "npm:tar@6.2.0", + "source": "npm:node-gyp", + "target": "npm:tar", "type": "static" }, { - "source": "npm:node-gyp@10.0.1", + "source": "npm:node-gyp", "target": "npm:which@4.0.0", "type": "static" }, { - "source": "npm:nopt@7.2.0", - "target": "npm:abbrev@2.0.0", + "source": "npm:nopt", + "target": "npm:abbrev", "type": "static" }, { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:hosted-git-info@7.0.1", + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", "type": "static" }, { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:is-core-module@2.13.1", + "source": "npm:normalize-package-data", + "target": "npm:is-core-module", "type": "static" }, { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:semver@7.5.4", + "source": "npm:normalize-package-data", + "target": "npm:semver", "type": "static" }, { - "source": "npm:normalize-package-data@6.0.0", + "source": "npm:normalize-package-data", "target": "npm:validate-npm-package-license", "type": "static" }, @@ -36870,58 +34882,58 @@ "type": "static" }, { - "source": "npm:npm-install-checks@6.3.0", - "target": "npm:semver@7.5.4", + "source": "npm:npm-install-checks", + "target": "npm:semver", "type": "static" }, { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:hosted-git-info@7.0.1", + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", "type": "static" }, { - "source": "npm:npm-package-arg@11.0.1", + "source": "npm:npm-package-arg", "target": "npm:proc-log", "type": "static" }, { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:semver@7.5.4", + "source": "npm:npm-package-arg", + "target": "npm:semver", "type": "static" }, { - "source": "npm:npm-package-arg@11.0.1", + "source": "npm:npm-package-arg", "target": "npm:validate-npm-package-name", "type": "static" }, { - "source": "npm:npm-packlist@8.0.1", - "target": "npm:ignore-walk@6.0.4", + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", "type": "static" }, { - "source": "npm:npm-pick-manifest@9.0.0", - "target": "npm:npm-install-checks@6.3.0", + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", "type": "static" }, { - "source": "npm:npm-pick-manifest@9.0.0", + "source": "npm:npm-pick-manifest", "target": "npm:npm-normalize-package-bin", "type": "static" }, { - "source": "npm:npm-pick-manifest@9.0.0", - "target": "npm:npm-package-arg@11.0.1", + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg", "type": "static" }, { - "source": "npm:npm-pick-manifest@9.0.0", - "target": "npm:semver@7.5.4", + "source": "npm:npm-pick-manifest", + "target": "npm:semver", "type": "static" }, { "source": "npm:npm-profile@9.0.0", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -36930,37 +34942,37 @@ "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", - "target": "npm:make-fetch-happen@13.0.0", + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", - "target": "npm:minipass@7.0.4", + "source": "npm:npm-registry-fetch", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", - "target": "npm:minipass-fetch@3.0.4", + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", + "source": "npm:npm-registry-fetch", "target": "npm:minipass-json-stream", "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", + "source": "npm:npm-registry-fetch", "target": "npm:minizlib", "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", - "target": "npm:npm-package-arg@11.0.1", + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", "type": "static" }, { - "source": "npm:npm-registry-fetch@16.1.0", + "source": "npm:npm-registry-fetch", "target": "npm:proc-log", "type": "static" }, @@ -36971,7 +34983,7 @@ }, { "source": "npm:npmlog@7.0.1", - "target": "npm:console-control-strings", + "target": "npm:console-control-strings@1.1.0", "type": "static" }, { @@ -36981,7 +34993,7 @@ }, { "source": "npm:npmlog@7.0.1", - "target": "npm:set-blocking", + "target": "npm:set-blocking@2.0.0", "type": "static" }, { @@ -36991,7 +35003,7 @@ }, { "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/git@5.0.3", + "target": "npm:@npmcli/git", "type": "static" }, { @@ -37001,47 +35013,47 @@ }, { "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/promise-spawn@7.0.0", + "target": "npm:@npmcli/promise-spawn", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/run-script@7.0.2", + "target": "npm:@npmcli/run-script", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:cacache@18.0.1", + "target": "npm:cacache", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:fs-minipass@3.0.3", + "target": "npm:fs-minipass", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:minipass@7.0.4", + "target": "npm:minipass", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:npm-package-arg@11.0.1", + "target": "npm:npm-package-arg", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:npm-packlist@8.0.1", + "target": "npm:npm-packlist", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:npm-pick-manifest@9.0.0", + "target": "npm:npm-pick-manifest", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:npm-registry-fetch@16.1.0", + "target": "npm:npm-registry-fetch", "type": "static" }, { @@ -37056,7 +35068,7 @@ }, { "source": "npm:pacote@17.0.5", - "target": "npm:read-package-json@7.0.0", + "target": "npm:read-package-json", "type": "static" }, { @@ -37066,17 +35078,17 @@ }, { "source": "npm:pacote@17.0.5", - "target": "npm:sigstore@2.1.0", + "target": "npm:sigstore", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:ssri@10.0.5", + "target": "npm:ssri", "type": "static" }, { "source": "npm:pacote@17.0.5", - "target": "npm:tar@6.2.0", + "target": "npm:tar", "type": "static" }, { @@ -37095,13 +35107,13 @@ "type": "static" }, { - "source": "npm:path-scurry@1.10.1", + "source": "npm:path-scurry", "target": "npm:lru-cache@10.1.0", "type": "static" }, { - "source": "npm:path-scurry@1.10.1", - "target": "npm:minipass@7.0.4", + "source": "npm:path-scurry", + "target": "npm:minipass", "type": "static" }, { @@ -37135,22 +35147,22 @@ "type": "static" }, { - "source": "npm:read-package-json@7.0.0", + "source": "npm:read-package-json", "target": "npm:glob@10.3.10", "type": "static" }, { - "source": "npm:read-package-json@7.0.0", + "source": "npm:read-package-json", "target": "npm:json-parse-even-better-errors@3.0.1", "type": "static" }, { - "source": "npm:read-package-json@7.0.0", - "target": "npm:normalize-package-data@6.0.0", + "source": "npm:read-package-json", + "target": "npm:normalize-package-data", "type": "static" }, { - "source": "npm:read-package-json@7.0.0", + "source": "npm:read-package-json", "target": "npm:npm-normalize-package-bin", "type": "static" }, @@ -37190,7 +35202,7 @@ "type": "static" }, { - "source": "npm:semver@7.5.4", + "source": "npm:semver", "target": "npm:lru-cache@6.0.0", "type": "static" }, @@ -37205,23 +35217,23 @@ "type": "static" }, { - "source": "npm:sigstore@2.1.0", - "target": "npm:@sigstore/bundle@2.1.0", + "source": "npm:sigstore", + "target": "npm:@sigstore/bundle", "type": "static" }, { - "source": "npm:sigstore@2.1.0", - "target": "npm:@sigstore/protobuf-specs@0.2.1", + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", "type": "static" }, { - "source": "npm:sigstore@2.1.0", - "target": "npm:@sigstore/sign@2.2.0", + "source": "npm:sigstore", + "target": "npm:@sigstore/sign", "type": "static" }, { - "source": "npm:sigstore@2.1.0", - "target": "npm:@sigstore/tuf@2.2.0", + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", "type": "static" }, { @@ -37235,17 +35247,17 @@ "type": "static" }, { - "source": "npm:socks-proxy-agent@8.0.2", - "target": "npm:agent-base@7.1.0", + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", "type": "static" }, { - "source": "npm:socks-proxy-agent@8.0.2", + "source": "npm:socks-proxy-agent", "target": "npm:debug", "type": "static" }, { - "source": "npm:socks-proxy-agent@8.0.2", + "source": "npm:socks-proxy-agent", "target": "npm:socks", "type": "static" }, @@ -37256,7 +35268,7 @@ }, { "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids@3.0.16", + "target": "npm:spdx-license-ids", "type": "static" }, { @@ -37266,12 +35278,12 @@ }, { "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids@3.0.16", + "target": "npm:spdx-license-ids", "type": "static" }, { - "source": "npm:ssri@10.0.5", - "target": "npm:minipass@7.0.4", + "source": "npm:ssri", + "target": "npm:minipass", "type": "static" }, { @@ -37286,7 +35298,7 @@ }, { "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point@3.0.0", + "target": "npm:is-fullwidth-code-point", "type": "static" }, { @@ -37301,7 +35313,7 @@ }, { "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point@3.0.0", + "target": "npm:is-fullwidth-code-point", "type": "static" }, { @@ -37330,32 +35342,32 @@ "type": "static" }, { - "source": "npm:tar@6.2.0", + "source": "npm:tar", "target": "npm:chownr", "type": "static" }, { - "source": "npm:tar@6.2.0", + "source": "npm:tar", "target": "npm:fs-minipass@2.1.0", "type": "static" }, { - "source": "npm:tar@6.2.0", - "target": "npm:minipass", + "source": "npm:tar", + "target": "npm:minipass@5.0.0", "type": "static" }, { - "source": "npm:tar@6.2.0", + "source": "npm:tar", "target": "npm:minizlib", "type": "static" }, { - "source": "npm:tar@6.2.0", + "source": "npm:tar", "target": "npm:mkdirp@1.0.4", "type": "static" }, { - "source": "npm:tar@6.2.0", + "source": "npm:tar", "target": "npm:yallist@4.0.0", "type": "static" }, @@ -37370,18 +35382,18 @@ "type": "static" }, { - "source": "npm:tuf-js@2.1.0", - "target": "npm:@tufjs/models@2.0.0", + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", "type": "static" }, { - "source": "npm:tuf-js@2.1.0", + "source": "npm:tuf-js", "target": "npm:debug", "type": "static" }, { - "source": "npm:tuf-js@2.1.0", - "target": "npm:make-fetch-happen@13.0.0", + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", "type": "static" }, { @@ -37420,7 +35432,7 @@ "type": "static" }, { - "source": "npm:wide-align", + "source": "npm:wide-align@1.1.5", "target": "npm:string-width", "type": "static" }, @@ -37441,7 +35453,7 @@ }, { "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles@4.3.0", + "target": "npm:ansi-styles", "type": "static" }, { @@ -37455,8 +35467,8 @@ "type": "static" }, { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", + "source": "npm:ansi-styles", + "target": "npm:color-convert", "type": "static" }, { @@ -37489,26 +35501,6 @@ "target": "npm:signal-exit@4.1.0", "type": "static" }, - { - "source": "npm:npmlog", - "target": "npm:are-we-there-yet", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:gauge", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:set-blocking", - "type": "static" - }, { "source": "npm:nth-check", "target": "npm:boolbase", @@ -37529,11 +35521,6 @@ "target": "npm:@nrwl/tao", "type": "static" }, - { - "source": "npm:nx", - "target": "npm:@parcel/watcher", - "type": "static" - }, { "source": "npm:nx", "target": "npm:@yarnpkg/lockfile", @@ -37551,7 +35538,7 @@ }, { "source": "npm:nx", - "target": "npm:axios", + "target": "npm:axios@1.6.2", "type": "static" }, { @@ -37581,12 +35568,12 @@ }, { "source": "npm:nx", - "target": "npm:enquirer", + "target": "npm:dotenv-expand", "type": "static" }, { "source": "npm:nx", - "target": "npm:fast-glob", + "target": "npm:enquirer", "type": "static" }, { @@ -37614,6 +35601,11 @@ "target": "npm:ignore", "type": "static" }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, { "source": "npm:nx", "target": "npm:js-yaml@4.1.0", @@ -37634,6 +35626,11 @@ "target": "npm:minimatch", "type": "static" }, + { + "source": "npm:nx", + "target": "npm:node-machine-id", + "type": "static" + }, { "source": "npm:nx", "target": "npm:npm-run-path", @@ -37646,7 +35643,7 @@ }, { "source": "npm:nx", - "target": "npm:semver@7.3.4", + "target": "npm:semver@7.5.3", "type": "static" }, { @@ -37679,11 +35676,6 @@ "target": "npm:tslib", "type": "static" }, - { - "source": "npm:nx", - "target": "npm:v8-compile-cache", - "type": "static" - }, { "source": "npm:nx", "target": "npm:yargs", @@ -37704,6 +35696,11 @@ "target": "npm:@nx/nx-darwin-x64", "type": "static" }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, { "source": "npm:nx", "target": "npm:@nx/nx-linux-arm-gnueabihf", @@ -37819,6 +35816,36 @@ "target": "npm:lru-cache@6.0.0", "type": "static" }, + { + "source": "npm:axios@1.6.2", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios@1.6.2", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.6.2", + "target": "npm:proxy-from-env@1.1.0", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + }, { "source": "npm:glob@7.1.4", "target": "npm:fs.realpath", @@ -37860,20 +35887,10 @@ "type": "static" }, { - "source": "npm:semver@7.3.4", + "source": "npm:semver@7.5.3", "target": "npm:lru-cache@6.0.0", "type": "static" }, - { - "source": "npm:object-is", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:define-properties", - "type": "static" - }, { "source": "npm:object.assign", "target": "npm:call-bind", @@ -37894,66 +35911,11 @@ "target": "npm:object-keys", "type": "static" }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:es-abstract", - "type": "static" - }, { "source": "npm:object.pick", "target": "npm:isobject", "type": "static" }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, { "source": "npm:on-finished", "target": "npm:ee-first", @@ -37984,6 +35946,11 @@ "target": "npm:is-wsl", "type": "static" }, + { + "source": "npm:opn", + "target": "npm:is-wsl@1.1.0", + "type": "static" + }, { "source": "npm:optionator", "target": "npm:@aashutoshrathi/word-wrap", @@ -38236,12 +36203,12 @@ }, { "source": "npm:parse5", - "target": "npm:entities@4.5.0", + "target": "npm:entities", "type": "static" }, { "source": "npm:parse5-html-rewriting-stream", - "target": "npm:entities@4.5.0", + "target": "npm:entities", "type": "static" }, { @@ -38254,11 +36221,6 @@ "target": "npm:parse5-sax-parser", "type": "static" }, - { - "source": "npm:parse5-htmlparser2-tree-adapter", - "target": "npm:parse5@6.0.1", - "type": "static" - }, { "source": "npm:parse5-sax-parser", "target": "npm:parse5", @@ -38266,7 +36228,7 @@ }, { "source": "npm:path-scurry", - "target": "npm:lru-cache@10.0.0", + "target": "npm:lru-cache@10.1.0", "type": "static" }, { @@ -38331,7 +36293,7 @@ }, { "source": "npm:pino-abstract-transport", - "target": "npm:readable-stream@4.4.1", + "target": "npm:readable-stream@4.5.1", "type": "static" }, { @@ -38350,25 +36312,35 @@ "type": "static" }, { - "source": "npm:readable-stream@4.4.1", + "source": "npm:readable-stream@4.5.1", "target": "npm:abort-controller", "type": "static" }, { - "source": "npm:readable-stream@4.4.1", + "source": "npm:readable-stream@4.5.1", "target": "npm:buffer@6.0.3", "type": "static" }, { - "source": "npm:readable-stream@4.4.1", + "source": "npm:readable-stream@4.5.1", "target": "npm:events", "type": "static" }, { - "source": "npm:readable-stream@4.4.1", + "source": "npm:readable-stream@4.5.1", "target": "npm:process", "type": "static" }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:string_decoder@1.3.0", + "type": "static" + }, + { + "source": "npm:string_decoder@1.3.0", + "target": "npm:safe-buffer", + "type": "static" + }, { "source": "npm:pino-abstract-transport@0.5.0", "target": "npm:duplexify", @@ -38406,72 +36378,37 @@ }, { "source": "npm:pkg-conf", - "target": "npm:find-up@3.0.0", + "target": "npm:find-up@2.1.0", "type": "static" }, { "source": "npm:pkg-conf", - "target": "npm:load-json-file@5.3.0", - "type": "static" - }, - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@5.3.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@5.3.0", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@5.3.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:load-json-file@5.3.0", - "target": "npm:strip-bom@3.0.0", + "target": "npm:load-json-file", "type": "static" }, { - "source": "npm:load-json-file@5.3.0", - "target": "npm:type-fest@0.3.1", + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", "type": "static" }, { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", "type": "static" }, { - "source": "npm:locate-path@3.0.0", + "source": "npm:locate-path@2.0.0", "target": "npm:path-exists@3.0.0", "type": "static" }, { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", "type": "static" }, { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", "type": "static" }, { @@ -38509,6 +36446,21 @@ "target": "npm:ms", "type": "static" }, + { + "source": "npm:portscanner", + "target": "npm:async@2.6.4", + "type": "static" + }, + { + "source": "npm:portscanner", + "target": "npm:is-number-like", + "type": "static" + }, + { + "source": "npm:async@2.6.4", + "target": "npm:lodash", + "type": "static" + }, { "source": "npm:postcss", "target": "npm:nanoid", @@ -38624,16 +36576,6 @@ "target": "npm:postcss", "type": "static" }, - { - "source": "npm:postcss-loader", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:typescript", - "type": "static" - }, { "source": "npm:postcss-loader", "target": "npm:webpack", @@ -38641,64 +36583,44 @@ }, { "source": "npm:postcss-loader", - "target": "npm:cosmiconfig@8.2.0", + "target": "npm:cosmiconfig@8.3.6", "type": "static" }, { "source": "npm:postcss-loader", - "target": "npm:cosmiconfig-typescript-loader@4.3.0", + "target": "npm:jiti", "type": "static" }, { "source": "npm:postcss-loader", - "target": "npm:klona", + "target": "npm:semver", "type": "static" }, { - "source": "npm:postcss-loader", - "target": "npm:semver", + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", "type": "static" }, { - "source": "npm:cosmiconfig@8.2.0", + "source": "npm:cosmiconfig@8.3.6", "target": "npm:import-fresh", "type": "static" }, { - "source": "npm:cosmiconfig@8.2.0", + "source": "npm:cosmiconfig@8.3.6", "target": "npm:js-yaml@4.1.0", "type": "static" }, { - "source": "npm:cosmiconfig@8.2.0", + "source": "npm:cosmiconfig@8.3.6", "target": "npm:parse-json", "type": "static" }, { - "source": "npm:cosmiconfig@8.2.0", + "source": "npm:cosmiconfig@8.3.6", "target": "npm:path-type", "type": "static" }, - { - "source": "npm:cosmiconfig-typescript-loader@4.3.0", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader@4.3.0", - "target": "npm:cosmiconfig@8.2.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader@4.3.0", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:cosmiconfig-typescript-loader@4.3.0", - "target": "npm:typescript", - "type": "static" - }, { "source": "npm:js-yaml@4.1.0", "target": "npm:argparse@2.0.1", @@ -39049,21 +36971,6 @@ "target": "npm:sisteransi", "type": "static" }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, { "source": "npm:proxy-addr", "target": "npm:forwarded", @@ -39156,12 +37063,12 @@ }, { "source": "npm:read-package-json", - "target": "npm:glob@10.3.1", + "target": "npm:glob@10.3.10", "type": "static" }, { "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", "type": "static" }, { @@ -39176,7 +37083,7 @@ }, { "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors@3.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", "type": "static" }, { @@ -39190,32 +37097,32 @@ "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:foreground-child", "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:jackspeak", "type": "static" }, { - "source": "npm:glob@10.3.1", - "target": "npm:minimatch@9.0.2", + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:minipass", "type": "static" }, { - "source": "npm:glob@10.3.1", + "source": "npm:glob@10.3.10", "target": "npm:path-scurry", "type": "static" }, { - "source": "npm:minimatch@9.0.2", + "source": "npm:minimatch@9.0.3", "target": "npm:brace-expansion@2.0.1", "type": "static" }, @@ -39249,31 +37156,6 @@ "target": "npm:type-fest@4.8.3", "type": "static" }, - { - "source": "npm:hosted-git-info@7.0.1", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:hosted-git-info@7.0.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data@6.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - }, { "source": "npm:parse-json@8.1.0", "target": "npm:@babel/code-frame", @@ -39296,7 +37178,7 @@ }, { "source": "npm:read-pkg@9.0.1", - "target": "npm:normalize-package-data@6.0.0", + "target": "npm:normalize-package-data", "type": "static" }, { @@ -39326,7 +37208,7 @@ }, { "source": "npm:normalize-package-data@2.5.0", - "target": "npm:semver@5.7.1", + "target": "npm:semver@5.7.2", "type": "static" }, { @@ -39351,7 +37233,7 @@ }, { "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", + "target": "npm:isarray", "type": "static" }, { @@ -39395,253 +37277,118 @@ "type": "static" }, { - "source": "npm:readdirp", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:redeyed", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:@pnpm/npm-conf", - "type": "static" - }, - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - }, - { - "source": "npm:remarkable", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:remarkable", - "target": "npm:autolinker", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:jsonfile@5.0.0", - "type": "static" - }, - { - "source": "npm:jsonfile@5.0.0", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:jsonfile@5.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:forever-agent", + "source": "npm:readdirp", + "target": "npm:picomatch@2.3.1", "type": "static" }, { - "source": "npm:request", - "target": "npm:form-data", + "source": "npm:redeyed", + "target": "npm:esprima", "type": "static" }, { - "source": "npm:request", - "target": "npm:har-validator", + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", "type": "static" }, { - "source": "npm:request", - "target": "npm:http-signature@1.2.0", + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", "type": "static" }, { - "source": "npm:request", - "target": "npm:is-typedarray", + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", "type": "static" }, { - "source": "npm:request", - "target": "npm:isstream", + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", "type": "static" }, { - "source": "npm:request", - "target": "npm:json-stringify-safe", + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", "type": "static" }, { - "source": "npm:request", - "target": "npm:mime-types", + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", "type": "static" }, { - "source": "npm:request", - "target": "npm:oauth-sign", + "source": "npm:regexpu-core", + "target": "npm:regenerate", "type": "static" }, { - "source": "npm:request", - "target": "npm:performance-now", + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", "type": "static" }, { - "source": "npm:request", - "target": "npm:qs@6.5.3", + "source": "npm:regexpu-core", + "target": "npm:regjsparser", "type": "static" }, { - "source": "npm:request", - "target": "npm:safe-buffer", + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", "type": "static" }, { - "source": "npm:request", - "target": "npm:tough-cookie", + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", "type": "static" }, { - "source": "npm:request", - "target": "npm:tunnel-agent", + "source": "npm:registry-auth-token", + "target": "npm:@pnpm/npm-conf", "type": "static" }, { - "source": "npm:request", - "target": "npm:uuid@3.4.0", + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", "type": "static" }, { - "source": "npm:request-progress", - "target": "npm:throttleit", + "source": "npm:remarkable", + "target": "npm:argparse", "type": "static" }, { - "source": "npm:http-signature@1.2.0", - "target": "npm:assert-plus", + "source": "npm:remarkable", + "target": "npm:autolinker", "type": "static" }, { - "source": "npm:http-signature@1.2.0", - "target": "npm:jsprim@1.4.2", + "source": "npm:replace-json-property", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:http-signature@1.2.0", - "target": "npm:sshpk", + "source": "npm:replace-json-property", + "target": "npm:commander@2.20.3", "type": "static" }, { - "source": "npm:jsprim@1.4.2", - "target": "npm:assert-plus", + "source": "npm:replace-json-property", + "target": "npm:jsonfile@5.0.0", "type": "static" }, { - "source": "npm:jsprim@1.4.2", - "target": "npm:extsprintf", + "source": "npm:jsonfile@5.0.0", + "target": "npm:universalify@0.1.2", "type": "static" }, { - "source": "npm:jsprim@1.4.2", - "target": "npm:json-schema", + "source": "npm:jsonfile@5.0.0", + "target": "npm:graceful-fs", "type": "static" }, { - "source": "npm:jsprim@1.4.2", - "target": "npm:verror", + "source": "npm:request-progress", + "target": "npm:throttleit", "type": "static" }, { @@ -39705,73 +37452,73 @@ "type": "static" }, { - "source": "npm:responselike", - "target": "npm:lowercase-keys", + "source": "npm:resp-modifier", + "target": "npm:debug@2.6.9", "type": "static" }, { - "source": "npm:restore-cursor", - "target": "npm:onetime", + "source": "npm:resp-modifier", + "target": "npm:minimatch", "type": "static" }, { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", "type": "static" }, { - "source": "npm:rimraf", - "target": "npm:glob@7.2.3", + "source": "npm:responselike", + "target": "npm:lowercase-keys", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", + "source": "npm:restore-cursor", + "target": "npm:onetime", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", + "source": "npm:restore-cursor", + "target": "npm:signal-exit", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", + "source": "npm:rimraf", + "target": "npm:glob", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", + "source": "npm:rollup", + "target": "npm:fsevents", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:once", + "source": "npm:run-parallel", + "target": "npm:queue-microtask", "type": "static" }, { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", + "source": "npm:rxjs", + "target": "npm:tslib", "type": "static" }, { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", + "source": "npm:safe-array-concat", + "target": "npm:call-bind", "type": "static" }, { - "source": "npm:rollup", - "target": "npm:fsevents", + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", "type": "static" }, { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", "type": "static" }, { - "source": "npm:rxjs", - "target": "npm:tslib", + "source": "npm:safe-array-concat", + "target": "npm:isarray@2.0.5", "type": "static" }, { @@ -39796,7 +37543,7 @@ }, { "source": "npm:sass", - "target": "npm:immutable", + "target": "npm:immutable@4.3.4", "type": "static" }, { @@ -39814,11 +37561,6 @@ "target": "npm:webpack", "type": "static" }, - { - "source": "npm:sass-loader", - "target": "npm:klona", - "type": "static" - }, { "source": "npm:sass-loader", "target": "npm:neo-async", @@ -39849,6 +37591,11 @@ "target": "npm:ajv-keywords", "type": "static" }, + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, { "source": "npm:selfsigned", "target": "npm:node-forge", @@ -39931,7 +37678,7 @@ }, { "source": "npm:semantic-release", - "target": "npm:hosted-git-info@7.0.1", + "target": "npm:hosted-git-info", "type": "static" }, { @@ -40089,11 +37836,6 @@ "target": "npm:is-unicode-supported@2.0.0", "type": "static" }, - { - "source": "npm:hosted-git-info@7.0.1", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, { "source": "npm:js-yaml@4.1.0", "target": "npm:argparse@2.0.1", @@ -40136,12 +37878,12 @@ }, { "source": "npm:send", - "target": "npm:depd", + "target": "npm:depd@1.1.2", "type": "static" }, { "source": "npm:send", - "target": "npm:destroy", + "target": "npm:destroy@1.0.4", "type": "static" }, { @@ -40166,17 +37908,17 @@ }, { "source": "npm:send", - "target": "npm:http-errors", + "target": "npm:http-errors@1.6.3", "type": "static" }, { "source": "npm:send", - "target": "npm:mime", + "target": "npm:mime@1.4.1", "type": "static" }, { "source": "npm:send", - "target": "npm:ms@2.1.3", + "target": "npm:ms@2.0.0", "type": "static" }, { @@ -40191,7 +37933,7 @@ }, { "source": "npm:send", - "target": "npm:statuses", + "target": "npm:statuses@1.4.0", "type": "static" }, { @@ -40199,6 +37941,26 @@ "target": "npm:ms@2.0.0", "type": "static" }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.4.0", + "type": "static" + }, { "source": "npm:serialize-javascript", "target": "npm:randombytes", @@ -40284,6 +38046,41 @@ "target": "npm:send", "type": "static" }, + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + }, { "source": "npm:set-getter", "target": "npm:to-object-path", @@ -40326,62 +38123,37 @@ }, { "source": "npm:signale", - "target": "npm:pkg-conf@2.1.0", + "target": "npm:pkg-conf", "type": "static" }, { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles", + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", "type": "static" }, { "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", + "target": "npm:ansi-styles@3.2.1", "type": "static" }, { "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:figures@2.0.0", "target": "npm:escape-string-regexp@1.0.5", "type": "static" }, { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:p-locate@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - }, - { - "source": "npm:p-limit@1.3.0", - "target": "npm:p-try@1.0.0", - "type": "static" - }, - { - "source": "npm:p-locate@2.0.0", - "target": "npm:p-limit@1.3.0", + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", "type": "static" }, { - "source": "npm:pkg-conf@2.1.0", - "target": "npm:find-up@2.1.0", + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", "type": "static" }, { - "source": "npm:pkg-conf@2.1.0", - "target": "npm:load-json-file", + "source": "npm:figures@2.0.0", + "target": "npm:escape-string-regexp@1.0.5", "type": "static" }, { @@ -40391,787 +38163,482 @@ }, { "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", + "target": "npm:@sigstore/bundle", "type": "static" }, { "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", "type": "static" }, { "source": "npm:sigstore", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:skin-tone", - "target": "npm:unicode-emoji-modifier-base", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:btoa", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:glob@7.2.3", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:gzip-size", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:temp", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", + "target": "npm:@sigstore/sign", "type": "static" }, { - "source": "npm:spdy-transport", - "target": "npm:obuf", + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", "type": "static" }, { - "source": "npm:spdy-transport", - "target": "npm:readable-stream@3.6.2", + "source": "npm:skin-tone", + "target": "npm:unicode-emoji-modifier-base", "type": "static" }, { - "source": "npm:spdy-transport", - "target": "npm:wbuf", + "source": "npm:slice-ansi", + "target": "npm:ansi-styles", "type": "static" }, { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", + "source": "npm:slice-ansi", + "target": "npm:astral-regex", "type": "static" }, { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point", "type": "static" }, { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", + "source": "npm:socket.io", + "target": "npm:accepts", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:asn1", + "source": "npm:socket.io", + "target": "npm:base64id", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:assert-plus", + "source": "npm:socket.io", + "target": "npm:cors", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", + "source": "npm:socket.io", + "target": "npm:debug", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:dashdash", + "source": "npm:socket.io", + "target": "npm:engine.io", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", + "source": "npm:socket.io", + "target": "npm:socket.io-adapter", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:getpass", + "source": "npm:socket.io", + "target": "npm:socket.io-parser", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:jsbn", + "source": "npm:socket.io-adapter", + "target": "npm:ws@8.11.0", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:safer-buffer", + "source": "npm:socket.io-client", + "target": "npm:@socket.io/component-emitter", "type": "static" }, { - "source": "npm:sshpk", - "target": "npm:tweetnacl", + "source": "npm:socket.io-client", + "target": "npm:debug", "type": "static" }, { - "source": "npm:ssri", - "target": "npm:minipass", + "source": "npm:socket.io-client", + "target": "npm:engine.io-client", "type": "static" }, { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", + "source": "npm:socket.io-client", + "target": "npm:socket.io-parser", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint@8.44.0", + "source": "npm:socket.io-parser", + "target": "npm:@socket.io/component-emitter", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint-config-standard", + "source": "npm:socket.io-parser", + "target": "npm:debug", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint-config-standard-jsx", + "source": "npm:sockjs", + "target": "npm:faye-websocket", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint-plugin-import", + "source": "npm:sockjs", + "target": "npm:uuid", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint-plugin-n", + "source": "npm:sockjs", + "target": "npm:websocket-driver", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint-plugin-promise", + "source": "npm:socks", + "target": "npm:ip", "type": "static" }, { - "source": "npm:standard", - "target": "npm:eslint-plugin-react", + "source": "npm:socks", + "target": "npm:smart-buffer", "type": "static" }, { - "source": "npm:standard", - "target": "npm:standard-engine", + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", "type": "static" }, { - "source": "npm:standard", - "target": "npm:version-guard", + "source": "npm:socks-proxy-agent", + "target": "npm:debug", "type": "static" }, { - "source": "npm:standard-engine", - "target": "npm:get-stdin", + "source": "npm:socks-proxy-agent", + "target": "npm:socks", "type": "static" }, { - "source": "npm:standard-engine", - "target": "npm:minimist", + "source": "npm:sonic-boom", + "target": "npm:atomic-sleep", "type": "static" }, { - "source": "npm:standard-engine", - "target": "npm:pkg-conf", + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", "type": "static" }, { - "source": "npm:standard-engine", - "target": "npm:xdg-basedir", + "source": "npm:sort-keys-length", + "target": "npm:sort-keys", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:ajv@6.12.6", + "source": "npm:source-map-explorer", + "target": "npm:btoa", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:debug", + "source": "npm:source-map-explorer", + "target": "npm:chalk", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:espree", + "source": "npm:source-map-explorer", + "target": "npm:convert-source-map", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:globals@13.20.0", + "source": "npm:source-map-explorer", + "target": "npm:ejs", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:ignore", + "source": "npm:source-map-explorer", + "target": "npm:escape-html", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:import-fresh", + "source": "npm:source-map-explorer", + "target": "npm:glob", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:js-yaml@4.1.0", + "source": "npm:source-map-explorer", + "target": "npm:gzip-size", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:minimatch@3.1.2", + "source": "npm:source-map-explorer", + "target": "npm:lodash", "type": "static" }, { - "source": "npm:@eslint/eslintrc@2.1.0", - "target": "npm:strip-json-comments", + "source": "npm:source-map-explorer", + "target": "npm:open@7.4.2", "type": "static" }, { - "source": "npm:@humanwhocodes/config-array@0.11.10", - "target": "npm:@humanwhocodes/object-schema", + "source": "npm:source-map-explorer", + "target": "npm:source-map", "type": "static" }, { - "source": "npm:@humanwhocodes/config-array@0.11.10", - "target": "npm:debug", + "source": "npm:source-map-explorer", + "target": "npm:temp", "type": "static" }, { - "source": "npm:@humanwhocodes/config-array@0.11.10", - "target": "npm:minimatch@3.1.2", + "source": "npm:source-map-explorer", + "target": "npm:yargs@16.2.0", "type": "static" }, { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", "type": "static" }, { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi@7.0.0", "type": "static" }, { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", + "source": "npm:open@7.4.2", + "target": "npm:is-docker", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@eslint-community/eslint-utils", + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@eslint-community/regexpp", + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:ansi-styles", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@eslint/eslintrc@2.1.0", + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:string-width", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@eslint/js", + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:strip-ansi", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@humanwhocodes/config-array@0.11.10", + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@humanwhocodes/module-importer", + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:@nodelib/fs.walk", + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:ajv@6.12.6", + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:chalk", + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:cross-spawn", + "source": "npm:yargs@16.2.0", + "target": "npm:y18n", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:debug", + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.9", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:doctrine", + "source": "npm:source-map-loader", + "target": "npm:webpack", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:escape-string-regexp", + "source": "npm:source-map-loader", + "target": "npm:abab", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:eslint-scope", + "source": "npm:source-map-loader", + "target": "npm:iconv-lite@0.6.3", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:eslint-visitor-keys", + "source": "npm:source-map-loader", + "target": "npm:source-map-js", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:espree", + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:esquery", + "source": "npm:source-map-support", + "target": "npm:buffer-from", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:esutils", + "source": "npm:source-map-support", + "target": "npm:source-map@0.6.1", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:fast-deep-equal", + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:file-entry-cache", + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:find-up@5.0.0", + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:glob-parent@6.0.2", + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:globals@13.20.0", + "source": "npm:spdy", + "target": "npm:debug", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:graphemer", + "source": "npm:spdy", + "target": "npm:handle-thing", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:ignore", + "source": "npm:spdy", + "target": "npm:http-deceiver", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:import-fresh", + "source": "npm:spdy", + "target": "npm:select-hose", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:imurmurhash", + "source": "npm:spdy", + "target": "npm:spdy-transport", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:is-glob", + "source": "npm:spdy-transport", + "target": "npm:debug", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:is-path-inside", + "source": "npm:spdy-transport", + "target": "npm:detect-node", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:js-yaml@4.1.0", + "source": "npm:spdy-transport", + "target": "npm:hpack.js", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:json-stable-stringify-without-jsonify", + "source": "npm:spdy-transport", + "target": "npm:obuf", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:levn", + "source": "npm:spdy-transport", + "target": "npm:readable-stream@3.6.2", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:lodash.merge", + "source": "npm:spdy-transport", + "target": "npm:wbuf", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:minimatch@3.1.2", + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:natural-compare", + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:optionator", + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:strip-ansi", + "source": "npm:sshpk", + "target": "npm:asn1", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:strip-json-comments", + "source": "npm:sshpk", + "target": "npm:assert-plus", "type": "static" }, { - "source": "npm:eslint@8.44.0", - "target": "npm:text-table", + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", "type": "static" }, { - "source": "npm:find-up@5.0.0", - "target": "npm:locate-path@6.0.0", + "source": "npm:sshpk", + "target": "npm:dashdash", "type": "static" }, { - "source": "npm:find-up@5.0.0", - "target": "npm:path-exists", + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", "type": "static" }, { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", + "source": "npm:sshpk", + "target": "npm:getpass", "type": "static" }, { - "source": "npm:globals@13.20.0", - "target": "npm:type-fest@0.20.2", + "source": "npm:sshpk", + "target": "npm:jsbn", "type": "static" }, { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", + "source": "npm:sshpk", + "target": "npm:safer-buffer", "type": "static" }, { - "source": "npm:locate-path@6.0.0", - "target": "npm:p-locate@5.0.0", + "source": "npm:sshpk", + "target": "npm:tweetnacl", "type": "static" }, { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", + "source": "npm:ssri", + "target": "npm:minipass", "type": "static" }, { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit", + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", "type": "static" }, { @@ -41179,11 +38646,6 @@ "target": "npm:graceful-fs", "type": "static" }, - { - "source": "npm:stop-iteration-iterator", - "target": "npm:internal-slot", - "type": "static" - }, { "source": "npm:stream-combiner2", "target": "npm:duplexer2", @@ -41194,6 +38656,16 @@ "target": "npm:readable-stream", "type": "static" }, + { + "source": "npm:stream-throttle", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:stream-throttle", + "target": "npm:limiter", + "type": "static" + }, { "source": "npm:string_decoder", "target": "npm:safe-buffer@5.1.2", @@ -41216,7 +38688,7 @@ }, { "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point@3.0.0", + "target": "npm:is-fullwidth-code-point", "type": "static" }, { @@ -41231,7 +38703,7 @@ }, { "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point@3.0.0", + "target": "npm:is-fullwidth-code-point", "type": "static" }, { @@ -41239,46 +38711,6 @@ "target": "npm:strip-ansi", "type": "static" }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - }, { "source": "npm:string.prototype.padend", "target": "npm:call-bind", @@ -41406,12 +38838,12 @@ }, { "source": "npm:stylus", - "target": "npm:glob@7.2.3", + "target": "npm:glob", "type": "static" }, { "source": "npm:stylus", - "target": "npm:sax", + "target": "npm:sax@1.2.4", "type": "static" }, { @@ -41431,7 +38863,7 @@ }, { "source": "npm:stylus-loader", - "target": "npm:fast-glob@3.3.0", + "target": "npm:fast-glob", "type": "static" }, { @@ -41439,66 +38871,6 @@ "target": "npm:normalize-path", "type": "static" }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, { "source": "npm:supports-color", "target": "npm:has-flag", @@ -41511,12 +38883,7 @@ }, { "source": "npm:supports-hyperlinks", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", + "target": "npm:supports-color", "type": "static" }, { @@ -41531,7 +38898,7 @@ }, { "source": "npm:svgo", - "target": "npm:css-select@5.1.0", + "target": "npm:css-select", "type": "static" }, { @@ -41541,72 +38908,17 @@ }, { "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", "target": "npm:css-what", "type": "static" }, { - "source": "npm:css-select@5.1.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:domutils@3.1.0", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:entities@4.5.0", - "type": "static" - }, - { - "source": "npm:domhandler@5.0.3", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:dom-serializer@2.0.0", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:domelementtype", + "source": "npm:svgo", + "target": "npm:csso", "type": "static" }, { - "source": "npm:domutils@3.1.0", - "target": "npm:domhandler@5.0.3", + "source": "npm:svgo", + "target": "npm:picocolors", "type": "static" }, { @@ -41621,7 +38933,7 @@ }, { "source": "npm:tar", - "target": "npm:minipass", + "target": "npm:minipass@5.0.0", "type": "static" }, { @@ -41699,44 +39011,9 @@ "target": "npm:rimraf@2.6.3", "type": "static" }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, { "source": "npm:rimraf@2.6.3", - "target": "npm:glob@7.2.3", + "target": "npm:glob", "type": "static" }, { @@ -41846,7 +39123,7 @@ }, { "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color", + "target": "npm:supports-color@8.1.1", "type": "static" }, { @@ -41865,53 +39142,23 @@ "type": "static" }, { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", "type": "static" }, { "source": "npm:test-exclude", - "target": "npm:glob@7.2.3", + "target": "npm:@istanbuljs/schema", "type": "static" }, { "source": "npm:test-exclude", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.2.3", - "target": "npm:path-is-absolute", + "target": "npm:glob", "type": "static" }, { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", + "source": "npm:test-exclude", + "target": "npm:minimatch", "type": "static" }, { @@ -41964,6 +39211,16 @@ "target": "npm:punycode", "type": "static" }, + { + "source": "npm:tough-cookie", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:url-parse", + "type": "static" + }, { "source": "npm:tr46", "target": "npm:punycode", @@ -41974,6 +39231,11 @@ "target": "npm:escape-string-regexp@5.0.0", "type": "static" }, + { + "source": "npm:ts-api-utils", + "target": "npm:typescript", + "type": "static" + }, { "source": "npm:ts-jest", "target": "npm:@babel/core", @@ -42031,7 +39293,7 @@ }, { "source": "npm:ts-jest", - "target": "npm:semver@7.5.3", + "target": "npm:semver", "type": "static" }, { @@ -42039,16 +39301,6 @@ "target": "npm:yargs-parser", "type": "static" }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, { "source": "npm:ts-loader", "target": "npm:typescript", @@ -42079,6 +39331,11 @@ "target": "npm:semver", "type": "static" }, + { + "source": "npm:ts-loader", + "target": "npm:source-map", + "type": "static" + }, { "source": "npm:ts-node", "target": "npm:@swc/core", @@ -42189,16 +39446,6 @@ "target": "npm:tsconfig-paths", "type": "static" }, - { - "source": "npm:tsutils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, { "source": "npm:tuf-js", "target": "npm:@tufjs/models", @@ -42234,6 +39481,66 @@ "target": "npm:mime-types", "type": "static" }, + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + }, { "source": "npm:typed-array-length", "target": "npm:call-bind", @@ -42269,6 +39576,11 @@ "target": "npm:which-boxed-primitive", "type": "static" }, + { + "source": "npm:undici", + "target": "npm:@fastify/busboy", + "type": "static" + }, { "source": "npm:unicode-match-property-ecmascript", "target": "npm:unicode-canonical-property-names-ecmascript", @@ -42341,7 +39653,7 @@ }, { "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map", + "target": "npm:convert-source-map@2.0.0", "type": "static" }, { @@ -42359,6 +39671,11 @@ "target": "npm:builtins", "type": "static" }, + { + "source": "npm:verdaccio", + "target": "npm:@cypress/request@3.0.1", + "type": "static" + }, { "source": "npm:verdaccio", "target": "npm:@verdaccio/config", @@ -42424,11 +39741,6 @@ "target": "npm:async", "type": "static" }, - { - "source": "npm:verdaccio", - "target": "npm:body-parser", - "type": "static" - }, { "source": "npm:verdaccio", "target": "npm:clipanion", @@ -42531,12 +39843,7 @@ }, { "source": "npm:verdaccio", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:semver@7.5.1", + "target": "npm:semver", "type": "static" }, { @@ -42571,7 +39878,22 @@ }, { "source": "npm:verdaccio-audit", - "target": "npm:https-proxy-agent", + "target": "npm:https-proxy-agent@5.0.1", + "type": "static" + }, + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:debug", "type": "static" }, { @@ -42581,7 +39903,7 @@ }, { "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/file-locking@11.0.0-6-next.7", + "target": "npm:@verdaccio/file-locking@12.0.0-next.1", "type": "static" }, { @@ -42615,23 +39937,103 @@ "type": "static" }, { - "source": "npm:@verdaccio/file-locking@11.0.0-6-next.7", + "source": "npm:@verdaccio/file-locking@12.0.0-next.1", "target": "npm:lockfile", "type": "static" }, { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", + "source": "npm:@cypress/request@3.0.1", + "target": "npm:aws-sign2", "type": "static" }, { - "source": "npm:semver@7.5.1", - "target": "npm:lru-cache@6.0.0", + "source": "npm:@cypress/request@3.0.1", + "target": "npm:aws4", "type": "static" }, { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", + "source": "npm:@cypress/request@3.0.1", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", "type": "static" }, { @@ -42676,7 +40078,7 @@ }, { "source": "npm:vite", - "target": "npm:esbuild", + "target": "npm:esbuild@0.18.20", "type": "static" }, { @@ -42694,6 +40096,116 @@ "target": "npm:fsevents", "type": "static" }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-loong64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-mips64el@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ppc64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-riscv64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-s390x@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/netbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/openbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/sunos-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-x64@0.18.20", + "type": "static" + }, { "source": "npm:w3c-xmlserializer", "target": "npm:xml-name-validator", @@ -42941,7 +40453,7 @@ }, { "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback", + "target": "npm:connect-history-api-fallback@2.0.0", "type": "static" }, { @@ -43064,6 +40576,11 @@ "target": "npm:clone-deep", "type": "static" }, + { + "source": "npm:webpack-merge", + "target": "npm:flat", + "type": "static" + }, { "source": "npm:webpack-merge", "target": "npm:wildcard", @@ -43194,26 +40711,6 @@ "target": "npm:is-symbol", "type": "static" }, - { - "source": "npm:which-collection", - "target": "npm:is-map", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakmap", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakset", - "type": "static" - }, { "source": "npm:which-typed-array", "target": "npm:available-typed-arrays", @@ -43239,19 +40736,9 @@ "target": "npm:has-tostringtag", "type": "static" }, - { - "source": "npm:which-typed-array", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - }, { "source": "npm:wrap-ansi", - "target": "npm:ansi-styles@4.3.0", + "target": "npm:ansi-styles", "type": "static" }, { @@ -43266,7 +40753,7 @@ }, { "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles@4.3.0", + "target": "npm:ansi-styles", "type": "static" }, { @@ -43279,26 +40766,6 @@ "target": "npm:strip-ansi", "type": "static" }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, { "source": "npm:write-file-atomic", "target": "npm:imurmurhash", @@ -43311,7 +40778,7 @@ }, { "source": "npm:yargs", - "target": "npm:cliui@8.0.1", + "target": "npm:cliui", "type": "static" }, { @@ -43344,21 +40811,6 @@ "target": "npm:yargs-parser", "type": "static" }, - { - "source": "npm:cliui@8.0.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@8.0.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@8.0.1", - "target": "npm:wrap-ansi", - "type": "static" - }, { "source": "npm:yauzl", "target": "npm:buffer-crc32", diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json index 3920dea..db68903 100644 --- a/.nx/cache/project-graph.json +++ b/.nx/cache/project-graph.json @@ -558,29 +558,40787 @@ } } }, - "externalNodes": {}, + "externalNodes": { + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.3.2", + "packageName": "@adobe/css-tools", + "hash": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@angular-devkit/architect": { + "type": "npm", + "name": "npm:@angular-devkit/architect", + "data": { + "version": "0.1700.7", + "packageName": "@angular-devkit/architect", + "hash": "sha512-32uitQKsYLGXAKoXBsmOnPsTt9pS+b9cnFI9ZvBFVhJ31I2EOM7vGcMFalhTxdB/DkVHk4TyO78efV0V26DwCA==" + } + }, + "npm:@angular-devkit/build-angular": { + "type": "npm", + "name": "npm:@angular-devkit/build-angular", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/build-angular", + "hash": "sha512-AtEzLk6n6BXqQzk0Bsupe6GV0IgUe7RbpBfqROi+NZqMA7OUAHCX3xA6M68Qu+5KxBtW7T5lHeZZ7iP/y39wtQ==" + } + }, + "npm:chalk@5.3.0": { + "type": "npm", + "name": "npm:chalk@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:cli-width@4.1.0": { + "type": "npm", + "name": "npm:cli-width@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "cli-width", + "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:escape-string-regexp@5.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:figures@5.0.0": { + "type": "npm", + "name": "npm:figures@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "figures", + "hash": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:figures@6.0.1": { + "type": "npm", + "name": "npm:figures@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "figures", + "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" + } + }, + "npm:figures@2.0.0": { + "type": "npm", + "name": "npm:figures@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "figures", + "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" + } + }, + "npm:inquirer@9.2.11": { + "type": "npm", + "name": "npm:inquirer@9.2.11", + "data": { + "version": "9.2.11", + "packageName": "inquirer", + "hash": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.6", + "packageName": "inquirer", + "hash": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==" + } + }, + "npm:is-unicode-supported@1.3.0": { + "type": "npm", + "name": "npm:is-unicode-supported@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "is-unicode-supported", + "hash": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-unicode-supported@2.0.0": { + "type": "npm", + "name": "npm:is-unicode-supported@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-unicode-supported", + "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" + } + }, + "npm:mute-stream@1.0.0": { + "type": "npm", + "name": "npm:mute-stream@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:run-async@3.0.0": { + "type": "npm", + "name": "npm:run-async@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "run-async", + "hash": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:@angular-devkit/build-webpack": { + "type": "npm", + "name": "npm:@angular-devkit/build-webpack", + "data": { + "version": "0.1700.7", + "packageName": "@angular-devkit/build-webpack", + "hash": "sha512-B9Mg/qYDpE5my8PJ3VPQyRSUV0Oq1bFUzU8s0ZpqEZl1URKc04pm0LtLmebrMIcUZgDiGk0RHaD+O1E9IV/bdQ==" + } + }, + "npm:@angular-devkit/core": { + "type": "npm", + "name": "npm:@angular-devkit/core", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/core", + "hash": "sha512-vATobHo5O5tJba424hJfQWLb40GzvZPNsI74dcgSUTgrDph8ksmk5xB9OvEvf0INorQZ2IMphj/VIWj4/+JqSA==" + } + }, + "npm:@angular-devkit/core@16.0.6": { + "type": "npm", + "name": "npm:@angular-devkit/core@16.0.6", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/core", + "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" + } + }, + "npm:@angular-devkit/schematics": { + "type": "npm", + "name": "npm:@angular-devkit/schematics", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/schematics", + "hash": "sha512-BY11OkJkM3xyXcvyD7x5kGY/c8Ufd4AfPvI0D9imhVxbns45Q48b1DlvCQvSnCJ/s+OwnkrYb/Efa70ZiaGu8A==" + } + }, + "npm:@angular-devkit/schematics@16.0.6": { + "type": "npm", + "name": "npm:@angular-devkit/schematics@16.0.6", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/schematics", + "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" + } + }, + "npm:@angular-eslint/bundled-angular-compiler": { + "type": "npm", + "name": "npm:@angular-eslint/bundled-angular-compiler", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/bundled-angular-compiler", + "hash": "sha512-xRlSh9qjdUdUKAy/0UQsxX7wf1tHApAsHsfismebPriqfmVAPyEg4HBrM8ImWaZxiqaTGC1AyHsUBQD5FK8o6w==" + } + }, + "npm:@angular-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@angular-eslint/eslint-plugin", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/eslint-plugin", + "hash": "sha512-fFOBlCOVObVu3gjLj+0BypqO1ZR/0bfJnDElqMdYwJG7zRaFT8NNQbrOo/q/GQoqOFoNna6mw3teTGsd5JnL2A==" + } + }, + "npm:@angular-eslint/eslint-plugin-template": { + "type": "npm", + "name": "npm:@angular-eslint/eslint-plugin-template", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/eslint-plugin-template", + "hash": "sha512-unZ6QNwtxuB8Eni7UPdw7uK6iZipZUXIsH+ZuLMOxwFgGMqeRnpv8SW0212rto3d/Ec0jESzVHKcwZ9pT+jxgw==" + } + }, + "npm:@angular-eslint/template-parser": { + "type": "npm", + "name": "npm:@angular-eslint/template-parser", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/template-parser", + "hash": "sha512-ofL46rNhRVeSxrSQF0vwhKMco+vJuo+ZGjSOzFmT9N3KAMB0j+WXTbpyGGMy0gQSBc4W6p+j+zxGa2CR2xb6wA==" + } + }, + "npm:@angular-eslint/utils": { + "type": "npm", + "name": "npm:@angular-eslint/utils", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/utils", + "hash": "sha512-CTNPOb05S/DII/Fm8JYUvKo+B4u/ctHjGJ0X1YXUR0q31oaGqTE3KePGq76+Y6swRDf9NjUIcfcnZp3u3j4CBQ==" + } + }, + "npm:@angular/animations": { + "type": "npm", + "name": "npm:@angular/animations", + "data": { + "version": "17.0.7", + "packageName": "@angular/animations", + "hash": "sha512-IjZjPGMxvi2a9o7fzjwNO44FvhTZlVSgcPtqM6Glq0+WVeQcnZxf1Onj68M/FGx2AunS8elRbrgPxTexVeSo7A==" + } + }, + "npm:@angular/cdk": { + "type": "npm", + "name": "npm:@angular/cdk", + "data": { + "version": "17.0.4", + "packageName": "@angular/cdk", + "hash": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==" + } + }, + "npm:@angular/cli": { + "type": "npm", + "name": "npm:@angular/cli", + "data": { + "version": "17.0.7", + "packageName": "@angular/cli", + "hash": "sha512-oSa0GVAQNA7wFbLJYeaO3kV4iUcbKEqXDLxcIE8s1GfHddBOlXH2P1T4fXonCBl5qvV+joP0G0+fs7I0w2utZQ==" + } + }, + "npm:@schematics/angular@17.0.7": { + "type": "npm", + "name": "npm:@schematics/angular@17.0.7", + "data": { + "version": "17.0.7", + "packageName": "@schematics/angular", + "hash": "sha512-d7QKmcKrM4owb/2bR7Ipf23roiNbvbD/x7reNhQAtKAPLSHJ3Ulkf1+Yv+dj+9f+K7y9SBviEUSrD27BQ9WaxQ==" + } + }, + "npm:@schematics/angular": { + "type": "npm", + "name": "npm:@schematics/angular", + "data": { + "version": "16.0.6", + "packageName": "@schematics/angular", + "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" + } + }, + "npm:@angular/common": { + "type": "npm", + "name": "npm:@angular/common", + "data": { + "version": "17.0.7", + "packageName": "@angular/common", + "hash": "sha512-bPPL6x0KOAOTxKSE2j4EWmEUOnqZYzOYiHzroa5b9UEyA9NvGkd9bm3zIxw8xcndRj1Ehcmvpi6KBLcYBBbWfg==" + } + }, + "npm:@angular/compiler": { + "type": "npm", + "name": "npm:@angular/compiler", + "data": { + "version": "17.0.7", + "packageName": "@angular/compiler", + "hash": "sha512-QHPuLti2c2tGZmOGZ0cfCHo4LxiHUkC27I0aZFDyQSSQqEI5obQGVlEREHysw0nsS3sYIcLvqcwcKcRtXlXtxQ==" + } + }, + "npm:@angular/compiler-cli": { + "type": "npm", + "name": "npm:@angular/compiler-cli", + "data": { + "version": "17.0.7", + "packageName": "@angular/compiler-cli", + "hash": "sha512-YnL38idjIYtl3BXYpv+sVJKWGbUjHT6eyQSQVAfO/1AwWqVa21K9hnE+Q37VmUKEcKFMnQembeuErA+KVsGI6A==" + } + }, + "npm:@angular/core": { + "type": "npm", + "name": "npm:@angular/core", + "data": { + "version": "17.0.7", + "packageName": "@angular/core", + "hash": "sha512-mEkelXkzEi6+A9GjdKOSGGzQAfo1iAjVTn6YsplNUeGE5JgDZYZ7sXGQqs0Lin7dzJxnPAgGjCOl7SpWLXIPSQ==" + } + }, + "npm:@angular/forms": { + "type": "npm", + "name": "npm:@angular/forms", + "data": { + "version": "17.0.7", + "packageName": "@angular/forms", + "hash": "sha512-28BxRxEmgZIofGwVp6s2v3ri/kuWW+/EY/ZXhavlWKJEh4ATJl72k0RkRWNcQi4wnvn0Qb8tFdnVJnvRZvvKEw==" + } + }, + "npm:@angular/language-service": { + "type": "npm", + "name": "npm:@angular/language-service", + "data": { + "version": "17.0.7", + "packageName": "@angular/language-service", + "hash": "sha512-03EXeBZgyGNnEDLiABwEw0lpAcqLxSgl+bXQahOO4OnBSYQWGEiqfs3ymNbNj0chUfQVadG4FWghwGTGbj77Iw==" + } + }, + "npm:@angular/platform-browser": { + "type": "npm", + "name": "npm:@angular/platform-browser", + "data": { + "version": "17.0.7", + "packageName": "@angular/platform-browser", + "hash": "sha512-bm9/wt51nc/MPjft/FlRNIgFSeLjDtfJOT7M32Rt6kOHhNKSK7ZTPWdMe9ahuHSbAhLzd0G/4NsT5sKrWSeVZg==" + } + }, + "npm:@angular/platform-browser-dynamic": { + "type": "npm", + "name": "npm:@angular/platform-browser-dynamic", + "data": { + "version": "17.0.7", + "packageName": "@angular/platform-browser-dynamic", + "hash": "sha512-OquwUX9fLWA2JUZW5Jm6atk0CPt0sA7Tg24eGLsr6g1XfTS7jRZprlGaa72NgPLnQVV6m84o/ZiNYS6yPmq1Gg==" + } + }, + "npm:@angular/router": { + "type": "npm", + "name": "npm:@angular/router", + "data": { + "version": "17.0.7", + "packageName": "@angular/router", + "hash": "sha512-rUFPe1uDlYYw6+3Gq68czW7WxBH7zT/D3UsT1otqwUV4RnQQsVze4fIit9FqJh7tuP4y3WpB4XBNf7p7Oi6TJw==" + } + }, + "npm:@assemblyscript/loader": { + "type": "npm", + "name": "npm:@assemblyscript/loader", + "data": { + "version": "0.10.1", + "packageName": "@assemblyscript/loader", + "hash": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.23.5", + "packageName": "@babel/code-frame", + "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:color-convert@1.9.3": { + "type": "npm", + "name": "npm:color-convert@1.9.3", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name@1.1.3": { + "type": "npm", + "name": "npm:color-name@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color@8.1.1": { + "type": "npm", + "name": "npm:supports-color@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:supports-color@9.4.0": { + "type": "npm", + "name": "npm:supports-color@9.4.0", + "data": { + "version": "9.4.0", + "packageName": "supports-color", + "hash": "4124946643497815937" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.23.5", + "packageName": "@babel/compat-data", + "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.23.2", + "packageName": "@babel/core", + "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.9.0", + "packageName": "convert-source-map", + "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "3378029399647957957" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.0", + "packageName": "@babel/generator", + "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" + } + }, + "npm:@babel/generator@7.23.6": { + "type": "npm", + "name": "npm:@babel/generator@7.23.6", + "data": { + "version": "7.23.6", + "packageName": "@babel/generator", + "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.23.6", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.23.6", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.4.4", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-function-name", + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.23.3", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.23.4", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.23.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.23.6", + "packageName": "@babel/helpers", + "hash": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.23.4", + "packageName": "@babel/highlight", + "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.23.6", + "packageName": "@babel/parser", + "hash": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.23.5", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.23.2", + "packageName": "@babel/preset-env", + "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.6-no-external-plugins", + "packageName": "@babel/preset-modules", + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-typescript", + "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/runtime", + "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.22.15", + "packageName": "@babel/template", + "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.23.6", + "packageName": "@babel/traverse", + "hash": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.23.6", + "packageName": "@babel/types", + "hash": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.20", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==" + } + }, + "npm:@cypress/request": { + "type": "npm", + "name": "npm:@cypress/request", + "data": { + "version": "2.88.12", + "packageName": "@cypress/request", + "hash": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==" + } + }, + "npm:@cypress/request@3.0.1": { + "type": "npm", + "name": "npm:@cypress/request@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@cypress/request", + "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" + } + }, + "npm:@cypress/xvfb": { + "type": "npm", + "name": "npm:@cypress/xvfb", + "data": { + "version": "1.2.4", + "packageName": "@cypress/xvfb", + "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@4.3.2": { + "type": "npm", + "name": "npm:debug@4.3.2", + "data": { + "version": "4.3.2", + "packageName": "debug", + "hash": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==" + } + }, + "npm:debug@3.1.0": { + "type": "npm", + "name": "npm:debug@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "debug", + "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.7", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" + } + }, + "npm:@esbuild/android-arm": { + "type": "npm", + "name": "npm:@esbuild/android-arm", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/android-arm", + "hash": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==" + } + }, + "npm:@esbuild/android-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm", + "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" + } + }, + "npm:@esbuild/android-arm64": { + "type": "npm", + "name": "npm:@esbuild/android-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==" + } + }, + "npm:@esbuild/android-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" + } + }, + "npm:@esbuild/android-x64": { + "type": "npm", + "name": "npm:@esbuild/android-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/android-x64", + "hash": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==" + } + }, + "npm:@esbuild/android-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-x64", + "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" + } + }, + "npm:@esbuild/darwin-arm64": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" + } + }, + "npm:@esbuild/darwin-x64": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==" + } + }, + "npm:@esbuild/darwin-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" + } + }, + "npm:@esbuild/freebsd-arm64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" + } + }, + "npm:@esbuild/freebsd-x64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" + } + }, + "npm:@esbuild/linux-arm": { + "type": "npm", + "name": "npm:@esbuild/linux-arm", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==" + } + }, + "npm:@esbuild/linux-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" + } + }, + "npm:@esbuild/linux-arm64": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==" + } + }, + "npm:@esbuild/linux-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" + } + }, + "npm:@esbuild/linux-ia32": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==" + } + }, + "npm:@esbuild/linux-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" + } + }, + "npm:@esbuild/linux-loong64": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==" + } + }, + "npm:@esbuild/linux-loong64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" + } + }, + "npm:@esbuild/linux-mips64el": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" + } + }, + "npm:@esbuild/linux-ppc64": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" + } + }, + "npm:@esbuild/linux-riscv64": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" + } + }, + "npm:@esbuild/linux-s390x": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==" + } + }, + "npm:@esbuild/linux-s390x@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==" + } + }, + "npm:@esbuild/linux-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" + } + }, + "npm:@esbuild/netbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" + } + }, + "npm:@esbuild/openbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" + } + }, + "npm:@esbuild/sunos-x64": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" + } + }, + "npm:@esbuild/win32-arm64": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==" + } + }, + "npm:@esbuild/win32-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" + } + }, + "npm:@esbuild/win32-ia32": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==" + } + }, + "npm:@esbuild/win32-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==" + } + }, + "npm:@esbuild/win32-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.10.0", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "2.1.4", + "packageName": "@eslint/eslintrc", + "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" + } + }, + "npm:ajv@6.12.6": { + "type": "npm", + "name": "npm:ajv@6.12.6", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:argparse@2.0.1": { + "type": "npm", + "name": "npm:argparse@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:globals@13.24.0": { + "type": "npm", + "name": "npm:globals@13.24.0", + "data": { + "version": "13.24.0", + "packageName": "globals", + "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:js-yaml@4.1.0": { + "type": "npm", + "name": "npm:js-yaml@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:minimatch@3.1.2": { + "type": "npm", + "name": "npm:minimatch@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:minimatch@7.4.6": { + "type": "npm", + "name": "npm:minimatch@7.4.6", + "data": { + "version": "7.4.6", + "packageName": "minimatch", + "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@4.8.3": { + "type": "npm", + "name": "npm:type-fest@4.8.3", + "data": { + "version": "4.8.3", + "packageName": "type-fest", + "hash": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==" + } + }, + "npm:type-fest@1.4.0": { + "type": "npm", + "name": "npm:type-fest@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:type-fest@3.13.1": { + "type": "npm", + "name": "npm:type-fest@3.13.1", + "data": { + "version": "3.13.1", + "packageName": "type-fest", + "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" + } + }, + "npm:type-fest@2.19.0": { + "type": "npm", + "name": "npm:type-fest@2.19.0", + "data": { + "version": "2.19.0", + "packageName": "type-fest", + "hash": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "8.48.0", + "packageName": "@eslint/js", + "hash": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==" + } + }, + "npm:@fastify/busboy": { + "type": "npm", + "name": "npm:@fastify/busboy", + "data": { + "version": "2.1.0", + "packageName": "@fastify/busboy", + "hash": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.11.13", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "2.0.1", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "13543247940053143024" + } + }, + "npm:strip-ansi@7.1.0": { + "type": "npm", + "name": "npm:strip-ansi@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "strip-ansi", + "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "11479311392825997119" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrap-ansi@7.0.0": { + "type": "npm", + "name": "npm:wrap-ansi@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.7.0", + "packageName": "@jest/console", + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.7.0", + "packageName": "@jest/core", + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.7.0", + "packageName": "@jest/environment", + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.7.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.7.0", + "packageName": "@jest/globals", + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.7.0", + "packageName": "@jest/reporters", + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.6.3", + "packageName": "@jest/schemas", + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.6.3", + "packageName": "@jest/source-map", + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-result", + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.7.0", + "packageName": "@jest/transform", + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.6.3", + "packageName": "@jest/types", + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.1", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.5", + "packageName": "@jridgewell/source-map", + "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:@ljharb/through": { + "type": "npm", + "name": "npm:@ljharb/through", + "data": { + "version": "2.3.11", + "packageName": "@ljharb/through", + "hash": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==" + } + }, + "npm:@mole-inc/bin-wrapper": { + "type": "npm", + "name": "npm:@mole-inc/bin-wrapper", + "data": { + "version": "8.0.1", + "packageName": "@mole-inc/bin-wrapper", + "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" + } + }, + "npm:@ngrx/store": { + "type": "npm", + "name": "npm:@ngrx/store", + "data": { + "version": "17.0.1", + "packageName": "@ngrx/store", + "hash": "sha512-BmVzN+fqyz0ZrVEmJ+jrNwePMKcpNL49vb8sbQ3yDDftxgZz2HqRKFMexqlXpz5ixwK5LqTOblHNQOgi9irsTw==" + } + }, + "npm:@ngtools/webpack": { + "type": "npm", + "name": "npm:@ngtools/webpack", + "data": { + "version": "17.0.7", + "packageName": "@ngtools/webpack", + "hash": "sha512-gwhUhpwXn0trwwKdSu9WlJbEcLt+s/2fPwoD9lZ0y3wXfrOogsfcNBJKeO5BZf1h+A3AWt7ePmgrZXSJM+865Q==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/agent": { + "type": "npm", + "name": "npm:@npmcli/agent", + "data": { + "version": "2.2.0", + "packageName": "@npmcli/agent", + "hash": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==" + } + }, + "npm:http-proxy-agent@7.0.0": { + "type": "npm", + "name": "npm:http-proxy-agent@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:lru-cache@10.1.0": { + "type": "npm", + "name": "npm:lru-cache@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "lru-cache", + "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" + } + }, + "npm:lru-cache@6.0.0": { + "type": "npm", + "name": "npm:lru-cache@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:lru-cache@4.1.5": { + "type": "npm", + "name": "npm:lru-cache@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "lru-cache", + "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "5.0.3", + "packageName": "@npmcli/git", + "hash": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==" + } + }, + "npm:isexe@3.1.1": { + "type": "npm", + "name": "npm:isexe@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "isexe", + "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:which@4.0.0": { + "type": "npm", + "name": "npm:which@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "which", + "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "228540766434988782" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "7.0.0", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "7.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==" + } + }, + "npm:@nrwl/angular": { + "type": "npm", + "name": "npm:@nrwl/angular", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/angular", + "hash": "sha512-4f7o6dsoQwP8o8O57dT0fTNnKcRllsQVkYeZx2SR/I0Gs2I/UlaCQZ6GCjy+BXSJS3AXn7sz6a69vo0uGJPBFw==" + } + }, + "npm:@nrwl/cypress": { + "type": "npm", + "name": "npm:@nrwl/cypress", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/cypress", + "hash": "sha512-/cimurrZnHFX9o0Sb5cj7SskUtEgA2aYnpLuZuAWaazpQPd+72WXTXFVYN8dVd7wgTV96uTQUTkUGt9nzvNiTA==" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/devkit", + "hash": "sha512-uZVqc2qhi+WdSqLV9aIcE+5ck+IUSQ47Cc5bslWrssQjBncqGavHYDuU4ZLuKK5HxCuZqlQjvo7TsF7LeOjNiA==" + } + }, + "npm:@nrwl/devkit@16.5.0": { + "type": "npm", + "name": "npm:@nrwl/devkit@16.5.0", + "data": { + "version": "16.5.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==" + } + }, + "npm:@nrwl/eslint-plugin-nx": { + "type": "npm", + "name": "npm:@nrwl/eslint-plugin-nx", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/eslint-plugin-nx", + "hash": "sha512-xQDmFeIc+VR3q6scSSciSNVSdcRI52FFTTlDw4/pZCJk59LJTt6GgnqeL0Aj4EIgELfZQLOsKrxIoup5gzKlrQ==" + } + }, + "npm:@nrwl/jest": { + "type": "npm", + "name": "npm:@nrwl/jest", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/jest", + "hash": "sha512-YZ6yFFw1lq7nSCZTkP8qMbIeYX/yJ6Ko6iXPECPQViy4W6E9WEVnWU52RkovoKSN+CuhienzJCxne7DALLLr3w==" + } + }, + "npm:@nrwl/js": { + "type": "npm", + "name": "npm:@nrwl/js", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/js", + "hash": "sha512-oFnyaVOpVG3XrkIXQMs5TM6hrRRBe38jRX79d51S41yLuiOrHgpJlMmii1wafevM1Dpk9UlAvPh7v8OffgDZtg==" + } + }, + "npm:@nrwl/nx-plugin": { + "type": "npm", + "name": "npm:@nrwl/nx-plugin", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/nx-plugin", + "hash": "sha512-sg8oOxs3abfNMOpWK8utqy2wIfihLnLAtWxBFoRb/R+Xwjc+vw/ibqGGvZm+jSlk5SQxit52RMMQtl5foI5HQw==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/tao", + "hash": "sha512-cgtUKTRSxDZ94S9IpC27/qYZJ1YttJDET+veKrtRYvwnHFgkq1peyeTTtnM25yJon7PRdm2lYrlIVdPm0vXupw==" + } + }, + "npm:@nrwl/web": { + "type": "npm", + "name": "npm:@nrwl/web", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/web", + "hash": "sha512-htiLKuLgWikZOf+gKzX4tkkcYV+94ZGYeBEHAZ8Agx4dyw7/8u1JStSAvrwZFAzw06KejGJy4NAh2ycCLJMwrA==" + } + }, + "npm:@nrwl/webpack": { + "type": "npm", + "name": "npm:@nrwl/webpack", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/webpack", + "hash": "sha512-cxBh3Aqg9nIR7be3y9pvss2x22Bp0iDmcvpj/L0fc/3PK9DpYK2Y2eDGvswsd5xZvLTu5BhQVji/io73JmmB4w==" + } + }, + "npm:@nrwl/workspace": { + "type": "npm", + "name": "npm:@nrwl/workspace", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/workspace", + "hash": "sha512-ACMnIxblNEAsjFfkpNspENxlm/jMpF9hr3aKioyoFAUmATxO7lJt8VuA43slI1oVgtTfWpOcM0aSRP/07kVW6Q==" + } + }, + "npm:@nx/angular": { + "type": "npm", + "name": "npm:@nx/angular", + "data": { + "version": "17.2.6", + "packageName": "@nx/angular", + "hash": "sha512-e11FcG9SP8gR/nwfhvPnORfOee5zjUFkC1vLLY/JdJRV2jXE5qLtoTVq8lFqU6LjD21FoFCt5EMiceRj3WoEZQ==" + } + }, + "npm:yallist@4.0.0": { + "type": "npm", + "name": "npm:yallist@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yallist@2.1.2": { + "type": "npm", + "name": "npm:yallist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "yallist", + "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:@nx/cypress": { + "type": "npm", + "name": "npm:@nx/cypress", + "data": { + "version": "17.2.6", + "packageName": "@nx/cypress", + "hash": "sha512-C2TSLyV2Nm8zIM8aJJrRkv6RO4iqLRmO+XC0/Z58SF9cD3iF7HSKzGtj2iRshgI8Pac7WgvcZLYyiKQIAdJIUw==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "17.2.6", + "packageName": "@nx/devkit", + "hash": "sha512-a9GPw0KiLhvv2RBLPlWgaVDZRvgww4ANBwv7LuGvk8FNgxF5vkQMM5WyKpvxKJhmh1EZ+T9JsGWAFrK7skW9Bw==" + } + }, + "npm:@nx/devkit@16.5.0": { + "type": "npm", + "name": "npm:@nx/devkit@16.5.0", + "data": { + "version": "16.5.0", + "packageName": "@nx/devkit", + "hash": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==" + } + }, + "npm:@nx/eslint": { + "type": "npm", + "name": "npm:@nx/eslint", + "data": { + "version": "17.2.6", + "packageName": "@nx/eslint", + "hash": "sha512-gDtIf6T3vCf7XO2lWvVulFcNmx2l6kKGZypEpLMGtfdAUai/aaBbNHbbwcsOZiPvWtNo64mGBZX5Qv6aPb9oPg==" + } + }, + "npm:@nx/eslint-plugin": { + "type": "npm", + "name": "npm:@nx/eslint-plugin", + "data": { + "version": "17.2.6", + "packageName": "@nx/eslint-plugin", + "hash": "sha512-P9+G9r6fz0RP/muchPFHyicfA4o80kUD8oRmrJJAjI3KolpRk3Kld7GAbXPkunnGuMcf/nSJxaUkt+QCe5zOhQ==" + } + }, + "npm:@nx/jest": { + "type": "npm", + "name": "npm:@nx/jest", + "data": { + "version": "17.2.6", + "packageName": "@nx/jest", + "hash": "sha512-lWdzwkNfVQPCcr3gb3OrtUX/wjI9Oxm6Q9cKezPydCWtrZnEQii/aRi9/AncCGBf0Rx6hLT0yaiIAvJKlCk9qg==" + } + }, + "npm:@nx/js": { + "type": "npm", + "name": "npm:@nx/js", + "data": { + "version": "17.2.6", + "packageName": "@nx/js", + "hash": "sha512-jjWzEg63C7vBu6Lo890N8gIcEji+8/ggf5My2kCmAnJehqIg8/B0Bq0x9shIxAT7qZgyLxHbC3VWg5ictS6aEw==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:fast-glob@3.3.2": { + "type": "npm", + "name": "npm:fast-glob@3.3.2", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.1", + "packageName": "fast-glob", + "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" + } + }, + "npm:ora@5.3.0": { + "type": "npm", + "name": "npm:ora@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:source-map@0.6.1": { + "type": "npm", + "name": "npm:source-map@0.6.1", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:@nx/linter": { + "type": "npm", + "name": "npm:@nx/linter", + "data": { + "version": "17.2.6", + "packageName": "@nx/linter", + "hash": "sha512-TTS3WPZQNVdFgTykdX3jbELcN0IsYpKPv8TGOzqkJbRfvsF2jjZzQggWujg1iXBdWRKdaWYDi8SUi+4wocemIg==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-ezU5u7hkEwI2xzsFSjyr53uNURBvga40LQlpEnS/CbqRifHHhTKisCy+r2+kRhiOwTeR+I+/2D3zPyIyN3aEHQ==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-wUIwbM/7LMxlFkEOlbxR/s2qaRuD69yXc70f2rtxsskwJ4GOF5kfc1jk2YaDs9qswI+FgQVgbeZu8pgF+slY7Q==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-uBKEGqG4txVCpBirRzt1QwuOLzfA0s9dlUP7n5t4qJuaf9OXuVcDXay8g84WT1jx4PPtipyv/wyIFu3r7v8kZw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-dSDVz2BktaPHMkrJojFCx+V+QFLDF0KzoHorESzZmHZTfumr0xtJ1COWCU+gYmLptc+8OgwCzCPWXHhcDgji/A==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-AD99Kk47Yxn3IJ89aCT1oVpNX1XNECAYay97yhqf2tiBsDv9hC43PppOdjI0dNP5VRBTrr6EsWdhvE0uNJ3RJw==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-MOX/EJyzseEnzbFxY7V6es/xta6WQ0cDDrl6i6qjCRnoRTFFVMsL0Fb4dtVbv7fd75O41P+OBGpG70MYx2SOxw==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-16xTSszGPY25INDUr4pzLXWcO3va1764iVFiHRTuJr5siDymY7zSj+DPKFmewzqF2358Y5m8AtMotY0FqKciYg==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-F/nIq8bcZd2cNuBiQbyJwur7CpeRBCt0qKDF38HQ2l3HhQv+jwk4T6115LMQqwZb9e6kt6BAFsY+6O7I6t3pCw==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-1lAKKKiH7eduzqcPDB03iPz38yNXn3Y4Q/3jULjaRc3EFAplfBsYVwJ9kGjXPZSrpt/AY7w5ATY55/r5B3gQnA==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-LrJySMWrO5oWMrP4VOWM1hr3c4rtxHGCcRy19VwqvaAPDrnsg0qfPjv4q1C9YyIU8sj+T3oJs1yZdnNntlN8ew==" + } + }, + "npm:@nx/plugin": { + "type": "npm", + "name": "npm:@nx/plugin", + "data": { + "version": "17.2.6", + "packageName": "@nx/plugin", + "hash": "sha512-K9DZhFeqtmRSELwEbrK2zLOHhCf97glBjF2vRN24zb5k7tCAOtpsK7L6TD9Xl5OSx1e9ffi9emRJUjPli6XoRw==" + } + }, + "npm:@nx/web": { + "type": "npm", + "name": "npm:@nx/web", + "data": { + "version": "17.2.6", + "packageName": "@nx/web", + "hash": "sha512-6VkA19bFepNmrIISxXwYMo5nm/uUAPHQKNPfSHqxo9Ef57WS93dDMVRqc7641lRvT31Nc75Uu0NPYGo/B/s87A==" + } + }, + "npm:@nx/webpack": { + "type": "npm", + "name": "npm:@nx/webpack", + "data": { + "version": "17.2.6", + "packageName": "@nx/webpack", + "hash": "sha512-vODJosrOh5ru1Gy7rBp9yXVeeSF32bq1qTjOX3ez1OOXbw5fmJcxaOjOoh44ty0+d9wIB2YIl8lHsmmaCcmOnw==" + } + }, + "npm:array-union@3.0.1": { + "type": "npm", + "name": "npm:array-union@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:copy-webpack-plugin@10.2.4": { + "type": "npm", + "name": "npm:copy-webpack-plugin@10.2.4", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "11.0.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" + } + }, + "npm:cosmiconfig@7.1.0": { + "type": "npm", + "name": "npm:cosmiconfig@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "cosmiconfig", + "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:cosmiconfig@8.3.6": { + "type": "npm", + "name": "npm:cosmiconfig@8.3.6", + "data": { + "version": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:globby@12.2.0": { + "type": "npm", + "name": "npm:globby@12.2.0", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:globby@14.0.0": { + "type": "npm", + "name": "npm:globby@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "globby", + "hash": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==" + } + }, + "npm:globby@13.2.2": { + "type": "npm", + "name": "npm:globby@13.2.2", + "data": { + "version": "13.2.2", + "packageName": "globby", + "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:iconv-lite@0.6.3": { + "type": "npm", + "name": "npm:iconv-lite@0.6.3", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:less@4.1.3": { + "type": "npm", + "name": "npm:less@4.1.3", + "data": { + "version": "4.1.3", + "packageName": "less", + "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" + } + }, + "npm:less": { + "type": "npm", + "name": "npm:less", + "data": { + "version": "4.2.0", + "packageName": "less", + "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" + } + }, + "npm:loader-utils@2.0.4": { + "type": "npm", + "name": "npm:loader-utils@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "3.2.1", + "packageName": "loader-utils", + "hash": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir@4.0.0": { + "type": "npm", + "name": "npm:make-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:mini-css-extract-plugin@2.4.7": { + "type": "npm", + "name": "npm:mini-css-extract-plugin@2.4.7", + "data": { + "version": "2.4.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.7.6", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==" + } + }, + "npm:parse5@4.0.0": { + "type": "npm", + "name": "npm:parse5@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse5", + "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pify@3.0.0": { + "type": "npm", + "name": "npm:pify@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "npm:postcss-loader@6.2.1": { + "type": "npm", + "name": "npm:postcss-loader@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "postcss-loader", + "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "7.3.3", + "packageName": "postcss-loader", + "hash": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==" + } + }, + "npm:sass-loader@12.6.0": { + "type": "npm", + "name": "npm:sass-loader@12.6.0", + "data": { + "version": "12.6.0", + "packageName": "sass-loader", + "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "13.3.2", + "packageName": "sass-loader", + "hash": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:source-map-loader@3.0.2": { + "type": "npm", + "name": "npm:source-map-loader@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "source-map-loader", + "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "4.0.1", + "packageName": "source-map-loader", + "hash": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==" + } + }, + "npm:@nx/workspace": { + "type": "npm", + "name": "npm:@nx/workspace", + "data": { + "version": "17.2.6", + "packageName": "@nx/workspace", + "hash": "sha512-mss1RggPBWpggMJ7ok83iHx/PdlevhDqayLvjguRKjPwk0rTBRUuvY78AkKo2RbMOQyywNMt09MNz5FOmfCfqg==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "4.0.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "5.0.2", + "packageName": "@octokit/core", + "hash": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "9.0.4", + "packageName": "@octokit/endpoint", + "hash": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "7.0.2", + "packageName": "@octokit/graphql", + "hash": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "19.1.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "9.1.5", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==" + } + }, + "npm:@octokit/plugin-retry": { + "type": "npm", + "name": "npm:@octokit/plugin-retry", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-retry", + "hash": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==" + } + }, + "npm:@octokit/plugin-throttling": { + "type": "npm", + "name": "npm:@octokit/plugin-throttling", + "data": { + "version": "8.1.3", + "packageName": "@octokit/plugin-throttling", + "hash": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "8.1.6", + "packageName": "@octokit/request", + "hash": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "5.0.1", + "packageName": "@octokit/request-error", + "hash": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "12.4.0", + "packageName": "@octokit/types", + "hash": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@pnpm/config.env-replace": { + "type": "npm", + "name": "npm:@pnpm/config.env-replace", + "data": { + "version": "1.1.0", + "packageName": "@pnpm/config.env-replace", + "hash": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==" + } + }, + "npm:@pnpm/network.ca-file": { + "type": "npm", + "name": "npm:@pnpm/network.ca-file", + "data": { + "version": "1.0.2", + "packageName": "@pnpm/network.ca-file", + "hash": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==" + } + }, + "npm:graceful-fs@4.2.10": { + "type": "npm", + "name": "npm:graceful-fs@4.2.10", + "data": { + "version": "4.2.10", + "packageName": "graceful-fs", + "hash": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:@pnpm/npm-conf": { + "type": "npm", + "name": "npm:@pnpm/npm-conf", + "data": { + "version": "2.2.2", + "packageName": "@pnpm/npm-conf", + "hash": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==" + } + }, + "npm:magic-string@0.30.0": { + "type": "npm", + "name": "npm:magic-string@0.30.0", + "data": { + "version": "0.30.0", + "packageName": "magic-string", + "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.5", + "packageName": "magic-string", + "hash": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==" + } + }, + "npm:@semantic-release/changelog": { + "type": "npm", + "name": "npm:@semantic-release/changelog", + "data": { + "version": "6.0.3", + "packageName": "@semantic-release/changelog", + "hash": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==" + } + }, + "npm:@semantic-release/commit-analyzer": { + "type": "npm", + "name": "npm:@semantic-release/commit-analyzer", + "data": { + "version": "11.1.0", + "packageName": "@semantic-release/commit-analyzer", + "hash": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==" + } + }, + "npm:@semantic-release/error": { + "type": "npm", + "name": "npm:@semantic-release/error", + "data": { + "version": "3.0.0", + "packageName": "@semantic-release/error", + "hash": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==" + } + }, + "npm:@semantic-release/error@4.0.0": { + "type": "npm", + "name": "npm:@semantic-release/error@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "@semantic-release/error", + "hash": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==" + } + }, + "npm:@semantic-release/exec": { + "type": "npm", + "name": "npm:@semantic-release/exec", + "data": { + "version": "6.0.3", + "packageName": "@semantic-release/exec", + "hash": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==" + } + }, + "npm:@semantic-release/git": { + "type": "npm", + "name": "npm:@semantic-release/git", + "data": { + "version": "10.0.1", + "packageName": "@semantic-release/git", + "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" + } + }, + "npm:@semantic-release/github": { + "type": "npm", + "name": "npm:@semantic-release/github", + "data": { + "version": "9.2.5", + "packageName": "@semantic-release/github", + "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" + } + }, + "npm:aggregate-error@5.0.0": { + "type": "npm", + "name": "npm:aggregate-error@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "aggregate-error", + "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:aggregate-error@4.0.1": { + "type": "npm", + "name": "npm:aggregate-error@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "aggregate-error", + "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" + } + }, + "npm:clean-stack@5.2.0": { + "type": "npm", + "name": "npm:clean-stack@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "clean-stack", + "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clean-stack@4.2.0": { + "type": "npm", + "name": "npm:clean-stack@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "clean-stack", + "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:mime@4.0.1": { + "type": "npm", + "name": "npm:mime@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "mime", + "hash": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==" + } + }, + "npm:mime@2.6.0": { + "type": "npm", + "name": "npm:mime@2.6.0", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@1.4.1": { + "type": "npm", + "name": "npm:mime@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "mime", + "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + } + }, + "npm:mime@3.0.0": { + "type": "npm", + "name": "npm:mime@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "mime", + "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + }, + "npm:path-type@5.0.0": { + "type": "npm", + "name": "npm:path-type@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-type", + "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:url-join@5.0.0": { + "type": "npm", + "name": "npm:url-join@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "url-join", + "hash": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:@semantic-release/npm": { + "type": "npm", + "name": "npm:@semantic-release/npm", + "data": { + "version": "11.0.2", + "packageName": "@semantic-release/npm", + "hash": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==" + } + }, + "npm:execa@8.0.1": { + "type": "npm", + "name": "npm:execa@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "execa", + "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" + } + }, + "npm:execa@0.7.0": { + "type": "npm", + "name": "npm:execa@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "execa", + "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" + } + }, + "npm:execa@4.1.0": { + "type": "npm", + "name": "npm:execa@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "execa", + "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:execa@7.2.0": { + "type": "npm", + "name": "npm:execa@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "execa", + "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" + } + }, + "npm:get-stream@8.0.1": { + "type": "npm", + "name": "npm:get-stream@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "get-stream", + "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" + } + }, + "npm:get-stream@3.0.0": { + "type": "npm", + "name": "npm:get-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "get-stream", + "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream@6.0.1": { + "type": "npm", + "name": "npm:get-stream@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "7.0.1", + "packageName": "get-stream", + "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" + } + }, + "npm:human-signals@5.0.0": { + "type": "npm", + "name": "npm:human-signals@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "human-signals", + "hash": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" + } + }, + "npm:human-signals@1.1.1": { + "type": "npm", + "name": "npm:human-signals@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:is-stream@1.1.0": { + "type": "npm", + "name": "npm:is-stream@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:normalize-url@8.0.0": { + "type": "npm", + "name": "npm:normalize-url@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "normalize-url", + "hash": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-run-path@5.1.0": { + "type": "npm", + "name": "npm:npm-run-path@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "npm-run-path", + "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:parse-json@8.1.0": { + "type": "npm", + "name": "npm:parse-json@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "parse-json", + "hash": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-key@2.0.1": { + "type": "npm", + "name": "npm:path-key@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "15700571927724585982" + } + }, + "npm:read-pkg@9.0.1": { + "type": "npm", + "name": "npm:read-pkg@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "read-pkg", + "hash": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" + } + }, + "npm:signal-exit@4.1.0": { + "type": "npm", + "name": "npm:signal-exit@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:strip-final-newline@3.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:@semantic-release/release-notes-generator": { + "type": "npm", + "name": "npm:@semantic-release/release-notes-generator", + "data": { + "version": "12.1.0", + "packageName": "@semantic-release/release-notes-generator", + "hash": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==" + } + }, + "npm:@sigstore/bundle": { + "type": "npm", + "name": "npm:@sigstore/bundle", + "data": { + "version": "2.1.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.2.1", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==" + } + }, + "npm:@sigstore/sign": { + "type": "npm", + "name": "npm:@sigstore/sign", + "data": { + "version": "2.2.0", + "packageName": "@sigstore/sign", + "hash": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "2.2.0", + "packageName": "@sigstore/tuf", + "hash": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.6.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" + } + }, + "npm:@sindresorhus/merge-streams": { + "type": "npm", + "name": "npm:@sindresorhus/merge-streams", + "data": { + "version": "1.0.0", + "packageName": "@sindresorhus/merge-streams", + "hash": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@socket.io/component-emitter": { + "type": "npm", + "name": "npm:@socket.io/component-emitter", + "data": { + "version": "3.1.0", + "packageName": "@socket.io/component-emitter", + "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" + } + }, + "npm:@swc-node/core": { + "type": "npm", + "name": "npm:@swc-node/core", + "data": { + "version": "1.10.6", + "packageName": "@swc-node/core", + "hash": "sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==" + } + }, + "npm:@swc-node/register": { + "type": "npm", + "name": "npm:@swc-node/register", + "data": { + "version": "1.6.8", + "packageName": "@swc-node/register", + "hash": "sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==" + } + }, + "npm:@swc-node/sourcemap-support": { + "type": "npm", + "name": "npm:@swc-node/sourcemap-support", + "data": { + "version": "0.3.0", + "packageName": "@swc-node/sourcemap-support", + "hash": "sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==" + } + }, + "npm:@swc/cli": { + "type": "npm", + "name": "npm:@swc/cli", + "data": { + "version": "0.1.63", + "packageName": "@swc/cli", + "hash": "sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==" + } + }, + "npm:@swc/core": { + "type": "npm", + "name": "npm:@swc/core", + "data": { + "version": "1.3.101", + "packageName": "@swc/core", + "hash": "sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==" + } + }, + "npm:@swc/core-darwin-arm64": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==" + } + }, + "npm:@swc/core-darwin-x64": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==" + } + }, + "npm:@swc/core-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==" + } + }, + "npm:@swc/core-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==" + } + }, + "npm:@swc/core-linux-arm64-musl": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==" + } + }, + "npm:@swc/core-linux-x64-gnu": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==" + } + }, + "npm:@swc/core-linux-x64-musl": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==" + } + }, + "npm:@swc/core-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==" + } + }, + "npm:@swc/core-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==" + } + }, + "npm:@swc/core-win32-x64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==" + } + }, + "npm:@swc/counter": { + "type": "npm", + "name": "npm:@swc/counter", + "data": { + "version": "0.1.2", + "packageName": "@swc/counter", + "hash": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==" + } + }, + "npm:@swc/helpers": { + "type": "npm", + "name": "npm:@swc/helpers", + "data": { + "version": "0.5.3", + "packageName": "@swc/helpers", + "hash": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==" + } + }, + "npm:@swc/types": { + "type": "npm", + "name": "npm:@swc/types", + "data": { + "version": "0.1.5", + "packageName": "@swc/types", + "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.6", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" + } + }, + "npm:@tokenizer/token": { + "type": "npm", + "name": "npm:@tokenizer/token", + "data": { + "version": "0.3.0", + "packageName": "@tokenizer/token", + "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node10", + "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.11", + "packageName": "@tsconfig/node12", + "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node14", + "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.4", + "packageName": "@tsconfig/node16", + "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "2.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "2.0.0", + "packageName": "@tufjs/models", + "hash": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==" + } + }, + "npm:brace-expansion@2.0.1": { + "type": "npm", + "name": "npm:brace-expansion@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__core", + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.8", + "packageName": "@types/babel__generator", + "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.4", + "packageName": "@types/babel__template", + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.4", + "packageName": "@types/babel__traverse", + "hash": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.5", + "packageName": "@types/body-parser", + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.13", + "packageName": "@types/bonjour", + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.3", + "packageName": "@types/cacheable-request", + "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.4", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:@types/cors": { + "type": "npm", + "name": "npm:@types/cors", + "data": { + "version": "2.8.17", + "packageName": "@types/cors", + "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "8.56.0", + "packageName": "@types/eslint", + "hash": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.7", + "packageName": "@types/eslint-scope", + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.5", + "packageName": "@types/estree", + "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.21", + "packageName": "@types/express", + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.41", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.9", + "packageName": "@types/graceful-fs", + "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.4", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.4", + "packageName": "@types/http-errors", + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.14", + "packageName": "@types/http-proxy", + "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" + } + }, + "npm:@types/inquirer": { + "type": "npm", + "name": "npm:@types/inquirer", + "data": { + "version": "9.0.7", + "packageName": "@types/inquirer", + "hash": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.6", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.3", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.4", + "packageName": "@types/istanbul-reports", + "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.11", + "packageName": "@types/jest", + "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.15", + "packageName": "@types/json-schema", + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.4", + "packageName": "@types/keyv", + "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.202", + "packageName": "@types/lodash", + "hash": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.5", + "packageName": "@types/mime", + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.16.9", + "packageName": "@types/node", + "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" + } + }, + "npm:@types/node@16.18.68": { + "type": "npm", + "name": "npm:@types/node@16.18.68", + "data": { + "version": "16.18.68", + "packageName": "@types/node", + "hash": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==" + } + }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.10", + "packageName": "@types/node-forge", + "hash": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.4", + "packageName": "@types/normalize-package-data", + "hash": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.2", + "packageName": "@types/parse-json", + "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.10", + "packageName": "@types/qs", + "hash": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.3", + "packageName": "@types/responselike", + "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.5.6", + "packageName": "@types/semver", + "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.4", + "packageName": "@types/send", + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.4", + "packageName": "@types/serve-index", + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.5", + "packageName": "@types/serve-static", + "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.1", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" + } + }, + "npm:@types/sizzle": { + "type": "npm", + "name": "npm:@types/sizzle", + "data": { + "version": "2.3.8", + "packageName": "@types/sizzle", + "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.36", + "packageName": "@types/sockjs", + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.3", + "packageName": "@types/stack-utils", + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + } + }, + "npm:@types/through": { + "type": "npm", + "name": "npm:@types/through", + "data": { + "version": "0.0.33", + "packageName": "@types/through", + "hash": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.5", + "packageName": "@types/tough-cookie", + "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.10", + "packageName": "@types/ws", + "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.32", + "packageName": "@types/yargs", + "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.3", + "packageName": "@types/yargs-parser", + "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.10.3", + "packageName": "@types/yauzl", + "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==" + } + }, + "npm:@typescript-eslint/type-utils@6.15.0": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils@6.15.0", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==" + } + }, + "npm:@typescript-eslint/utils@6.15.0": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@6.15.0", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==" + } + }, + "npm:@typescript-eslint/scope-manager@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==" + } + }, + "npm:@typescript-eslint/types@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/types@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==" + } + }, + "npm:@typescript-eslint/typescript-estree@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==" + } + }, + "npm:@typescript-eslint/visitor-keys@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==" + } + }, + "npm:@verdaccio/commons-api": { + "type": "npm", + "name": "npm:@verdaccio/commons-api", + "data": { + "version": "10.2.0", + "packageName": "@verdaccio/commons-api", + "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" + } + }, + "npm:@verdaccio/config": { + "type": "npm", + "name": "npm:@verdaccio/config", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/config", + "hash": "sha512-bMQEL+ZGzoH8WIHEoC1HZon35QIWjY3KdYGyKc4eUKr6bUyQSRksmPQ40NQVgcUY0vlfkJMB+TCvgVXaf8kfBw==" + } + }, + "npm:@verdaccio/core": { + "type": "npm", + "name": "npm:@verdaccio/core", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/core", + "hash": "sha512-wbgFq7d2m/ijmusD6wPVxm6aCxvSLNcP/XagrNKahEbdcgMcDv+6Dm6ZBaKcVgtIMv++aZkc3F3mV4Scj3snSQ==" + } + }, + "npm:@verdaccio/file-locking": { + "type": "npm", + "name": "npm:@verdaccio/file-locking", + "data": { + "version": "10.3.1", + "packageName": "@verdaccio/file-locking", + "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" + } + }, + "npm:@verdaccio/file-locking@12.0.0-next.1": { + "type": "npm", + "name": "npm:@verdaccio/file-locking@12.0.0-next.1", + "data": { + "version": "12.0.0-next.1", + "packageName": "@verdaccio/file-locking", + "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" + } + }, + "npm:@verdaccio/local-storage": { + "type": "npm", + "name": "npm:@verdaccio/local-storage", + "data": { + "version": "10.3.3", + "packageName": "@verdaccio/local-storage", + "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" + } + }, + "npm:async@3.2.4": { + "type": "npm", + "name": "npm:async@3.2.4", + "data": { + "version": "3.2.4", + "packageName": "async", + "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.5", + "packageName": "async", + "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + } + }, + "npm:async@2.6.4": { + "type": "npm", + "name": "npm:async@2.6.4", + "data": { + "version": "2.6.4", + "packageName": "async", + "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:@verdaccio/logger-7": { + "type": "npm", + "name": "npm:@verdaccio/logger-7", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/logger-7", + "hash": "sha512-kx+/vY9THFHXTxsQT/McbqG4psu6CmlkjnLvcrk0Gbyki3Uaquo79K/3rPokHWnS7Ur45gxYIukIAzVfcA0mKA==" + } + }, + "npm:@verdaccio/logger-commons": { + "type": "npm", + "name": "npm:@verdaccio/logger-commons", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/logger-commons", + "hash": "sha512-l7T3u8eW84UrQQHAOjqUw12t9q2IRleCnniQ9wV/KpBQNwuE3BPPy6t9/64QW9eXOzldJ8G3w7ttPCsK+cq8uw==" + } + }, + "npm:@verdaccio/logger-prettify": { + "type": "npm", + "name": "npm:@verdaccio/logger-prettify", + "data": { + "version": "7.0.0-next.1", + "packageName": "@verdaccio/logger-prettify", + "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" + } + }, + "npm:dayjs@1.11.7": { + "type": "npm", + "name": "npm:dayjs@1.11.7", + "data": { + "version": "1.11.7", + "packageName": "dayjs", + "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.10", + "packageName": "dayjs", + "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + } + }, + "npm:@verdaccio/middleware": { + "type": "npm", + "name": "npm:@verdaccio/middleware", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/middleware", + "hash": "sha512-EjRif42rbikn5WUB6+an9IX6zoAXiIG5jKOmzdOx6vIZ3iYg0HmgEFW5do2gVchFiox1+M2WMRTS55J0xG+dCA==" + } + }, + "npm:@verdaccio/search": { + "type": "npm", + "name": "npm:@verdaccio/search", + "data": { + "version": "7.0.0-next.2", + "packageName": "@verdaccio/search", + "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" + } + }, + "npm:@verdaccio/signature": { + "type": "npm", + "name": "npm:@verdaccio/signature", + "data": { + "version": "7.0.0-next.2", + "packageName": "@verdaccio/signature", + "hash": "sha512-rxoSmdKrSJZEoSsWKjgytpqf2Bltbs6sR5Hflu8xXfPZPmHpXkGgAdb8tuSlnmjzo6hXoKfje8b9BJoP2bDwbA==" + } + }, + "npm:@verdaccio/streams": { + "type": "npm", + "name": "npm:@verdaccio/streams", + "data": { + "version": "10.2.1", + "packageName": "@verdaccio/streams", + "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" + } + }, + "npm:@verdaccio/tarball": { + "type": "npm", + "name": "npm:@verdaccio/tarball", + "data": { + "version": "12.0.0-next.4", + "packageName": "@verdaccio/tarball", + "hash": "sha512-3GuyDaoshKOYdv+zTEKiyUO/0h3xGvr+RCJBkvMkPwIXfbkWDPyk00lxSXZDCqwFePZgcDaHOqS7krz2rMdsoQ==" + } + }, + "npm:@verdaccio/ui-theme": { + "type": "npm", + "name": "npm:@verdaccio/ui-theme", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/ui-theme", + "hash": "sha512-zvkAMyBmD0txGEpocdGQ9yRCvPYZEb0lH6lh0AAOcKwXg5SaY9yW/n2Rx3k6873xebA4bEMldWB3j+Uv8Jciqw==" + } + }, + "npm:@verdaccio/url": { + "type": "npm", + "name": "npm:@verdaccio/url", + "data": { + "version": "12.0.0-next.4", + "packageName": "@verdaccio/url", + "hash": "sha512-0SszVxX6VGgbrwPWU2WzvEbTUEZP4j6Krulb7Ju6hCVrV6A1/W/CGrztnRNcdE/avSZWZvvDpQ65NBRFE7pjtQ==" + } + }, + "npm:validator@13.9.0": { + "type": "npm", + "name": "npm:validator@13.9.0", + "data": { + "version": "13.9.0", + "packageName": "validator", + "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.11.0", + "packageName": "validator", + "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" + } + }, + "npm:@verdaccio/utils": { + "type": "npm", + "name": "npm:@verdaccio/utils", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/utils", + "hash": "sha512-hgGUkmxBl03TvXQSvgHeI9BU6JrCW/QQu7O3+9f1etvCz2EWQ81JvCv8qsY3bHCT/ggYapvr/8xcjtUtJ1/KgA==" + } + }, + "npm:@vitejs/plugin-basic-ssl": { + "type": "npm", + "name": "npm:@vitejs/plugin-basic-ssl", + "data": { + "version": "1.0.1", + "packageName": "@vitejs/plugin-basic-ssl", + "hash": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "2.0.0", + "packageName": "abbrev", + "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.11.2", + "packageName": "acorn", + "hash": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.3.1", + "packageName": "acorn-walk", + "hash": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.2.2", + "packageName": "address", + "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" + } + }, + "npm:adjust-sourcemap-loader": { + "type": "npm", + "name": "npm:adjust-sourcemap-loader", + "data": { + "version": "4.0.0", + "packageName": "adjust-sourcemap-loader", + "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "7.1.0", + "packageName": "agent-base", + "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" + } + }, + "npm:agent-base@6.0.2": { + "type": "npm", + "name": "npm:agent-base@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:ajv-formats": { + "type": "npm", + "name": "npm:ajv-formats", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv-keywords@3.5.2": { + "type": "npm", + "name": "npm:ajv-keywords@3.5.2", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.3", + "packageName": "ansi-colors", + "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:ansi-escapes@5.0.0": { + "type": "npm", + "name": "npm:ansi-escapes@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ansi-escapes", + "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-red": { + "type": "npm", + "name": "npm:ansi-red", + "data": { + "version": "0.1.1", + "packageName": "ansi-red", + "hash": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==" + } + }, + "npm:ansi-wrap": { + "type": "npm", + "name": "npm:ansi-wrap", + "data": { + "version": "0.1.0", + "packageName": "ansi-wrap", + "hash": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==" + } + }, + "npm:ansicolors": { + "type": "npm", + "name": "npm:ansicolors", + "data": { + "version": "0.3.2", + "packageName": "ansicolors", + "hash": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:picomatch@2.3.1": { + "type": "npm", + "name": "npm:picomatch@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "3.0.1", + "packageName": "picomatch", + "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" + } + }, + "npm:apache-md5": { + "type": "npm", + "name": "npm:apache-md5", + "data": { + "version": "1.1.8", + "packageName": "apache-md5", + "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" + } + }, + "npm:arch": { + "type": "npm", + "name": "npm:arch", + "data": { + "version": "2.2.0", + "packageName": "arch", + "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:argv-formatter": { + "type": "npm", + "name": "npm:argv-formatter", + "data": { + "version": "1.0.0", + "packageName": "argv-formatter", + "hash": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "5.3.0", + "packageName": "aria-query", + "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + } + }, + "npm:array-flatten@2.1.2": { + "type": "npm", + "name": "npm:array-flatten@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.2", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" + } + }, + "npm:asn1": { + "type": "npm", + "name": "npm:asn1", + "data": { + "version": "0.2.6", + "packageName": "asn1", + "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async-each-series": { + "type": "npm", + "name": "npm:async-each-series", + "data": { + "version": "0.1.1", + "packageName": "async-each-series", + "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:atomic-sleep": { + "type": "npm", + "name": "npm:atomic-sleep", + "data": { + "version": "1.0.0", + "packageName": "atomic-sleep", + "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" + } + }, + "npm:autolinker": { + "type": "npm", + "name": "npm:autolinker", + "data": { + "version": "0.28.1", + "packageName": "autolinker", + "hash": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.16", + "packageName": "autoprefixer", + "hash": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:aws-sign2": { + "type": "npm", + "name": "npm:aws-sign2", + "data": { + "version": "0.7.0", + "packageName": "aws-sign2", + "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" + } + }, + "npm:aws4": { + "type": "npm", + "name": "npm:aws4", + "data": { + "version": "1.12.0", + "packageName": "aws4", + "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "0.21.4", + "packageName": "axios", + "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" + } + }, + "npm:axios@1.6.2": { + "type": "npm", + "name": "npm:axios@1.6.2", + "data": { + "version": "1.6.2", + "packageName": "axios", + "hash": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "4.0.0", + "packageName": "axobject-query", + "hash": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.1.3", + "packageName": "babel-loader", + "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" + } + }, + "npm:find-cache-dir@4.0.0": { + "type": "npm", + "name": "npm:find-cache-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, + "npm:find-up@5.0.0": { + "type": "npm", + "name": "npm:find-up@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" + } + }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, + "npm:locate-path@6.0.0": { + "type": "npm", + "name": "npm:locate-path@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:p-locate@5.0.0": { + "type": "npm", + "name": "npm:p-locate@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:pkg-dir@7.0.0": { + "type": "npm", + "name": "npm:pkg-dir@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:istanbul-lib-instrument@5.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "6.0.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:babel-plugin-macros@3.1.0": { + "type": "npm", + "name": "npm:babel-plugin-macros@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.4.7", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.8.7", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.5.4", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.6.3", + "packageName": "babel-preset-jest", + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:base64id": { + "type": "npm", + "name": "npm:base64id", + "data": { + "version": "2.0.0", + "packageName": "base64id", + "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" + } + }, + "npm:basic-auth": { + "type": "npm", + "name": "npm:basic-auth", + "data": { + "version": "2.0.1", + "packageName": "basic-auth", + "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "12153499668482607410" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" + } + }, + "npm:bcryptjs": { + "type": "npm", + "name": "npm:bcryptjs", + "data": { + "version": "2.4.3", + "packageName": "bcryptjs", + "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.3", + "packageName": "before-after-hook", + "hash": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:bin-check": { + "type": "npm", + "name": "npm:bin-check", + "data": { + "version": "4.1.0", + "packageName": "bin-check", + "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" + } + }, + "npm:cross-spawn@5.1.0": { + "type": "npm", + "name": "npm:cross-spawn@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "cross-spawn", + "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:shebang-command@1.2.0": { + "type": "npm", + "name": "npm:shebang-command@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "341129833107810678" + } + }, + "npm:shebang-regex@1.0.0": { + "type": "npm", + "name": "npm:shebang-regex@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "3348982168836855660" + } + }, + "npm:bin-version": { + "type": "npm", + "name": "npm:bin-version", + "data": { + "version": "6.0.0", + "packageName": "bin-version", + "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" + } + }, + "npm:bin-version-check": { + "type": "npm", + "name": "npm:bin-version-check", + "data": { + "version": "5.1.0", + "packageName": "bin-version-check", + "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:readable-stream@3.6.2": { + "type": "npm", + "name": "npm:readable-stream@3.6.2", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readable-stream@4.4.2": { + "type": "npm", + "name": "npm:readable-stream@4.4.2", + "data": { + "version": "4.4.2", + "packageName": "readable-stream", + "hash": "41880603492280987" + } + }, + "npm:readable-stream@4.5.1": { + "type": "npm", + "name": "npm:readable-stream@4.5.1", + "data": { + "version": "4.5.1", + "packageName": "readable-stream", + "hash": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:blob-util": { + "type": "npm", + "name": "npm:blob-util", + "data": { + "version": "2.0.2", + "packageName": "blob-util", + "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.7.2", + "packageName": "bluebird", + "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.2", + "packageName": "body-parser", + "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" + } + }, + "npm:body-parser@1.20.1": { + "type": "npm", + "name": "npm:body-parser@1.20.1", + "data": { + "version": "1.20.1", + "packageName": "body-parser", + "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + }, + "npm:ms@2.1.3": { + "type": "npm", + "name": "npm:ms@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:on-finished@2.4.1": { + "type": "npm", + "name": "npm:on-finished@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" + } + }, + "npm:qs@6.11.0": { + "type": "npm", + "name": "npm:qs@6.11.0", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.10.4", + "packageName": "qs", + "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.1.1", + "packageName": "bonjour-service", + "hash": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:bottleneck": { + "type": "npm", + "name": "npm:bottleneck", + "data": { + "version": "2.19.5", + "packageName": "bottleneck", + "hash": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:browser-sync": { + "type": "npm", + "name": "npm:browser-sync", + "data": { + "version": "2.29.3", + "packageName": "browser-sync", + "hash": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==" + } + }, + "npm:browser-sync-client": { + "type": "npm", + "name": "npm:browser-sync-client", + "data": { + "version": "2.29.3", + "packageName": "browser-sync-client", + "hash": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==" + } + }, + "npm:browser-sync-ui": { + "type": "npm", + "name": "npm:browser-sync-ui", + "data": { + "version": "2.29.3", + "packageName": "browser-sync-ui", + "hash": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==" + } + }, + "npm:fs-extra@3.0.1": { + "type": "npm", + "name": "npm:fs-extra@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "fs-extra", + "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-extra@10.1.0": { + "type": "npm", + "name": "npm:fs-extra@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:jsonfile@3.0.1": { + "type": "npm", + "name": "npm:jsonfile@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "jsonfile", + "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonfile@5.0.0": { + "type": "npm", + "name": "npm:jsonfile@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "jsonfile", + "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.22.2", + "packageName": "browserslist", + "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" + } + }, + "npm:bs-logger": { + "type": "npm", + "name": "npm:bs-logger", + "data": { + "version": "0.2.6", + "packageName": "bs-logger", + "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" + } + }, + "npm:bs-recipes": { + "type": "npm", + "name": "npm:bs-recipes", + "data": { + "version": "1.3.4", + "packageName": "bs-recipes", + "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:btoa": { + "type": "npm", + "name": "npm:btoa", + "data": { + "version": "1.2.1", + "packageName": "btoa", + "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:buffer@6.0.3": { + "type": "npm", + "name": "npm:buffer@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "buffer", + "hash": "9693504204722543652" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + } + }, + "npm:buffer-equal-constant-time": { + "type": "npm", + "name": "npm:buffer-equal-constant-time", + "data": { + "version": "1.0.1", + "packageName": "buffer-equal-constant-time", + "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "18.0.1", + "packageName": "cacache", + "hash": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==" + } + }, + "npm:glob@10.3.10": { + "type": "npm", + "name": "npm:glob@10.3.10", + "data": { + "version": "10.3.10", + "packageName": "glob", + "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:glob@6.0.4": { + "type": "npm", + "name": "npm:glob@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "glob", + "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.4", + "packageName": "cacheable-request", + "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.4.0", + "packageName": "cachedir", + "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.5", + "packageName": "call-bind", + "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001570", + "packageName": "caniuse-lite", + "hash": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==" + } + }, + "npm:cardinal": { + "type": "npm", + "name": "npm:cardinal", + "data": { + "version": "2.1.1", + "packageName": "cardinal", + "hash": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:check-more-types": { + "type": "npm", + "name": "npm:check-more-types", + "data": { + "version": "2.24.0", + "packageName": "check-more-types", + "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.9.0", + "packageName": "ci-info", + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + } + }, + "npm:ci-info@4.0.0": { + "type": "npm", + "name": "npm:ci-info@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "ci-info", + "hash": "8652404921969079036" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-cursor@4.0.0": { + "type": "npm", + "name": "npm:cli-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-cursor", + "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.3", + "packageName": "cli-table3", + "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:cli-truncate@3.1.0": { + "type": "npm", + "name": "npm:cli-truncate@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:clipanion": { + "type": "npm", + "name": "npm:clipanion", + "data": { + "version": "3.2.1", + "packageName": "clipanion", + "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:cliui@7.0.4": { + "type": "npm", + "name": "npm:cliui@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:kind-of@6.0.3": { + "type": "npm", + "name": "npm:kind-of@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "3.2.2", + "packageName": "kind-of", + "hash": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.3", + "packageName": "clone-response", + "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:coffee-script": { + "type": "npm", + "name": "npm:coffee-script", + "data": { + "version": "1.12.7", + "packageName": "coffee-script", + "hash": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.2", + "packageName": "collect-v8-coverage", + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@6.2.1": { + "type": "npm", + "name": "npm:commander@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.2", + "packageName": "common-tags", + "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "1.6.2", + "packageName": "concat-stream", + "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + } + }, + "npm:concat-with-sourcemaps": { + "type": "npm", + "name": "npm:concat-with-sourcemaps", + "data": { + "version": "1.1.0", + "packageName": "concat-with-sourcemaps", + "hash": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==" + } + }, + "npm:config-chain": { + "type": "npm", + "name": "npm:config-chain", + "data": { + "version": "1.1.13", + "packageName": "config-chain", + "hash": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==" + } + }, + "npm:ini@1.3.8": { + "type": "npm", + "name": "npm:ini@1.3.8", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "4.1.1", + "packageName": "ini", + "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" + } + }, + "npm:confusing-browser-globals": { + "type": "npm", + "name": "npm:confusing-browser-globals", + "data": { + "version": "1.0.11", + "packageName": "confusing-browser-globals", + "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + } + }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.6.6", + "packageName": "connect", + "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "1.6.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + } + }, + "npm:connect-history-api-fallback@2.0.0": { + "type": "npm", + "name": "npm:connect-history-api-fallback@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:connect-pause": { + "type": "npm", + "name": "npm:connect-pause", + "data": { + "version": "0.1.1", + "packageName": "connect-pause", + "hash": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "7.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==" + } + }, + "npm:conventional-changelog-conventionalcommits": { + "type": "npm", + "name": "npm:conventional-changelog-conventionalcommits", + "data": { + "version": "7.0.2", + "packageName": "conventional-changelog-conventionalcommits", + "hash": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "7.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "5.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:cookie@0.4.2": { + "type": "npm", + "name": "npm:cookie@0.4.2", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + } + }, + "npm:cookies": { + "type": "npm", + "name": "npm:cookies", + "data": { + "version": "0.8.0", + "packageName": "cookies", + "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" + } + }, + "npm:copy-anything": { + "type": "npm", + "name": "npm:copy-anything", + "data": { + "version": "2.0.6", + "packageName": "copy-anything", + "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.30.2", + "packageName": "core-js", + "hash": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.34.0", + "packageName": "core-js-compat", + "hash": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:core-util-is@1.0.2": { + "type": "npm", + "name": "npm:core-util-is@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "core-util-is", + "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + } + }, + "npm:cors": { + "type": "npm", + "name": "npm:cors", + "data": { + "version": "2.8.5", + "packageName": "cors", + "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" + } + }, + "npm:corser": { + "type": "npm", + "name": "npm:corser", + "data": { + "version": "2.0.1", + "packageName": "corser", + "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:critters": { + "type": "npm", + "name": "npm:critters", + "data": { + "version": "0.0.20", + "packageName": "critters", + "hash": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "4.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "7.1.1", + "packageName": "css-declaration-sorter", + "hash": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.8.1", + "packageName": "css-loader", + "hash": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "5.0.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:css-tree@2.2.1": { + "type": "npm", + "name": "npm:css-tree@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "css-tree", + "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "6.0.2", + "packageName": "cssnano", + "hash": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "6.0.2", + "packageName": "cssnano-preset-default", + "hash": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "4.0.1", + "packageName": "cssnano-utils", + "hash": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "5.0.5", + "packageName": "csso", + "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" + } + }, + "npm:mdn-data@2.0.28": { + "type": "npm", + "name": "npm:mdn-data@2.0.28", + "data": { + "version": "2.0.28", + "packageName": "mdn-data", + "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:cypress": { + "type": "npm", + "name": "npm:cypress", + "data": { + "version": "12.17.4", + "packageName": "cypress", + "hash": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==" + } + }, + "npm:dashdash": { + "type": "npm", + "name": "npm:dashdash", + "data": { + "version": "1.14.1", + "packageName": "dashdash", + "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:mimic-response@3.1.0": { + "type": "npm", + "name": "npm:mimic-response@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.1", + "packageName": "define-data-property", + "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.1", + "packageName": "define-properties", + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:dequal": { + "type": "npm", + "name": "npm:dequal", + "data": { + "version": "2.0.3", + "packageName": "dequal", + "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:destroy@1.0.4": { + "type": "npm", + "name": "npm:destroy@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "destroy", + "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:dev-ip": { + "type": "npm", + "name": "npm:dev-ip", + "data": { + "version": "1.0.1", + "packageName": "dev-ip", + "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" + } + }, + "npm:diacritics-map": { + "type": "npm", + "name": "npm:diacritics-map", + "data": { + "version": "0.1.0", + "packageName": "diacritics-map", + "hash": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:diff@5.1.0": { + "type": "npm", + "name": "npm:diff@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "diff", + "hash": "14595041656651737167" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.1", + "packageName": "dns-packet", + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "3.1.0", + "packageName": "domutils", + "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "16.3.1", + "packageName": "dotenv", + "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:duplexify": { + "type": "npm", + "name": "npm:duplexify", + "data": { + "version": "4.1.2", + "packageName": "duplexify", + "hash": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:easy-extender": { + "type": "npm", + "name": "npm:easy-extender", + "data": { + "version": "2.3.4", + "packageName": "easy-extender", + "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" + } + }, + "npm:eazy-logger": { + "type": "npm", + "name": "npm:eazy-logger", + "data": { + "version": "4.0.1", + "packageName": "eazy-logger", + "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" + } + }, + "npm:ecc-jsbn": { + "type": "npm", + "name": "npm:ecc-jsbn", + "data": { + "version": "0.1.2", + "packageName": "ecc-jsbn", + "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" + } + }, + "npm:ecdsa-sig-formatter": { + "type": "npm", + "name": "npm:ecdsa-sig-formatter", + "data": { + "version": "1.0.11", + "packageName": "ecdsa-sig-formatter", + "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.9", + "packageName": "ejs", + "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.615", + "packageName": "electron-to-chromium", + "hash": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emojilib": { + "type": "npm", + "name": "npm:emojilib", + "data": { + "version": "2.4.0", + "packageName": "emojilib", + "hash": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:engine.io": { + "type": "npm", + "name": "npm:engine.io", + "data": { + "version": "6.5.4", + "packageName": "engine.io", + "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" + } + }, + "npm:engine.io-client": { + "type": "npm", + "name": "npm:engine.io-client", + "data": { + "version": "6.5.3", + "packageName": "engine.io-client", + "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" + } + }, + "npm:ws@8.11.0": { + "type": "npm", + "name": "npm:ws@8.11.0", + "data": { + "version": "8.11.0", + "packageName": "ws", + "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.15.1", + "packageName": "ws", + "hash": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==" + } + }, + "npm:engine.io-parser": { + "type": "npm", + "name": "npm:engine.io-parser", + "data": { + "version": "5.2.1", + "packageName": "engine.io-parser", + "hash": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:env-ci": { + "type": "npm", + "name": "npm:env-ci", + "data": { + "version": "10.0.0", + "packageName": "env-ci", + "hash": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.11.0", + "packageName": "envinfo", + "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:errorhandler": { + "type": "npm", + "name": "npm:errorhandler", + "data": { + "version": "1.5.1", + "packageName": "errorhandler", + "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.22.3", + "packageName": "es-abstract", + "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.4.1", + "packageName": "es-module-lexer", + "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.2", + "packageName": "es-set-tostringtag", + "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.19.5", + "packageName": "esbuild", + "hash": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==" + } + }, + "npm:esbuild@0.18.20": { + "type": "npm", + "name": "npm:esbuild@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "esbuild", + "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" + } + }, + "npm:esbuild-wasm": { + "type": "npm", + "name": "npm:esbuild-wasm", + "data": { + "version": "0.19.5", + "packageName": "esbuild-wasm", + "hash": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "8.48.0", + "packageName": "eslint", + "hash": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "9.1.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==" + } + }, + "npm:eslint-plugin-cypress": { + "type": "npm", + "name": "npm:eslint-plugin-cypress", + "data": { + "version": "2.15.1", + "packageName": "eslint-plugin-cypress", + "hash": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" + } + }, + "npm:eslint-scope@5.1.1": { + "type": "npm", + "name": "npm:eslint-scope@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.3", + "packageName": "eslint-visitor-keys", + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:eventemitter-asyncresource": { + "type": "npm", + "name": "npm:eventemitter-asyncresource", + "data": { + "version": "1.0.0", + "packageName": "eventemitter-asyncresource", + "hash": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==" + } + }, + "npm:eventemitter2": { + "type": "npm", + "name": "npm:eventemitter2", + "data": { + "version": "6.4.7", + "packageName": "eventemitter2", + "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:eventemitter3@5.0.1": { + "type": "npm", + "name": "npm:eventemitter3@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "eventemitter3", + "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:executable": { + "type": "npm", + "name": "npm:executable", + "data": { + "version": "4.1.1", + "packageName": "executable", + "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expand-range": { + "type": "npm", + "name": "npm:expand-range", + "data": { + "version": "1.8.2", + "packageName": "expand-range", + "hash": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==" + } + }, + "npm:fill-range@2.2.4": { + "type": "npm", + "name": "npm:fill-range@2.2.4", + "data": { + "version": "2.2.4", + "packageName": "fill-range", + "hash": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:isobject@2.1.0": { + "type": "npm", + "name": "npm:isobject@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "isobject", + "hash": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.7.0", + "packageName": "expect", + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" + } + }, + "npm:exponential-backoff": { + "type": "npm", + "name": "npm:exponential-backoff", + "data": { + "version": "3.1.1", + "packageName": "exponential-backoff", + "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.2", + "packageName": "express", + "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" + } + }, + "npm:express-rate-limit": { + "type": "npm", + "name": "npm:express-rate-limit", + "data": { + "version": "5.5.1", + "packageName": "express-rate-limit", + "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" + } + }, + "npm:express-urlrewrite": { + "type": "npm", + "name": "npm:express-urlrewrite", + "data": { + "version": "1.4.0", + "packageName": "express-urlrewrite", + "hash": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==" + } + }, + "npm:isarray@0.0.1": { + "type": "npm", + "name": "npm:isarray@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, + "npm:isarray@2.0.5": { + "type": "npm", + "name": "npm:isarray@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:path-to-regexp@1.8.0": { + "type": "npm", + "name": "npm:path-to-regexp@1.8.0", + "data": { + "version": "1.8.0", + "packageName": "path-to-regexp", + "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + } + }, + "npm:finalhandler@1.2.0": { + "type": "npm", + "name": "npm:finalhandler@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.0", + "packageName": "finalhandler", + "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" + } + }, + "npm:raw-body@2.5.1": { + "type": "npm", + "name": "npm:raw-body@2.5.1", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.2", + "packageName": "raw-body", + "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" + } + }, + "npm:send@0.18.0": { + "type": "npm", + "name": "npm:send@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.16.2", + "packageName": "send", + "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" + } + }, + "npm:serve-static@1.15.0": { + "type": "npm", + "name": "npm:serve-static@1.15.0", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.13.2", + "packageName": "serve-static", + "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" + } + }, + "npm:statuses@2.0.1": { + "type": "npm", + "name": "npm:statuses@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:statuses@1.4.0": { + "type": "npm", + "name": "npm:statuses@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "statuses", + "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "1.3.1", + "packageName": "statuses", + "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" + } + }, + "npm:ext-list": { + "type": "npm", + "name": "npm:ext-list", + "data": { + "version": "2.2.2", + "packageName": "ext-list", + "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" + } + }, + "npm:ext-name": { + "type": "npm", + "name": "npm:ext-name", + "data": { + "version": "5.0.0", + "packageName": "ext-name", + "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:extsprintf": { + "type": "npm", + "name": "npm:extsprintf", + "data": { + "version": "1.3.0", + "packageName": "extsprintf", + "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-redact": { + "type": "npm", + "name": "npm:fast-redact", + "data": { + "version": "3.3.0", + "packageName": "fast-redact", + "hash": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==" + } + }, + "npm:fast-safe-stringify": { + "type": "npm", + "name": "npm:fast-safe-stringify", + "data": { + "version": "2.1.1", + "packageName": "fast-safe-stringify", + "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.16.0", + "packageName": "fastq", + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:file-type": { + "type": "npm", + "name": "npm:file-type", + "data": { + "version": "17.1.6", + "packageName": "file-type", + "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.4", + "packageName": "filelist", + "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" + } + }, + "npm:filename-reserved-regex": { + "type": "npm", + "name": "npm:filename-reserved-regex", + "data": { + "version": "3.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" + } + }, + "npm:filenamify": { + "type": "npm", + "name": "npm:filenamify", + "data": { + "version": "5.1.1", + "packageName": "filenamify", + "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" + } + }, + "npm:find-up-simple": { + "type": "npm", + "name": "npm:find-up-simple", + "data": { + "version": "1.0.0", + "packageName": "find-up-simple", + "hash": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==" + } + }, + "npm:find-versions": { + "type": "npm", + "name": "npm:find-versions", + "data": { + "version": "5.1.0", + "packageName": "find-versions", + "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.2.0", + "packageName": "flat-cache", + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.9", + "packageName": "flatted", + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.3", + "packageName": "follow-redirects", + "hash": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:for-in": { + "type": "npm", + "name": "npm:for-in", + "data": { + "version": "1.0.2", + "packageName": "for-in", + "hash": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "7.2.13", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.2.0", + "packageName": "schema-utils", + "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:form-data@4.0.0": { + "type": "npm", + "name": "npm:form-data@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.3.7", + "packageName": "fraction.js", + "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + } + }, + "npm:from2": { + "type": "npm", + "name": "npm:from2", + "data": { + "version": "2.3.0", + "packageName": "from2", + "hash": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" + } + }, + "npm:fs-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "11506148351665826113" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.5", + "packageName": "fs-monkey", + "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.6", + "packageName": "function.prototype.name", + "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.2", + "packageName": "get-intrinsic", + "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:getos": { + "type": "npm", + "name": "npm:getos", + "data": { + "version": "3.2.1", + "packageName": "getos", + "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" + } + }, + "npm:git-log-parser": { + "type": "npm", + "name": "npm:git-log-parser", + "data": { + "version": "1.2.0", + "packageName": "git-log-parser", + "hash": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==" + } + }, + "npm:split2@1.0.0": { + "type": "npm", + "name": "npm:split2@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "split2", + "hash": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "4.2.0", + "packageName": "split2", + "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "3.0.1", + "packageName": "global-dirs", + "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.6", + "packageName": "got", + "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:gray-matter": { + "type": "npm", + "name": "npm:gray-matter", + "data": { + "version": "2.1.1", + "packageName": "gray-matter", + "hash": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==" + } + }, + "npm:gulp-header": { + "type": "npm", + "name": "npm:gulp-header", + "data": { + "version": "1.8.12", + "packageName": "gulp-header", + "hash": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.8", + "packageName": "handlebars", + "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.1", + "packageName": "has-property-descriptors", + "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + } + }, + "npm:hdr-histogram-js": { + "type": "npm", + "name": "npm:hdr-histogram-js", + "data": { + "version": "2.0.3", + "packageName": "hdr-histogram-js", + "hash": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==" + } + }, + "npm:hdr-histogram-percentiles-obj": { + "type": "npm", + "name": "npm:hdr-histogram-percentiles-obj", + "data": { + "version": "3.0.0", + "packageName": "hdr-histogram-percentiles-obj", + "hash": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hook-std": { + "type": "npm", + "name": "npm:hook-std", + "data": { + "version": "3.0.0", + "packageName": "hook-std", + "hash": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "7.0.1", + "packageName": "hosted-git-info", + "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.4.0", + "packageName": "html-entities", + "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "8.0.2", + "packageName": "htmlparser2", + "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.8", + "packageName": "http-parser-js", + "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:http-server": { + "type": "npm", + "name": "npm:http-server", + "data": { + "version": "14.1.1", + "packageName": "http-server", + "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.3.6", + "packageName": "http-signature", + "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" + } + }, + "npm:http-status-codes": { + "type": "npm", + "name": "npm:http-status-codes", + "data": { + "version": "2.2.0", + "packageName": "http-status-codes", + "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.3", + "packageName": "http2-wrapper", + "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "7.0.2", + "packageName": "https-proxy-agent", + "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" + } + }, + "npm:https-proxy-agent@5.0.1": { + "type": "npm", + "name": "npm:https-proxy-agent@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.0", + "packageName": "ignore", + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "6.0.4", + "packageName": "ignore-walk", + "hash": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "0.5.5", + "packageName": "image-size", + "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "3.8.2", + "packageName": "immutable", + "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" + } + }, + "npm:immutable@4.3.4": { + "type": "npm", + "name": "npm:immutable@4.3.4", + "data": { + "version": "4.3.4", + "packageName": "immutable", + "hash": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:import-from-esm": { + "type": "npm", + "name": "npm:import-from-esm", + "data": { + "version": "1.3.3", + "packageName": "import-from-esm", + "hash": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:import-meta-resolve": { + "type": "npm", + "name": "npm:import-meta-resolve", + "data": { + "version": "4.0.0", + "packageName": "import-meta-resolve", + "hash": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:index-to-position": { + "type": "npm", + "name": "npm:index-to-position", + "data": { + "version": "0.1.2", + "packageName": "index-to-position", + "hash": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, + "npm:inquirer-autocomplete-prompt": { + "type": "npm", + "name": "npm:inquirer-autocomplete-prompt", + "data": { + "version": "2.0.1", + "packageName": "inquirer-autocomplete-prompt", + "hash": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.6", + "packageName": "internal-slot", + "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" + } + }, + "npm:into-stream": { + "type": "npm", + "name": "npm:into-stream", + "data": { + "version": "7.0.0", + "packageName": "into-stream", + "hash": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "2.0.0", + "packageName": "ip", + "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js@2.1.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "ipaddr.js", + "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.13.1", + "packageName": "is-core-module", + "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + } + }, + "npm:is-extendable@1.0.1": { + "type": "npm", + "name": "npm:is-extendable@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-extendable", + "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-fullwidth-code-point@4.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "2.1.0", + "packageName": "is-number", + "hash": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==" + } + }, + "npm:is-number@4.0.0": { + "type": "npm", + "name": "npm:is-number@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-number", + "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + } + }, + "npm:is-number@7.0.0": { + "type": "npm", + "name": "npm:is-number@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-number-like": { + "type": "npm", + "name": "npm:is-number-like", + "data": { + "version": "1.0.8", + "packageName": "is-number-like", + "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "2.2.2", + "packageName": "is-promise", + "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "2.0.0", + "packageName": "is-text-path", + "hash": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.12", + "packageName": "is-typed-array", + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "3.14.1", + "packageName": "is-what", + "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:is-wsl@1.1.0": { + "type": "npm", + "name": "npm:is-wsl@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + } + }, + "npm:issue-parser": { + "type": "npm", + "name": "npm:issue-parser", + "data": { + "version": "6.0.0", + "packageName": "issue-parser", + "hash": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.2", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.1", + "packageName": "istanbul-lib-report", + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.6", + "packageName": "istanbul-reports", + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.3.6", + "packageName": "jackspeak", + "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.7", + "packageName": "jake", + "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" + } + }, + "npm:java-properties": { + "type": "npm", + "name": "npm:java-properties", + "data": { + "version": "1.0.2", + "packageName": "java-properties", + "hash": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.7.0", + "packageName": "jest", + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.7.0", + "packageName": "jest-changed-files", + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.7.0", + "packageName": "jest-circus", + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:dedent@1.5.1": { + "type": "npm", + "name": "npm:dedent@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.7.0", + "packageName": "jest-cli", + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.7.0", + "packageName": "jest-diff", + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.7.0", + "packageName": "jest-docblock", + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.7.0", + "packageName": "jest-each", + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.6.3", + "packageName": "jest-get-type", + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.7.0", + "packageName": "jest-haste-map", + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.7.0", + "packageName": "jest-leak-detector", + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.7.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.7.0", + "packageName": "jest-message-util", + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.7.0", + "packageName": "jest-mock", + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:jest-preset-angular": { + "type": "npm", + "name": "npm:jest-preset-angular", + "data": { + "version": "13.1.4", + "packageName": "jest-preset-angular", + "hash": "sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.6.3", + "packageName": "jest-regex-util", + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:resolve.exports@2.0.2": { + "type": "npm", + "name": "npm:resolve.exports@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.7.0", + "packageName": "jest-runner", + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.7.0", + "packageName": "jest-runtime", + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.7.0", + "packageName": "jest-util", + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.7.0", + "packageName": "jest-validate", + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.7.0", + "packageName": "jest-watcher", + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "1.21.0", + "packageName": "jiti", + "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors@3.0.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "json-parse-even-better-errors", + "hash": "12902821898341430299" + } + }, + "npm:json-parse-helpfulerror": { + "type": "npm", + "name": "npm:json-parse-helpfulerror", + "data": { + "version": "1.0.3", + "packageName": "json-parse-helpfulerror", + "hash": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:json-server": { + "type": "npm", + "name": "npm:json-server", + "data": { + "version": "0.17.4", + "packageName": "json-server", + "hash": "sha512-bGBb0WtFuAKbgI7JV3A864irWnMZSvBYRJbohaOuatHwKSRFUfqtQlrYMrB6WbalXy/cJabyjlb7JkHli6dYjQ==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonc-eslint-parser": { + "type": "npm", + "name": "npm:jsonc-eslint-parser", + "data": { + "version": "2.4.0", + "packageName": "jsonc-eslint-parser", + "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:jsonwebtoken": { + "type": "npm", + "name": "npm:jsonwebtoken", + "data": { + "version": "9.0.2", + "packageName": "jsonwebtoken", + "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "2.0.2", + "packageName": "jsprim", + "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" + } + }, + "npm:jwa": { + "type": "npm", + "name": "npm:jwa", + "data": { + "version": "1.4.1", + "packageName": "jwa", + "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" + } + }, + "npm:jws": { + "type": "npm", + "name": "npm:jws", + "data": { + "version": "3.2.2", + "packageName": "jws", + "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" + } + }, + "npm:karma-source-map-support": { + "type": "npm", + "name": "npm:karma-source-map-support", + "data": { + "version": "1.4.0", + "packageName": "karma-source-map-support", + "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" + } + }, + "npm:keygrip": { + "type": "npm", + "name": "npm:keygrip", + "data": { + "version": "1.1.0", + "packageName": "keygrip", + "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:kleur@4.1.5": { + "type": "npm", + "name": "npm:kleur@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.6.1", + "packageName": "launch-editor", + "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" + } + }, + "npm:lazy-ass": { + "type": "npm", + "name": "npm:lazy-ass", + "data": { + "version": "1.6.0", + "packageName": "lazy-ass", + "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" + } + }, + "npm:lazy-cache": { + "type": "npm", + "name": "npm:lazy-cache", + "data": { + "version": "2.0.2", + "packageName": "lazy-cache", + "hash": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==" + } + }, + "npm:less-loader": { + "type": "npm", + "name": "npm:less-loader", + "data": { + "version": "11.1.0", + "packageName": "less-loader", + "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "4.0.2", + "packageName": "license-webpack-plugin", + "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "3.0.0", + "packageName": "lilconfig", + "hash": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==" + } + }, + "npm:lilconfig@2.1.0": { + "type": "npm", + "name": "npm:lilconfig@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:limiter": { + "type": "npm", + "name": "npm:limiter", + "data": { + "version": "1.1.5", + "packageName": "limiter", + "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.4", + "packageName": "lines-and-columns", + "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "13.3.0", + "packageName": "lint-staged", + "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" + } + }, + "npm:listr2@6.6.1": { + "type": "npm", + "name": "npm:listr2@6.6.1", + "data": { + "version": "6.6.1", + "packageName": "listr2", + "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:log-update@5.0.1": { + "type": "npm", + "name": "npm:log-update@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "log-update", + "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:restore-cursor@4.0.0": { + "type": "npm", + "name": "npm:restore-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "restore-cursor", + "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:slice-ansi@5.0.0": { + "type": "npm", + "name": "npm:slice-ansi@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:slice-ansi@4.0.0": { + "type": "npm", + "name": "npm:slice-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:list-item": { + "type": "npm", + "name": "npm:list-item", + "data": { + "version": "1.1.1", + "packageName": "list-item", + "hash": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" + } + }, + "npm:strip-bom@3.0.0": { + "type": "npm", + "name": "npm:strip-bom@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:localtunnel": { + "type": "npm", + "name": "npm:localtunnel", + "data": { + "version": "2.0.2", + "packageName": "localtunnel", + "hash": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==" + } + }, + "npm:yargs@17.1.1": { + "type": "npm", + "name": "npm:yargs@17.1.1", + "data": { + "version": "17.1.1", + "packageName": "yargs", + "hash": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==" + } + }, + "npm:yargs@16.2.0": { + "type": "npm", + "name": "npm:yargs@16.2.0", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yargs-parser@20.2.9": { + "type": "npm", + "name": "npm:yargs-parser@20.2.9", + "data": { + "version": "20.2.9", + "packageName": "yargs-parser", + "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:lockfile": { + "type": "npm", + "name": "npm:lockfile", + "data": { + "version": "1.0.4", + "packageName": "lockfile", + "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:lodash-id": { + "type": "npm", + "name": "npm:lodash-id", + "data": { + "version": "0.14.1", + "packageName": "lodash-id", + "hash": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==" + } + }, + "npm:lodash._reinterpolate": { + "type": "npm", + "name": "npm:lodash._reinterpolate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reinterpolate", + "hash": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + } + }, + "npm:lodash.capitalize": { + "type": "npm", + "name": "npm:lodash.capitalize", + "data": { + "version": "4.2.1", + "packageName": "lodash.capitalize", + "hash": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + } + }, + "npm:lodash.escaperegexp": { + "type": "npm", + "name": "npm:lodash.escaperegexp", + "data": { + "version": "4.1.2", + "packageName": "lodash.escaperegexp", + "hash": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" + } + }, + "npm:lodash.includes": { + "type": "npm", + "name": "npm:lodash.includes", + "data": { + "version": "4.3.0", + "packageName": "lodash.includes", + "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" + } + }, + "npm:lodash.isboolean": { + "type": "npm", + "name": "npm:lodash.isboolean", + "data": { + "version": "3.0.3", + "packageName": "lodash.isboolean", + "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + } + }, + "npm:lodash.isfinite": { + "type": "npm", + "name": "npm:lodash.isfinite", + "data": { + "version": "3.3.2", + "packageName": "lodash.isfinite", + "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" + } + }, + "npm:lodash.isinteger": { + "type": "npm", + "name": "npm:lodash.isinteger", + "data": { + "version": "4.0.4", + "packageName": "lodash.isinteger", + "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" + } + }, + "npm:lodash.isnumber": { + "type": "npm", + "name": "npm:lodash.isnumber", + "data": { + "version": "3.0.3", + "packageName": "lodash.isnumber", + "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + } + }, + "npm:lodash.isplainobject": { + "type": "npm", + "name": "npm:lodash.isplainobject", + "data": { + "version": "4.0.6", + "packageName": "lodash.isplainobject", + "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + } + }, + "npm:lodash.isstring": { + "type": "npm", + "name": "npm:lodash.isstring", + "data": { + "version": "4.0.1", + "packageName": "lodash.isstring", + "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.once": { + "type": "npm", + "name": "npm:lodash.once", + "data": { + "version": "4.1.1", + "packageName": "lodash.once", + "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" + } + }, + "npm:lodash.template": { + "type": "npm", + "name": "npm:lodash.template", + "data": { + "version": "4.5.0", + "packageName": "lodash.template", + "hash": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" + } + }, + "npm:lodash.templatesettings": { + "type": "npm", + "name": "npm:lodash.templatesettings", + "data": { + "version": "4.2.0", + "packageName": "lodash.templatesettings", + "hash": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash.uniqby": { + "type": "npm", + "name": "npm:lodash.uniqby", + "data": { + "version": "4.7.0", + "packageName": "lodash.uniqby", + "hash": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:lowdb": { + "type": "npm", + "name": "npm:lowdb", + "data": { + "version": "1.0.0", + "packageName": "lowdb", + "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "13.0.0", + "packageName": "make-fetch-happen", + "hash": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:markdown-link": { + "type": "npm", + "name": "npm:markdown-link", + "data": { + "version": "0.1.1", + "packageName": "markdown-link", + "hash": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==" + } + }, + "npm:markdown-toc": { + "type": "npm", + "name": "npm:markdown-toc", + "data": { + "version": "1.2.0", + "packageName": "markdown-toc", + "hash": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "9.1.6", + "packageName": "marked", + "hash": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==" + } + }, + "npm:marked-terminal": { + "type": "npm", + "name": "npm:marked-terminal", + "data": { + "version": "6.2.0", + "packageName": "marked-terminal", + "hash": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==" + } + }, + "npm:math-random": { + "type": "npm", + "name": "npm:math-random", + "data": { + "version": "1.0.4", + "packageName": "math-random", + "hash": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.5.3", + "packageName": "memfs", + "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" + } + }, + "npm:memorystream": { + "type": "npm", + "name": "npm:memorystream", + "data": { + "version": "0.3.1", + "packageName": "memorystream", + "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "12.1.1", + "packageName": "meow", + "hash": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:method-override": { + "type": "npm", + "name": "npm:method-override", + "data": { + "version": "3.0.0", + "packageName": "method-override", + "hash": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "7.0.4", + "packageName": "minipass", + "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" + } + }, + "npm:minipass@3.3.6": { + "type": "npm", + "name": "npm:minipass@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "967233070033727926" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "2.0.1", + "packageName": "minipass-collect", + "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.4", + "packageName": "minipass-fetch", + "hash": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "1.2.0", + "packageName": "mitt", + "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" + } + }, + "npm:mixin-deep": { + "type": "npm", + "name": "npm:mixin-deep", + "data": { + "version": "1.3.2", + "packageName": "mixin-deep", + "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + } + }, + "npm:morgan": { + "type": "npm", + "name": "npm:morgan", + "data": { + "version": "1.10.0", + "packageName": "morgan", + "hash": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "1.0.1", + "packageName": "mrmime", + "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, + "npm:mv": { + "type": "npm", + "name": "npm:mv", + "data": { + "version": "2.1.1", + "packageName": "mv", + "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" + } + }, + "npm:rimraf@2.4.5": { + "type": "npm", + "name": "npm:rimraf@2.4.5", + "data": { + "version": "2.4.5", + "packageName": "rimraf", + "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@2.6.3": { + "type": "npm", + "name": "npm:rimraf@2.6.3", + "data": { + "version": "2.6.3", + "packageName": "rimraf", + "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" + } + }, + "npm:nanoclone": { + "type": "npm", + "name": "npm:nanoclone", + "data": { + "version": "0.2.1", + "packageName": "nanoclone", + "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.7", + "packageName": "nanoid", + "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" + } + }, + "npm:needle": { + "type": "npm", + "name": "npm:needle", + "data": { + "version": "3.3.1", + "packageName": "needle", + "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:nerf-dart": { + "type": "npm", + "name": "npm:nerf-dart", + "data": { + "version": "1.0.0", + "packageName": "nerf-dart", + "hash": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==" + } + }, + "npm:nice-napi": { + "type": "npm", + "name": "npm:nice-napi", + "data": { + "version": "1.0.2", + "packageName": "nice-napi", + "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "2.1.3", + "packageName": "node-emoji", + "hash": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "10.0.1", + "packageName": "node-gyp", + "hash": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.7.1", + "packageName": "node-gyp-build", + "hash": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.14", + "packageName": "node-releases", + "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "7.2.0", + "packageName": "nopt", + "hash": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "6.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" + } + }, + "npm:normalize-package-data@2.5.0": { + "type": "npm", + "name": "npm:normalize-package-data@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + } + }, + "npm:npm": { + "type": "npm", + "name": "npm:npm", + "data": { + "version": "10.2.5", + "packageName": "npm", + "hash": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "6.3.0", + "packageName": "npm-install-checks", + "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "11.0.1", + "packageName": "npm-package-arg", + "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "8.0.1", + "packageName": "npm-packlist", + "hash": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "9.0.0", + "packageName": "npm-pick-manifest", + "hash": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "16.1.0", + "packageName": "npm-registry-fetch", + "hash": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==" + } + }, + "npm:npm-run-all": { + "type": "npm", + "name": "npm:npm-run-all", + "data": { + "version": "4.1.5", + "packageName": "npm-run-all", + "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" + } + }, + "npm:pidtree@0.3.1": { + "type": "npm", + "name": "npm:pidtree@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "pidtree", + "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:@isaacs/string-locale-compare@1.1.0": { + "type": "npm", + "name": "npm:@isaacs/string-locale-compare@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "@isaacs/string-locale-compare", + "hash": "13187644880041451271" + } + }, + "npm:@npmcli/arborist@7.2.2": { + "type": "npm", + "name": "npm:@npmcli/arborist@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "@npmcli/arborist", + "hash": "7182259164219824660" + } + }, + "npm:@npmcli/config@8.0.3": { + "type": "npm", + "name": "npm:@npmcli/config@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "@npmcli/config", + "hash": "8820709041531503664" + } + }, + "npm:@npmcli/disparity-colors@3.0.0": { + "type": "npm", + "name": "npm:@npmcli/disparity-colors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/disparity-colors", + "hash": "14187036782924450815" + } + }, + "npm:@npmcli/map-workspaces@3.0.4": { + "type": "npm", + "name": "npm:@npmcli/map-workspaces@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "@npmcli/map-workspaces", + "hash": "13154714750762064630" + } + }, + "npm:@npmcli/metavuln-calculator@7.0.0": { + "type": "npm", + "name": "npm:@npmcli/metavuln-calculator@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "@npmcli/metavuln-calculator", + "hash": "2521549270537825900" + } + }, + "npm:@npmcli/name-from-folder@2.0.0": { + "type": "npm", + "name": "npm:@npmcli/name-from-folder@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@npmcli/name-from-folder", + "hash": "14253416717500769425" + } + }, + "npm:@npmcli/package-json@5.0.0": { + "type": "npm", + "name": "npm:@npmcli/package-json@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@npmcli/package-json", + "hash": "15072336541895224028" + } + }, + "npm:@npmcli/query@3.0.1": { + "type": "npm", + "name": "npm:@npmcli/query@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@npmcli/query", + "hash": "2838677265610359007" + } + }, + "npm:aproba@2.0.0": { + "type": "npm", + "name": "npm:aproba@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "aproba", + "hash": "17279615999774402081" + } + }, + "npm:archy@1.0.0": { + "type": "npm", + "name": "npm:archy@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "7927190020983769851" + } + }, + "npm:are-we-there-yet@4.0.1": { + "type": "npm", + "name": "npm:are-we-there-yet@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "are-we-there-yet", + "hash": "2067525616894023226" + } + }, + "npm:bin-links@4.0.3": { + "type": "npm", + "name": "npm:bin-links@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "bin-links", + "hash": "6676388443930273422" + } + }, + "npm:cidr-regex@4.0.3": { + "type": "npm", + "name": "npm:cidr-regex@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "cidr-regex", + "hash": "6423967580007982965" + } + }, + "npm:cli-columns@4.0.0": { + "type": "npm", + "name": "npm:cli-columns@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-columns", + "hash": "11864858422112434879" + } + }, + "npm:cmd-shim@6.0.2": { + "type": "npm", + "name": "npm:cmd-shim@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "cmd-shim", + "hash": "11797498964257484434" + } + }, + "npm:color-support@1.1.3": { + "type": "npm", + "name": "npm:color-support@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "3393818179792164157" + } + }, + "npm:common-ancestor-path@1.0.1": { + "type": "npm", + "name": "npm:common-ancestor-path@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "common-ancestor-path", + "hash": "6661427358504839173" + } + }, + "npm:console-control-strings@1.1.0": { + "type": "npm", + "name": "npm:console-control-strings@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "15599562434471903839" + } + }, + "npm:delegates@1.0.0": { + "type": "npm", + "name": "npm:delegates@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "8733352999539432694" + } + }, + "npm:fastest-levenshtein@1.0.16": { + "type": "npm", + "name": "npm:fastest-levenshtein@1.0.16", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "8701148827062880145" + } + }, + "npm:gauge@5.0.1": { + "type": "npm", + "name": "npm:gauge@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "gauge", + "hash": "11205983861061131040" + } + }, + "npm:has-unicode@2.0.1": { + "type": "npm", + "name": "npm:has-unicode@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "13943981828416008621" + } + }, + "npm:init-package-json@6.0.0": { + "type": "npm", + "name": "npm:init-package-json@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "init-package-json", + "hash": "12382910830993440062" + } + }, + "npm:ip-regex@5.0.0": { + "type": "npm", + "name": "npm:ip-regex@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ip-regex", + "hash": "6181509096878655535" + } + }, + "npm:is-cidr@5.0.3": { + "type": "npm", + "name": "npm:is-cidr@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "is-cidr", + "hash": "9300924457576055299" + } + }, + "npm:json-stringify-nice@1.1.4": { + "type": "npm", + "name": "npm:json-stringify-nice@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "json-stringify-nice", + "hash": "1591436175625616703" + } + }, + "npm:just-diff@6.0.2": { + "type": "npm", + "name": "npm:just-diff@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "just-diff", + "hash": "8534278321911344784" + } + }, + "npm:just-diff-apply@5.5.0": { + "type": "npm", + "name": "npm:just-diff-apply@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "just-diff-apply", + "hash": "12715064950501085530" + } + }, + "npm:libnpmaccess@8.0.2": { + "type": "npm", + "name": "npm:libnpmaccess@8.0.2", + "data": { + "version": "8.0.2", + "packageName": "libnpmaccess", + "hash": "16421526142808800212" + } + }, + "npm:libnpmdiff@6.0.4": { + "type": "npm", + "name": "npm:libnpmdiff@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "libnpmdiff", + "hash": "3820498454041815106" + } + }, + "npm:libnpmexec@7.0.5": { + "type": "npm", + "name": "npm:libnpmexec@7.0.5", + "data": { + "version": "7.0.5", + "packageName": "libnpmexec", + "hash": "17794617723037587231" + } + }, + "npm:libnpmfund@5.0.2": { + "type": "npm", + "name": "npm:libnpmfund@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "libnpmfund", + "hash": "12305598745182060946" + } + }, + "npm:libnpmhook@10.0.1": { + "type": "npm", + "name": "npm:libnpmhook@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "libnpmhook", + "hash": "8875117050333550796" + } + }, + "npm:libnpmorg@6.0.2": { + "type": "npm", + "name": "npm:libnpmorg@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "libnpmorg", + "hash": "10290805547791020319" + } + }, + "npm:libnpmpack@6.0.4": { + "type": "npm", + "name": "npm:libnpmpack@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "libnpmpack", + "hash": "5406464303373104244" + } + }, + "npm:libnpmpublish@9.0.3": { + "type": "npm", + "name": "npm:libnpmpublish@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "libnpmpublish", + "hash": "8046954149526535727" + } + }, + "npm:libnpmsearch@7.0.1": { + "type": "npm", + "name": "npm:libnpmsearch@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "libnpmsearch", + "hash": "15325769825788437107" + } + }, + "npm:libnpmteam@6.0.1": { + "type": "npm", + "name": "npm:libnpmteam@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "libnpmteam", + "hash": "1683769112741320527" + } + }, + "npm:libnpmversion@5.0.2": { + "type": "npm", + "name": "npm:libnpmversion@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "libnpmversion", + "hash": "17375154425837329637" + } + }, + "npm:npm-audit-report@5.0.0": { + "type": "npm", + "name": "npm:npm-audit-report@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "npm-audit-report", + "hash": "6354832541033058707" + } + }, + "npm:npm-profile@9.0.0": { + "type": "npm", + "name": "npm:npm-profile@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "npm-profile", + "hash": "11172665038688662263" + } + }, + "npm:npm-user-validate@2.0.0": { + "type": "npm", + "name": "npm:npm-user-validate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "npm-user-validate", + "hash": "7397416590274487050" + } + }, + "npm:npmlog@7.0.1": { + "type": "npm", + "name": "npm:npmlog@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "npmlog", + "hash": "17299148607020464567" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "17854661287334559550" + } + }, + "npm:p-map@5.5.0": { + "type": "npm", + "name": "npm:p-map@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "p-map", + "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" + } + }, + "npm:pacote@17.0.5": { + "type": "npm", + "name": "npm:pacote@17.0.5", + "data": { + "version": "17.0.5", + "packageName": "pacote", + "hash": "18157225445049205745" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "17.0.4", + "packageName": "pacote", + "hash": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==" + } + }, + "npm:parse-conflict-json@3.0.1": { + "type": "npm", + "name": "npm:parse-conflict-json@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "parse-conflict-json", + "hash": "4836433519110231199" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "12011382365270888598" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "18317171813795956011" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "15686043515984890271" + } + }, + "npm:process": { + "type": "npm", + "name": "npm:process", + "data": { + "version": "0.11.10", + "packageName": "process", + "hash": "5899774364612678558" + } + }, + "npm:promise-all-reject-late@1.0.1": { + "type": "npm", + "name": "npm:promise-all-reject-late@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "promise-all-reject-late", + "hash": "8115079043743132112" + } + }, + "npm:promise-call-limit@1.0.2": { + "type": "npm", + "name": "npm:promise-call-limit@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "promise-call-limit", + "hash": "15188836213578786777" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "17505959410500941643" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "6430051236100879397" + } + }, + "npm:promzard@1.0.0": { + "type": "npm", + "name": "npm:promzard@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "1630102348184705762" + } + }, + "npm:qrcode-terminal@0.12.0": { + "type": "npm", + "name": "npm:qrcode-terminal@0.12.0", + "data": { + "version": "0.12.0", + "packageName": "qrcode-terminal", + "hash": "8604977206135799318" + } + }, + "npm:read@2.1.0": { + "type": "npm", + "name": "npm:read@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "15091997822902067721" + } + }, + "npm:read-cmd-shim@4.0.0": { + "type": "npm", + "name": "npm:read-cmd-shim@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "8789385965959140586" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "7.0.0", + "packageName": "read-package-json", + "hash": "2832168133989722474" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "15039476735012127087" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "577959566566698873" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "16796670911009069817" + } + }, + "npm:set-blocking@2.0.0": { + "type": "npm", + "name": "npm:set-blocking@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "7925479020392693302" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "2.1.0", + "packageName": "sigstore", + "hash": "1779417821879983691" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "9325347317011058594" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.7.1", + "packageName": "socks", + "hash": "10075606660716242987" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "8.0.2", + "packageName": "socks-proxy-agent", + "hash": "16729279058560436716" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "5441723641692029835" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.3.0", + "packageName": "spdx-exceptions", + "hash": "7642298428353548034" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "1415946028849809017" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.16", + "packageName": "spdx-license-ids", + "hash": "14586284776616244379" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.5", + "packageName": "ssri", + "hash": "3448831591758618758" + } + }, + "npm:string_decoder@1.3.0": { + "type": "npm", + "name": "npm:string_decoder@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "7047277384104003716" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "16568546503867287883" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "17289454424302757271" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.2.0", + "packageName": "tar", + "hash": "6383215585396908452" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "18257468142112457810" + } + }, + "npm:tiny-relative-date@1.3.0": { + "type": "npm", + "name": "npm:tiny-relative-date@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "tiny-relative-date", + "hash": "13109578067881593908" + } + }, + "npm:treeverse@3.0.0": { + "type": "npm", + "name": "npm:treeverse@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "treeverse", + "hash": "6817532506522309275" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "2.1.0", + "packageName": "tuf-js", + "hash": "3979877721881428053" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "7886949599248485097" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "15025672285505434477" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "17916194938027055625" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "14893158163252173577" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "2171344116929511877" + } + }, + "npm:walk-up-path@3.0.1": { + "type": "npm", + "name": "npm:walk-up-path@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "walk-up-path", + "hash": "10198965256615950216" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "10410747907664628096" + } + }, + "npm:wide-align@1.1.5": { + "type": "npm", + "name": "npm:wide-align@1.1.5", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "9514910874233485267" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "13425223611772983678" + } + }, + "npm:write-file-atomic@5.0.1": { + "type": "npm", + "name": "npm:write-file-atomic@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "9705229754480736912" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.7", + "packageName": "nwsapi", + "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "17.2.6", + "packageName": "nx", + "hash": "sha512-lBHp0e0AMBwYwpT44a8b0j29szspmYUhY1okqNctz/3ifuonNFG9WGfbzRO4YKOrVkfNsuaomHVAE6gtqo55ng==" + } + }, + "npm:nx-release": { + "type": "npm", + "name": "npm:nx-release", + "data": { + "version": "3.1.6", + "packageName": "nx-release", + "hash": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==" + } + }, + "npm:proxy-from-env@1.1.0": { + "type": "npm", + "name": "npm:proxy-from-env@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.0.0", + "packageName": "proxy-from-env", + "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.13.1", + "packageName": "object-inspect", + "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.5", + "packageName": "object.assign", + "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" + } + }, + "npm:object.pick": { + "type": "npm", + "name": "npm:object.pick", + "data": { + "version": "1.3.0", + "packageName": "object.pick", + "hash": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:on-exit-leak-free": { + "type": "npm", + "name": "npm:on-exit-leak-free", + "data": { + "version": "0.2.0", + "packageName": "on-exit-leak-free", + "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:openurl": { + "type": "npm", + "name": "npm:openurl", + "data": { + "version": "1.1.1", + "packageName": "openurl", + "hash": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" + } + }, + "npm:opn": { + "type": "npm", + "name": "npm:opn", + "data": { + "version": "5.3.0", + "packageName": "opn", + "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:os-filter-obj": { + "type": "npm", + "name": "npm:os-filter-obj", + "data": { + "version": "2.0.0", + "packageName": "os-filter-obj", + "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:ospath": { + "type": "npm", + "name": "npm:ospath", + "data": { + "version": "1.2.2", + "packageName": "ospath", + "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.1.1", + "packageName": "p-cancelable", + "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + } + }, + "npm:p-each-series": { + "type": "npm", + "name": "npm:p-each-series", + "data": { + "version": "3.0.0", + "packageName": "p-each-series", + "hash": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "3.0.0", + "packageName": "p-filter", + "hash": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "npm:p-is-promise": { + "type": "npm", + "name": "npm:p-is-promise", + "data": { + "version": "3.0.0", + "packageName": "p-is-promise", + "hash": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-reduce@3.0.0": { + "type": "npm", + "name": "npm:p-reduce@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-reduce", + "hash": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" + } + }, + "npm:pako": { + "type": "npm", + "name": "npm:pako", + "data": { + "version": "1.0.11", + "packageName": "pako", + "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:parse5-html-rewriting-stream": { + "type": "npm", + "name": "npm:parse5-html-rewriting-stream", + "data": { + "version": "7.0.0", + "packageName": "parse5-html-rewriting-stream", + "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" + } + }, + "npm:parse5-sax-parser": { + "type": "npm", + "name": "npm:parse5-sax-parser", + "data": { + "version": "7.0.0", + "packageName": "parse5-sax-parser", + "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:peek-readable": { + "type": "npm", + "name": "npm:peek-readable", + "data": { + "version": "5.0.0", + "packageName": "peek-readable", + "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + } + }, + "npm:performance-now": { + "type": "npm", + "name": "npm:performance-now", + "data": { + "version": "2.1.0", + "packageName": "performance-now", + "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:pino": { + "type": "npm", + "name": "npm:pino", + "data": { + "version": "7.11.0", + "packageName": "pino", + "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" + } + }, + "npm:pino-abstract-transport": { + "type": "npm", + "name": "npm:pino-abstract-transport", + "data": { + "version": "1.0.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" + } + }, + "npm:pino-abstract-transport@0.5.0": { + "type": "npm", + "name": "npm:pino-abstract-transport@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" + } + }, + "npm:pino-std-serializers": { + "type": "npm", + "name": "npm:pino-std-serializers", + "data": { + "version": "4.0.0", + "packageName": "pino-std-serializers", + "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" + } + }, + "npm:sonic-boom@2.8.0": { + "type": "npm", + "name": "npm:sonic-boom@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "sonic-boom", + "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" + } + }, + "npm:sonic-boom": { + "type": "npm", + "name": "npm:sonic-boom", + "data": { + "version": "3.3.0", + "packageName": "sonic-boom", + "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:piscina": { + "type": "npm", + "name": "npm:piscina", + "data": { + "version": "4.1.0", + "packageName": "piscina", + "hash": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==" + } + }, + "npm:pkg-conf": { + "type": "npm", + "name": "npm:pkg-conf", + "data": { + "version": "2.1.0", + "packageName": "pkg-conf", + "hash": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==" + } + }, + "npm:pkginfo": { + "type": "npm", + "name": "npm:pkginfo", + "data": { + "version": "0.4.1", + "packageName": "pkginfo", + "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" + } + }, + "npm:please-upgrade-node": { + "type": "npm", + "name": "npm:please-upgrade-node", + "data": { + "version": "3.2.0", + "packageName": "please-upgrade-node", + "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "8.0.0", + "packageName": "pluralize", + "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.32", + "packageName": "portfinder", + "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" + } + }, + "npm:portscanner": { + "type": "npm", + "name": "npm:portscanner", + "data": { + "version": "2.2.0", + "packageName": "portscanner", + "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.31", + "packageName": "postcss", + "hash": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "9.0.1", + "packageName": "postcss-calc", + "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "6.0.1", + "packageName": "postcss-colormin", + "hash": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-convert-values", + "hash": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-comments", + "hash": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-overridden", + "hash": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==" + } + }, + "npm:postcss-import": { + "type": "npm", + "name": "npm:postcss-import", + "data": { + "version": "14.1.0", + "packageName": "postcss-import", + "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "6.0.1", + "packageName": "postcss-merge-longhand", + "hash": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "6.0.2", + "packageName": "postcss-merge-rules", + "hash": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-font-values", + "hash": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-params", + "hash": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.3", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-charset", + "hash": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-string", + "hash": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-url", + "hash": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-ordered-values", + "hash": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "6.0.1", + "packageName": "postcss-reduce-initial", + "hash": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "6.0.1", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "6.0.1", + "packageName": "postcss-svgo", + "hash": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "6.0.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.7.0", + "packageName": "pretty-format", + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:process-warning": { + "type": "npm", + "name": "npm:process-warning", + "data": { + "version": "1.0.0", + "packageName": "process-warning", + "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:property-expr": { + "type": "npm", + "name": "npm:property-expr", + "data": { + "version": "2.0.6", + "packageName": "property-expr", + "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" + } + }, + "npm:proto-list": { + "type": "npm", + "name": "npm:proto-list", + "data": { + "version": "1.2.4", + "packageName": "proto-list", + "hash": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + } + }, + "npm:pseudomap": { + "type": "npm", + "name": "npm:pseudomap", + "data": { + "version": "1.0.2", + "packageName": "pseudomap", + "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.9.0", + "packageName": "psl", + "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.1", + "packageName": "punycode", + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.4", + "packageName": "pure-rand", + "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:quick-format-unescaped": { + "type": "npm", + "name": "npm:quick-format-unescaped", + "data": { + "version": "4.0.4", + "packageName": "quick-format-unescaped", + "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:randomatic": { + "type": "npm", + "name": "npm:randomatic", + "data": { + "version": "3.1.1", + "packageName": "randomatic", + "hash": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:read-cache": { + "type": "npm", + "name": "npm:read-cache", + "data": { + "version": "1.0.0", + "packageName": "read-cache", + "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "11.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==" + } + }, + "npm:readable-web-to-node-stream": { + "type": "npm", + "name": "npm:readable-web-to-node-stream", + "data": { + "version": "3.0.2", + "packageName": "readable-web-to-node-stream", + "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:real-require": { + "type": "npm", + "name": "npm:real-require", + "data": { + "version": "0.1.0", + "packageName": "real-require", + "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" + } + }, + "npm:redeyed": { + "type": "npm", + "name": "npm:redeyed", + "data": { + "version": "2.1.1", + "packageName": "redeyed", + "hash": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==" + } + }, + "npm:reflect-metadata": { + "type": "npm", + "name": "npm:reflect-metadata", + "data": { + "version": "0.1.14", + "packageName": "reflect-metadata", + "hash": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.1", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.14.1", + "packageName": "regenerator-runtime", + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.2", + "packageName": "regenerator-transform", + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" + } + }, + "npm:regex-parser": { + "type": "npm", + "name": "npm:regex-parser", + "data": { + "version": "2.2.11", + "packageName": "regex-parser", + "hash": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.1", + "packageName": "regexp.prototype.flags", + "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "5.0.2", + "packageName": "registry-auth-token", + "hash": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:remarkable": { + "type": "npm", + "name": "npm:remarkable", + "data": { + "version": "1.7.4", + "packageName": "remarkable", + "hash": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==" + } + }, + "npm:repeat-element": { + "type": "npm", + "name": "npm:repeat-element", + "data": { + "version": "1.1.4", + "packageName": "repeat-element", + "hash": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" + } + }, + "npm:replace-json-property": { + "type": "npm", + "name": "npm:replace-json-property", + "data": { + "version": "1.9.0", + "packageName": "replace-json-property", + "hash": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==" + } + }, + "npm:request-progress": { + "type": "npm", + "name": "npm:request-progress", + "data": { + "version": "3.0.0", + "packageName": "request-progress", + "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-url-loader": { + "type": "npm", + "name": "npm:resolve-url-loader", + "data": { + "version": "5.0.0", + "packageName": "resolve-url-loader", + "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" + } + }, + "npm:resp-modifier": { + "type": "npm", + "name": "npm:resp-modifier", + "data": { + "version": "6.0.2", + "packageName": "resp-modifier", + "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.1", + "packageName": "responselike", + "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "3.29.4", + "packageName": "rollup", + "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:rx": { + "type": "npm", + "name": "npm:rx", + "data": { + "version": "4.1.0", + "packageName": "rx", + "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.0.1", + "packageName": "safe-array-concat", + "hash": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.0", + "packageName": "safe-regex-test", + "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" + } + }, + "npm:safe-stable-stringify": { + "type": "npm", + "name": "npm:safe-stable-stringify", + "data": { + "version": "2.4.3", + "packageName": "safe-stable-stringify", + "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.69.5", + "packageName": "sass", + "hash": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:sax@1.2.4": { + "type": "npm", + "name": "npm:sax@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:secure-compare": { + "type": "npm", + "name": "npm:secure-compare", + "data": { + "version": "3.0.1", + "packageName": "secure-compare", + "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.4.1", + "packageName": "selfsigned", + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" + } + }, + "npm:semantic-release": { + "type": "npm", + "name": "npm:semantic-release", + "data": { + "version": "22.0.12", + "packageName": "semantic-release", + "hash": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==" + } + }, + "npm:semver-compare": { + "type": "npm", + "name": "npm:semver-compare", + "data": { + "version": "1.0.0", + "packageName": "semver-compare", + "hash": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "4.0.0", + "packageName": "semver-diff", + "hash": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==" + } + }, + "npm:semver-regex": { + "type": "npm", + "name": "npm:semver-regex", + "data": { + "version": "4.0.5", + "packageName": "semver-regex", + "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" + } + }, + "npm:semver-truncate": { + "type": "npm", + "name": "npm:semver-truncate", + "data": { + "version": "3.0.0", + "packageName": "semver-truncate", + "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:server-destroy": { + "type": "npm", + "name": "npm:server-destroy", + "data": { + "version": "1.0.1", + "packageName": "server-destroy", + "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.1.1", + "packageName": "set-function-length", + "hash": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.1", + "packageName": "set-function-name", + "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" + } + }, + "npm:set-getter": { + "type": "npm", + "name": "npm:set-getter", + "data": { + "version": "0.1.1", + "packageName": "set-getter", + "hash": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signale": { + "type": "npm", + "name": "npm:signale", + "data": { + "version": "1.4.0", + "packageName": "signale", + "hash": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:skin-tone": { + "type": "npm", + "name": "npm:skin-tone", + "data": { + "version": "2.0.0", + "packageName": "skin-tone", + "hash": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==" + } + }, + "npm:socket.io": { + "type": "npm", + "name": "npm:socket.io", + "data": { + "version": "4.7.2", + "packageName": "socket.io", + "hash": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==" + } + }, + "npm:socket.io-adapter": { + "type": "npm", + "name": "npm:socket.io-adapter", + "data": { + "version": "2.5.2", + "packageName": "socket.io-adapter", + "hash": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==" + } + }, + "npm:socket.io-client": { + "type": "npm", + "name": "npm:socket.io-client", + "data": { + "version": "4.7.2", + "packageName": "socket.io-client", + "hash": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==" + } + }, + "npm:socket.io-parser": { + "type": "npm", + "name": "npm:socket.io-parser", + "data": { + "version": "4.2.4", + "packageName": "socket.io-parser", + "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "1.1.2", + "packageName": "sort-keys", + "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" + } + }, + "npm:sort-keys-length": { + "type": "npm", + "name": "npm:sort-keys-length", + "data": { + "version": "1.0.1", + "packageName": "sort-keys-length", + "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" + } + }, + "npm:source-map-explorer": { + "type": "npm", + "name": "npm:source-map-explorer", + "data": { + "version": "2.5.3", + "packageName": "source-map-explorer", + "hash": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:spawn-error-forwarder": { + "type": "npm", + "name": "npm:spawn-error-forwarder", + "data": { + "version": "1.0.0", + "packageName": "spawn-error-forwarder", + "hash": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.18.0", + "packageName": "sshpk", + "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:steno": { + "type": "npm", + "name": "npm:steno", + "data": { + "version": "0.4.4", + "packageName": "steno", + "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" + } + }, + "npm:stream-combiner2": { + "type": "npm", + "name": "npm:stream-combiner2", + "data": { + "version": "1.1.1", + "packageName": "stream-combiner2", + "hash": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==" + } + }, + "npm:stream-shift": { + "type": "npm", + "name": "npm:stream-shift", + "data": { + "version": "1.0.1", + "packageName": "stream-shift", + "hash": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + } + }, + "npm:stream-throttle": { + "type": "npm", + "name": "npm:stream-throttle", + "data": { + "version": "0.1.3", + "packageName": "stream-throttle", + "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.2", + "packageName": "string-argv", + "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.1.5", + "packageName": "string.prototype.padend", + "hash": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.8", + "packageName": "string.prototype.trim", + "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimend", + "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimstart", + "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" + } + }, + "npm:strip-color": { + "type": "npm", + "name": "npm:strip-color", + "data": { + "version": "0.1.0", + "packageName": "strip-color", + "hash": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" + } + }, + "npm:strip-outer": { + "type": "npm", + "name": "npm:strip-outer", + "data": { + "version": "2.0.0", + "packageName": "strip-outer", + "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:strtok3": { + "type": "npm", + "name": "npm:strtok3", + "data": { + "version": "7.0.0", + "packageName": "strtok3", + "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.3", + "packageName": "style-loader", + "hash": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "6.0.1", + "packageName": "stylehacks", + "hash": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==" + } + }, + "npm:stylus": { + "type": "npm", + "name": "npm:stylus", + "data": { + "version": "0.59.0", + "packageName": "stylus", + "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" + } + }, + "npm:stylus-loader": { + "type": "npm", + "name": "npm:stylus-loader", + "data": { + "version": "7.1.3", + "packageName": "stylus-loader", + "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "3.0.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "3.1.0", + "packageName": "svgo", + "hash": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==" + } + }, + "npm:symbol-observable": { + "type": "npm", + "name": "npm:symbol-observable", + "data": { + "version": "4.0.0", + "packageName": "symbol-observable", + "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.9.4", + "packageName": "temp", + "hash": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "3.0.0", + "packageName": "temp-dir", + "hash": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "3.1.0", + "packageName": "tempy", + "hash": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.24.0", + "packageName": "terser", + "hash": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.9", + "packageName": "terser-webpack-plugin", + "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "2.4.0", + "packageName": "text-extensions", + "hash": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==" + } + }, + "npm:thread-stream": { + "type": "npm", + "name": "npm:thread-stream", + "data": { + "version": "0.15.2", + "packageName": "thread-stream", + "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" + } + }, + "npm:throttleit": { + "type": "npm", + "name": "npm:throttleit", + "data": { + "version": "1.0.1", + "packageName": "throttleit", + "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:to-object-path": { + "type": "npm", + "name": "npm:to-object-path", + "data": { + "version": "0.3.0", + "packageName": "to-object-path", + "hash": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:token-types": { + "type": "npm", + "name": "npm:token-types", + "data": { + "version": "5.0.1", + "packageName": "token-types", + "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" + } + }, + "npm:toml": { + "type": "npm", + "name": "npm:toml", + "data": { + "version": "2.3.6", + "packageName": "toml", + "hash": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" + } + }, + "npm:toposort": { + "type": "npm", + "name": "npm:toposort", + "data": { + "version": "2.0.2", + "packageName": "toposort", + "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.3", + "packageName": "tough-cookie", + "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.7", + "packageName": "traverse", + "hash": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==" + } + }, + "npm:tree-kill": { + "type": "npm", + "name": "npm:tree-kill", + "data": { + "version": "1.2.2", + "packageName": "tree-kill", + "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" + } + }, + "npm:trim-repeated": { + "type": "npm", + "name": "npm:trim-repeated", + "data": { + "version": "2.0.0", + "packageName": "trim-repeated", + "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" + } + }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "1.0.3", + "packageName": "ts-api-utils", + "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.1.1", + "packageName": "ts-jest", + "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" + } + }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.5.1", + "packageName": "ts-loader", + "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.2", + "packageName": "tslib", + "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + }, + "npm:tsscmp": { + "type": "npm", + "name": "npm:tsscmp", + "data": { + "version": "1.0.6", + "packageName": "tsscmp", + "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" + } + }, + "npm:tweetnacl": { + "type": "npm", + "name": "npm:tweetnacl", + "data": { + "version": "0.14.5", + "packageName": "tweetnacl", + "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + } + }, + "npm:typanion": { + "type": "npm", + "name": "npm:typanion", + "data": { + "version": "3.14.0", + "packageName": "typanion", + "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:typed-assert": { + "type": "npm", + "name": "npm:typed-assert", + "data": { + "version": "1.0.9", + "packageName": "typed-assert", + "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "5.2.2", + "packageName": "typescript", + "hash": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "1.0.37", + "packageName": "ua-parser-js", + "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.17.4", + "packageName": "uglify-js", + "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:undici": { + "type": "npm", + "name": "npm:undici", + "data": { + "version": "5.27.2", + "packageName": "undici", + "hash": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-emoji-modifier-base": { + "type": "npm", + "name": "npm:unicode-emoji-modifier-base", + "data": { + "version": "1.0.0", + "packageName": "unicode-emoji-modifier-base", + "hash": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:unicorn-magic": { + "type": "npm", + "name": "npm:unicorn-magic", + "data": { + "version": "0.1.0", + "packageName": "unicorn-magic", + "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" + } + }, + "npm:union": { + "type": "npm", + "name": "npm:union", + "data": { + "version": "0.5.0", + "packageName": "union", + "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "3.0.0", + "packageName": "unique-string", + "hash": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.1", + "packageName": "universal-user-agent", + "hash": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" + } + }, + "npm:unix-crypt-td-js": { + "type": "npm", + "name": "npm:unix-crypt-td-js", + "data": { + "version": "1.1.4", + "packageName": "unix-crypt-td-js", + "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:untildify": { + "type": "npm", + "name": "npm:untildify", + "data": { + "version": "4.0.0", + "packageName": "untildify", + "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.13", + "packageName": "update-browserslist-db", + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.2.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:verdaccio": { + "type": "npm", + "name": "npm:verdaccio", + "data": { + "version": "5.29.0", + "packageName": "verdaccio", + "hash": "sha512-Le3MhojXDCoXIDFNp5VaAalu8FtoZAJo6YTWxEAKCOO4MFN19XzwZsu4FkLrPHc5fPhyhqerTHBsG2qtoutxQA==" + } + }, + "npm:verdaccio-audit": { + "type": "npm", + "name": "npm:verdaccio-audit", + "data": { + "version": "12.0.0-next.4", + "packageName": "verdaccio-audit", + "hash": "sha512-X8Qe8Qv/BZPng7dQCCdot8g53eU65zM6GfLw0P1A68Hf5dzv/GJgekiPnIAXgSw5KJMKE8loNzd6+FfFLnQUSA==" + } + }, + "npm:verdaccio-htpasswd": { + "type": "npm", + "name": "npm:verdaccio-htpasswd", + "data": { + "version": "12.0.0-next.4", + "packageName": "verdaccio-htpasswd", + "hash": "sha512-q4SxBIWMkVPUoKk2/JSPJjlTdC8treuLtVV/omRYjEgSbwJBhJlSeqwEiHlv0/idv/cfwXoDR3/WY9CWq8gieg==" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" + } + }, + "npm:vite": { + "type": "npm", + "name": "npm:vite", + "data": { + "version": "4.5.1", + "packageName": "vite", + "hash": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.89.0", + "packageName": "webpack", + "hash": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "6.1.1", + "packageName": "webpack-dev-middleware", + "hash": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==" + } + }, + "npm:webpack-dev-middleware@5.3.3": { + "type": "npm", + "name": "npm:webpack-dev-middleware@5.3.3", + "data": { + "version": "5.3.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.15.1", + "packageName": "webpack-dev-server", + "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.10.0", + "packageName": "webpack-merge", + "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" + } + }, + "npm:webpack-node-externals": { + "type": "npm", + "name": "npm:webpack-node-externals", + "data": { + "version": "3.0.0", + "packageName": "webpack-node-externals", + "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack-subresource-integrity": { + "type": "npm", + "name": "npm:webpack-subresource-integrity", + "data": { + "version": "5.1.0", + "packageName": "webpack-subresource-integrity", + "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.13", + "packageName": "which-typed-array", + "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.1", + "packageName": "wildcard", + "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:xmlhttprequest-ssl": { + "type": "npm", + "name": "npm:xmlhttprequest-ssl", + "data": { + "version": "2.0.0", + "packageName": "xmlhttprequest-ssl", + "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:yup": { + "type": "npm", + "name": "npm:yup", + "data": { + "version": "0.32.11", + "packageName": "yup", + "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" + } + }, + "npm:zone.js": { + "type": "npm", + "name": "npm:zone.js", + "data": { + "version": "0.14.2", + "packageName": "zone.js", + "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" + } + } + }, "dependencies": { "tooling-nx-plugin-generators": [ { - "source": "tooling-nx-plugin-generators", - "target": "tooling-nx-plugin-config", + "source": "tooling-nx-plugin-generators", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@angular/router", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nx/angular", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-config", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@ngrx/store", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:nx", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-validators", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:inquirer-autocomplete-prompt", + "type": "static" + } + ], + "tooling-nx-plugin-validators": [ + { + "source": "tooling-nx-plugin-validators", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "tooling-nx-plugin-validators", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "tooling-nx-plugin-validators", + "target": "tooling-nx-plugin-config", + "type": "static" + } + ], + "tooling-nx-plugin-config": [ + { + "source": "tooling-nx-plugin-config", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "tooling-nx-plugin-config", + "target": "npm:@types/inquirer", + "type": "static" + }, + { + "source": "tooling-nx-plugin-config", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "ax-nx-plugin-workspace": [ + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "npm:@ampproject/remapping": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@angular-devkit/architect": [ + { + "source": "npm:@angular-devkit/architect", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/architect", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@angular-devkit/build-angular": [ + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/build-webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@ngtools/webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@vitejs/plugin-basic-ssl", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:browser-sync", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:critters", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:esbuild-wasm", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:inquirer@9.2.11", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:karma-source-map-support", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:parse5-html-rewriting-stream", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:piscina", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:resolve-url-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:sass-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:undici", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-subresource-integrity", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:esbuild", + "type": "static" + } + ], + "npm:figures@5.0.0": [ + { + "source": "npm:figures@5.0.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:figures@5.0.0", + "target": "npm:is-unicode-supported@1.3.0", + "type": "static" + } + ], + "npm:inquirer@9.2.11": [ + { + "source": "npm:inquirer@9.2.11", + "target": "npm:@ljharb/through", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:cli-width@4.1.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:figures@5.0.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:mute-stream@1.0.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:run-async@3.0.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:@angular-devkit/build-webpack": [ + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@angular-devkit/core": [ + { + "source": "npm:@angular-devkit/core", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@angular-devkit/schematics": [ + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@angular-eslint/eslint-plugin": [ + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:@angular-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + } + ], + "npm:@angular-eslint/eslint-plugin-template": [ + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@angular-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:axobject-query", + "type": "static" + } + ], + "npm:@angular-eslint/template-parser": [ + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:eslint-scope", + "type": "static" + } + ], + "npm:@angular-eslint/utils": [ + { + "source": "npm:@angular-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + } + ], + "npm:@angular/animations": [ + { + "source": "npm:@angular/animations", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/animations", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/cdk": [ + { + "source": "npm:@angular/cdk", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:@angular/cli": [ + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@schematics/angular@17.0.7", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:inquirer@9.2.11", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:symbol-observable", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:@schematics/angular@17.0.7": [ + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:jsonc-parser", + "type": "static" + } + ], + "npm:@angular/common": [ + { + "source": "npm:@angular/common", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/compiler": [ + { + "source": "npm:@angular/compiler", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/compiler", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/compiler-cli": [ + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:reflect-metadata", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:@angular/core": [ + { + "source": "npm:@angular/core", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:zone.js", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/forms": [ + { + "source": "npm:@angular/forms", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/platform-browser": [ + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/animations", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/platform-browser-dynamic": [ + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/router": [ + { + "source": "npm:@angular/router", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@babel/code-frame": [ + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:ansi-styles@3.2.1": [ + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + } + ], + "npm:chalk@2.4.2": [ + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:color-convert@1.9.3": [ + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + } + ], + "npm:supports-color@5.5.0": [ + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + } + ], + "npm:@babel/core": [ + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/generator": [ + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/helper-annotate-as-pure": [ + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-compilation-targets": [ + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-class-features-plugin": [ + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-regexp-features-plugin": [ + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-define-polyfill-provider": [ + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:@babel/helper-function-name": [ + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-hoist-variables": [ + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-member-expression-to-functions": [ + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-imports": [ + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-transforms": [ + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/helper-optimise-call-expression": [ + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-remap-async-to-generator": [ + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + } + ], + "npm:@babel/helper-replace-supers": [ + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + } + ], + "npm:@babel/helper-simple-access": [ + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-skip-transparent-expression-wrappers": [ + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-split-export-declaration": [ + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-wrap-function": [ + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helpers": [ + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/highlight": [ + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-decorators": [ + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-private-property-in-object": [ + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-async-generators": [ + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-bigint": [ + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-properties": [ + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-static-block": [ + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-decorators": [ + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-dynamic-import": [ + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-namespace-from": [ + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-assertions": [ + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-attributes": [ + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-meta": [ + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-json-strings": [ + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx": [ + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-numeric-separator": [ + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-object-rest-spread": [ + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-chaining": [ + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-private-property-in-object": [ + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-top-level-await": [ + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-typescript": [ + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-arrow-functions": [ + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-generator-functions": [ + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-to-generator": [ + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoped-functions": [ + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoping": [ + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-properties": [ + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-static-block": [ + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + } + ], + "npm:@babel/plugin-transform-classes": [ + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/plugin-transform-computed-properties": [ + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + } + ], + "npm:@babel/plugin-transform-destructuring": [ + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dotall-regex": [ + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-duplicate-keys": [ + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dynamic-import": [ + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + } + ], + "npm:@babel/plugin-transform-exponentiation-operator": [ + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-export-namespace-from": [ + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + } + ], + "npm:@babel/plugin-transform-for-of": [ + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-function-name": [ + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-json-strings": [ + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + } + ], + "npm:@babel/plugin-transform-literals": [ + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-member-expression-literals": [ + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-amd": [ + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-commonjs": [ + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-systemjs": [ + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-umd": [ + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-named-capturing-groups-regex": [ + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-new-target": [ + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-numeric-separator": [ + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-rest-spread": [ + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-super": [ + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-chaining": [ + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-transform-parameters": [ + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-methods": [ + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-property-in-object": [ + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + } + ], + "npm:@babel/plugin-transform-property-literals": [ + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-regenerator": [ + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + } + ], + "npm:@babel/plugin-transform-reserved-words": [ + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-runtime": [ + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/plugin-transform-shorthand-properties": [ + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-spread": [ + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-sticky-regex": [ + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-template-literals": [ + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typeof-symbol": [ + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typescript": [ + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-escapes": [ + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-property-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/preset-env": [ + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/preset-modules": [ + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:@babel/preset-typescript": [ + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + } + ], + "npm:@babel/runtime": [ + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@babel/template": [ + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/traverse": [ + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator@7.23.6", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/generator@7.23.6": [ + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/types": [ + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + } + ], + "npm:@cspotcode/source-map-support": [ + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping@0.3.9": [ + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@cypress/request": [ + { + "source": "npm:@cypress/request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@cypress/xvfb": [ + { + "source": "npm:@cypress/xvfb", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:lodash.once", + "type": "static" + } + ], + "npm:debug@3.2.7": [ + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + } + ], + "npm:@eslint-community/eslint-utils": [ + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@eslint/eslintrc": [ + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@13.24.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:ajv@6.12.6": [ + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:globals@13.24.0": [ + { + "source": "npm:globals@13.24.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + } + ], + "npm:js-yaml@4.1.0": [ + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + } + ], + "npm:minimatch@3.1.2": [ + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:@humanwhocodes/config-array": [ + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:@isaacs/cliui": [ + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:string-width@5.1.2": [ + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:strip-ansi@7.1.0": [ + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi@8.1.0": [ + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:@istanbuljs/load-nyc-config": [ + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@jest/console": [ + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/core": [ + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:@jest/environment": [ + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/expect": [ + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:@jest/expect-utils": [ + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + } + ], + "npm:@jest/fake-timers": [ + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:@jest/globals": [ + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/reporters": [ + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + } + ], + "npm:@jest/schemas": [ + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + } + ], + "npm:@jest/source-map": [ + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:@jest/test-result": [ + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + } + ], + "npm:@jest/test-sequencer": [ + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/transform": [ + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:@jest/types": [ + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping": [ + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/source-map": [ + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping": [ + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@ljharb/through": [ + { + "source": "npm:@ljharb/through", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:@mole-inc/bin-wrapper": [ + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-version-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:ext-name", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:file-type", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:filenamify", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:os-filter-obj", + "type": "static" + } + ], + "npm:@ngrx/store": [ + { + "source": "npm:@ngrx/store", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@ngtools/webpack": [ + { + "source": "npm:@ngtools/webpack", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@nodelib/fs.scandir": [ + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + } + ], + "npm:@nodelib/fs.walk": [ + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:@npmcli/agent": [ + { + "source": "npm:@npmcli/agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:socks-proxy-agent", + "type": "static" + } + ], + "npm:http-proxy-agent@7.0.0": [ + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@npmcli/fs": [ + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/git": [ + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:which@4.0.0": [ + { + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", + "type": "static" + } + ], + "npm:@npmcli/installed-package-contents": [ + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:@npmcli/promise-spawn": [ + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:@npmcli/run-script": [ + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:@nrwl/angular": [ + { + "source": "npm:@nrwl/angular", + "target": "npm:@nx/angular", + "type": "static" + }, + { + "source": "npm:@nrwl/angular", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nrwl/cypress": [ + { + "source": "npm:@nrwl/cypress", + "target": "npm:@nx/cypress", + "type": "static" + } + ], + "npm:@nrwl/devkit": [ + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "npm:@nrwl/eslint-plugin-nx": [ + { + "source": "npm:@nrwl/eslint-plugin-nx", + "target": "npm:@nx/eslint-plugin", + "type": "static" + } + ], + "npm:@nrwl/jest": [ + { + "source": "npm:@nrwl/jest", + "target": "npm:@nx/jest", + "type": "static" + } + ], + "npm:@nrwl/js": [ + { + "source": "npm:@nrwl/js", + "target": "npm:@nx/js", + "type": "static" + } + ], + "npm:@nrwl/nx-plugin": [ + { + "source": "npm:@nrwl/nx-plugin", + "target": "npm:@nx/plugin", + "type": "static" + } + ], + "npm:@nrwl/tao": [ + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nrwl/web": [ + { + "source": "npm:@nrwl/web", + "target": "npm:@nx/web", + "type": "static" + } + ], + "npm:@nrwl/webpack": [ + { + "source": "npm:@nrwl/webpack", + "target": "npm:@nx/webpack", + "type": "static" + } + ], + "npm:@nrwl/workspace": [ + { + "source": "npm:@nrwl/workspace", + "target": "npm:@nx/workspace", + "type": "static" + } + ], + "npm:@nx/angular": [ + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@schematics/angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nrwl/angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/cypress", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/eslint", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/web", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/webpack", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:lru-cache@6.0.0": [ + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:semver@7.5.3": [ + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + } + ], + "npm:@nx/cypress": [ + { + "source": "npm:@nx/cypress", + "target": "npm:cypress", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nrwl/cypress", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/eslint", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/devkit": [ + { + "source": "npm:@nx/devkit", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/eslint": [ + { + "source": "npm:@nx/eslint", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@nx/eslint-plugin": [ + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nrwl/eslint-plugin-nx", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:confusing-browser-globals", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:jsonc-eslint-parser", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/jest": [ + { + "source": "npm:@nx/jest", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nrwl/jest", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/js": [ + { + "source": "npm:@nx/js", + "target": "npm:verdaccio", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nrwl/js", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ora@5.3.0", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:fast-glob@3.2.7": [ + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:ora@5.3.0": [ + { + "source": "npm:ora@5.3.0", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:source-map-support@0.5.19": [ + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:@nx/linter": [ + { + "source": "npm:@nx/linter", + "target": "npm:@nx/eslint", + "type": "static" + } + ], + "npm:@nx/plugin": [ + { + "source": "npm:@nx/plugin", + "target": "npm:@nrwl/nx-plugin", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/eslint", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/web": [ + { + "source": "npm:@nx/web", + "target": "npm:@nrwl/web", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:http-server", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/webpack": [ + { + "source": "npm:@nx/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nrwl/webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:copy-webpack-plugin@10.2.4", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less@4.1.3", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:mini-css-extract-plugin@2.4.7", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:parse5@4.0.0", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-import", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-loader@6.2.1", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-loader@12.6.0", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:source-map-loader@3.0.2", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ts-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tsconfig-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-node-externals", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-subresource-integrity", + "type": "static" + } + ], + "npm:copy-webpack-plugin@10.2.4": [ + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:globby@12.2.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:cosmiconfig@7.1.0": [ + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:glob-parent@6.0.2": [ + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:globby@12.2.0": [ + { + "source": "npm:globby@12.2.0", + "target": "npm:array-union@3.0.1", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:iconv-lite@0.6.3": [ + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:less@4.1.3": [ + { + "source": "npm:less@4.1.3", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:loader-utils@2.0.4": [ + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:json5", + "type": "static" + } + ], + "npm:make-dir@2.1.0": [ + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.2", + "type": "static" + } + ], + "npm:mini-css-extract-plugin@2.4.7": [ + { + "source": "npm:mini-css-extract-plugin@2.4.7", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin@2.4.7", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:postcss-loader@6.2.1": [ + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:semver", + "type": "static" + } + ], + "npm:sass-loader@12.6.0": [ + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:neo-async", + "type": "static" + } + ], + "npm:source-map-loader@3.0.2": [ + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:@nx/workspace": [ + { + "source": "npm:@nx/workspace", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:@octokit/core": [ + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/endpoint": [ + { + "source": "npm:@octokit/endpoint", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/graphql": [ + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/plugin-paginate-rest": [ + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + } + ], + "npm:@octokit/plugin-retry": [ + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:bottleneck", + "type": "static" + } + ], + "npm:@octokit/plugin-throttling": [ + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:bottleneck", + "type": "static" + } + ], + "npm:@octokit/request": [ + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/endpoint", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/request-error": [ + { + "source": "npm:@octokit/request-error", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:once", + "type": "static" + } + ], + "npm:@octokit/types": [ + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@phenomnomnominal/tsquery": [ + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + } + ], + "npm:@pnpm/network.ca-file": [ + { + "source": "npm:@pnpm/network.ca-file", + "target": "npm:graceful-fs@4.2.10", + "type": "static" + } + ], + "npm:@pnpm/npm-conf": [ + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:@pnpm/config.env-replace", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:@pnpm/network.ca-file", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:config-chain", + "type": "static" + } + ], + "npm:@schematics/angular": [ + { + "source": "npm:@schematics/angular", + "target": "npm:@angular-devkit/core@16.0.6", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:@angular-devkit/schematics@16.0.6", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:jsonc-parser", + "type": "static" + } + ], + "npm:@angular-devkit/core@16.0.6": [ + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@angular-devkit/schematics@16.0.6": [ + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:@angular-devkit/core@16.0.6", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:magic-string@0.30.0", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:magic-string@0.30.0": [ + { + "source": "npm:magic-string@0.30.0", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@semantic-release/changelog": [ + { + "source": "npm:@semantic-release/changelog", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@semantic-release/commit-analyzer": [ + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:@semantic-release/exec": [ + { + "source": "npm:@semantic-release/exec", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:parse-json", + "type": "static" + } + ], + "npm:@semantic-release/git": [ + { + "source": "npm:@semantic-release/git", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:p-reduce", + "type": "static" + } + ], + "npm:@semantic-release/github": [ + { + "source": "npm:@semantic-release/github", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-retry", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-throttling", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:globby@14.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:issue-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:mime@4.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:p-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:url-join@5.0.0", + "type": "static" + } + ], + "npm:aggregate-error@5.0.0": [ + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:clean-stack@5.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + } + ], + "npm:clean-stack@5.2.0": [ + { + "source": "npm:clean-stack@5.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:fast-glob@3.3.2": [ + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:globby@14.0.0": [ + { + "source": "npm:globby@14.0.0", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:fast-glob@3.3.2", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:path-type@5.0.0", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:unicorn-magic", + "type": "static" + } + ], + "npm:@semantic-release/npm": [ + { + "source": "npm:@semantic-release/npm", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:nerf-dart", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:normalize-url@8.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:npm", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:read-pkg@9.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:tempy", + "type": "static" + } + ], + "npm:execa@8.0.1": [ + { + "source": "npm:execa@8.0.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:get-stream@8.0.1", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:human-signals@5.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + } + ], + "npm:npm-run-path@5.1.0": [ + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + } + ], + "npm:onetime@6.0.0": [ + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + } + ], + "npm:parse-json@8.1.0": [ + { + "source": "npm:parse-json@8.1.0", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:index-to-position", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:type-fest@4.8.3", + "type": "static" + } + ], + "npm:read-pkg@9.0.1": [ + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:parse-json@8.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:unicorn-magic", + "type": "static" + } + ], + "npm:@semantic-release/release-notes-generator": [ + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:into-stream", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:read-pkg-up", + "type": "static" + } + ], + "npm:@sigstore/bundle": [ + { + "source": "npm:@sigstore/bundle", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + } + ], + "npm:@sigstore/sign": [ + { + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:@sigstore/tuf": [ + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + } + ], + "npm:@sinonjs/commons": [ + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/fake-timers": [ + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + } + ], + "npm:@swc-node/core": [ + { + "source": "npm:@swc-node/core", + "target": "npm:@swc/core", + "type": "static" + } + ], + "npm:@swc-node/register": [ + { + "source": "npm:@swc-node/register", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc-node/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc-node/sourcemap-support", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@swc-node/sourcemap-support": [ + { + "source": "npm:@swc-node/sourcemap-support", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@swc-node/sourcemap-support", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@swc/cli": [ + { + "source": "npm:@swc/cli", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:@mole-inc/bin-wrapper", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@swc/core": [ + { + "source": "npm:@swc/core", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/counter", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/types", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-x64", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-x64-msvc", + "type": "static" + } + ], + "npm:@swc/helpers": [ + { + "source": "npm:@swc/helpers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@szmarczak/http-timer": [ + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + } + ], + "npm:@tufjs/models": [ + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.3", + "type": "static" + } + ], + "npm:brace-expansion@2.0.1": [ + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:minimatch@9.0.3": [ + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:@types/babel__core": [ + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:@types/babel__generator": [ + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__template": [ + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__traverse": [ + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/bonjour": [ + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/cacheable-request": [ + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/connect-history-api-fallback": [ + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/cors": [ + { + "source": "npm:@types/cors", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/eslint": [ + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@types/eslint-scope": [ + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + } + ], + "npm:@types/graceful-fs": [ + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/http-proxy": [ + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/inquirer": [ + { + "source": "npm:@types/inquirer", + "target": "npm:@types/through", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@types/istanbul-lib-report": [ + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + } + ], + "npm:@types/istanbul-reports": [ + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/jest": [ + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:@types/jsdom": [ + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:@types/keyv": [ + { + "source": "npm:@types/keyv", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/node-forge": [ + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/responselike": [ + { + "source": "npm:@types/responselike", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/send": [ + { + "source": "npm:@types/send", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/serve-index": [ + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/sockjs": [ + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/through": [ + { + "source": "npm:@types/through", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/ws": [ + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/yargs": [ + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yauzl": [ + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin": [ + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils@6.15.0": [ + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:@typescript-eslint/utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils@6.15.0": [ + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/parser": [ + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager": [ + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils": [ + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree@6.13.1": [ + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys@6.13.1": [ + { + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree": [ + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils": [ + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager@6.13.1": [ + { + "source": "npm:@typescript-eslint/scope-manager@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys": [ + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@verdaccio/commons-api": [ + { + "source": "npm:@verdaccio/commons-api", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:@verdaccio/commons-api", + "target": "npm:http-status-codes", + "type": "static" + } + ], + "npm:@verdaccio/config": [ + { + "source": "npm:@verdaccio/config", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:minimatch@7.4.6", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:yup", + "type": "static" + } + ], + "npm:minimatch@7.4.6": [ + { + "source": "npm:minimatch@7.4.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:@verdaccio/core": [ + { + "source": "npm:@verdaccio/core", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:http-status-codes", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@verdaccio/file-locking": [ + { + "source": "npm:@verdaccio/file-locking", + "target": "npm:lockfile", + "type": "static" + } + ], + "npm:@verdaccio/local-storage": [ + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/commons-api", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/file-locking", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/streams", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:async@3.2.4", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:lowdb", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:mkdirp@1.0.4", + "type": "static" + } + ], + "npm:@verdaccio/logger-7": [ + { + "source": "npm:@verdaccio/logger-7", + "target": "npm:@verdaccio/logger-commons", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-7", + "target": "npm:pino", + "type": "static" + } + ], + "npm:@verdaccio/logger-commons": [ + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:@verdaccio/logger-prettify", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@verdaccio/logger-prettify": [ + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:dayjs@1.11.7", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:pino-abstract-transport", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:sonic-boom", + "type": "static" + } + ], + "npm:@verdaccio/middleware": [ + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:express-rate-limit", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:mime@2.6.0", + "type": "static" + } + ], + "npm:@verdaccio/signature": [ + { + "source": "npm:@verdaccio/signature", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@verdaccio/tarball": [ + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@verdaccio/url": [ + { + "source": "npm:@verdaccio/url", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:validator@13.9.0", + "type": "static" + } + ], + "npm:@verdaccio/utils": [ + { + "source": "npm:@verdaccio/utils", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:minimatch@7.4.6", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@vitejs/plugin-basic-ssl": [ + { + "source": "npm:@vitejs/plugin-basic-ssl", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@webassemblyjs/ast": [ + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-numbers": [ + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754": [ + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128": [ + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit": [ + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen": [ + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt": [ + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser": [ + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer": [ + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@yarnpkg/parsers": [ + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@zkochan/js-yaml": [ + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse@2.0.1", + "type": "static" + } + ], + "npm:abort-controller": [ + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + } + ], + "npm:accepts": [ + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + } + ], + "npm:acorn-globals": [ + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + } + ], + "npm:acorn-import-assertions": [ + { + "source": "npm:acorn-import-assertions", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:acorn-jsx": [ + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:adjust-sourcemap-loader": [ + { + "source": "npm:adjust-sourcemap-loader", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:adjust-sourcemap-loader", + "target": "npm:regex-parser", + "type": "static" + } + ], + "npm:agent-base": [ + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + } + ], + "npm:aggregate-error": [ + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv-formats": [ + { + "source": "npm:ajv-formats", + "target": "npm:ajv", + "type": "static" + } + ], + "npm:ajv-keywords": [ + { + "source": "npm:ajv-keywords", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:ajv-keywords", + "target": "npm:fast-deep-equal", + "type": "static" + } + ], + "npm:ansi-escapes": [ + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:ansi-red": [ + { + "source": "npm:ansi-red", + "target": "npm:ansi-wrap", + "type": "static" + } + ], + "npm:ansi-styles": [ + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:anymatch": [ + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:argparse": [ + { + "source": "npm:argparse", + "target": "npm:sprintf-js", + "type": "static" + } + ], + "npm:aria-query": [ + { + "source": "npm:aria-query", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:array-buffer-byte-length": [ + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + } + ], + "npm:arraybuffer.prototype.slice": [ + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-shared-array-buffer", + "type": "static" + } + ], + "npm:asn1": [ + { + "source": "npm:asn1", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:autolinker": [ + { + "source": "npm:autolinker", + "target": "npm:gulp-header", + "type": "static" + } + ], + "npm:autoprefixer": [ + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:axios": [ + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + } + ], + "npm:axobject-query": [ + { + "source": "npm:axobject-query", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:babel-jest": [ + { + "source": "npm:babel-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + } + ], + "npm:babel-loader": [ + { + "source": "npm:babel-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:find-cache-dir@4.0.0": [ + { + "source": "npm:find-cache-dir@4.0.0", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir@4.0.0", + "target": "npm:pkg-dir@7.0.0", + "type": "static" + } + ], + "npm:find-up@6.3.0": [ + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + } + ], + "npm:locate-path@7.2.0": [ + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + } + ], + "npm:p-limit@4.0.0": [ + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + } + ], + "npm:p-locate@6.0.0": [ + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + } + ], + "npm:pkg-dir@7.0.0": [ + { + "source": "npm:pkg-dir@7.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + } + ], + "npm:babel-plugin-const-enum": [ + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse", + "type": "static" + } + ], + "npm:babel-plugin-istanbul": [ + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument@5.2.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + } + ], + "npm:istanbul-lib-instrument@5.2.1": [ + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:babel-plugin-jest-hoist": [ + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:babel-plugin-macros": [ + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs2": [ + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs3": [ + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-regenerator": [ + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + } + ], + "npm:babel-plugin-transform-typescript-metadata": [ + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:babel-preset-current-node-syntax": [ + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + } + ], + "npm:babel-preset-jest": [ + { + "source": "npm:babel-preset-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + } + ], + "npm:basic-auth": [ + { + "source": "npm:basic-auth", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:bcrypt-pbkdf": [ + { + "source": "npm:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:bin-check": [ + { + "source": "npm:bin-check", + "target": "npm:execa@0.7.0", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:executable", + "type": "static" + } + ], + "npm:cross-spawn@5.1.0": [ + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:lru-cache@4.1.5", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:execa@0.7.0": [ + { + "source": "npm:execa@0.7.0", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:get-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:strip-eof", + "type": "static" + } + ], + "npm:lru-cache@4.1.5": [ + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:pseudomap", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:yallist@2.1.2", + "type": "static" + } + ], + "npm:npm-run-path@2.0.2": [ + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key@2.0.1", + "type": "static" + } + ], + "npm:shebang-command@1.2.0": [ + { + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + } + ], + "npm:which@1.3.1": [ + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:bin-version": [ + { + "source": "npm:bin-version", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:find-versions", + "type": "static" + } + ], + "npm:bin-version-check": [ + { + "source": "npm:bin-version-check", + "target": "npm:bin-version", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver-truncate", + "type": "static" + } + ], + "npm:bl": [ + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream@3.6.2", + "type": "static" + } + ], + "npm:readable-stream@3.6.2": [ + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:body-parser": [ + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:debug@2.6.9": [ + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:on-finished@2.4.1": [ + { + "source": "npm:on-finished@2.4.1", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:qs@6.11.0": [ + { + "source": "npm:qs@6.11.0", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:bonjour-service": [ + { + "source": "npm:bonjour-service", + "target": "npm:array-flatten@2.1.2", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + } + ], + "npm:brace-expansion": [ + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:concat-map", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:browser-sync": [ + { + "source": "npm:browser-sync", + "target": "npm:browser-sync-client", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:browser-sync-ui", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:bs-recipes", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:dev-ip", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:easy-extender", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:eazy-logger", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:fs-extra@3.0.1", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:localtunnel", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:opn", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:portscanner", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:resp-modifier", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:rx", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:socket.io", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:ua-parser-js", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:browser-sync-client": [ + { + "source": "npm:browser-sync-client", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:mitt", + "type": "static" + } + ], + "npm:browser-sync-ui": [ + { + "source": "npm:browser-sync-ui", + "target": "npm:async-each-series", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:socket.io-client", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:stream-throttle", + "type": "static" + } + ], + "npm:fs-extra@3.0.1": [ + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:jsonfile@3.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + } + ], + "npm:jsonfile@3.0.1": [ + { + "source": "npm:jsonfile@3.0.1", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:browserslist": [ + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + } + ], + "npm:bs-logger": [ + { + "source": "npm:bs-logger", + "target": "npm:fast-json-stable-stringify", + "type": "static" + } + ], + "npm:bser": [ + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + } + ], + "npm:buffer": [ + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:builtins": [ + { + "source": "npm:builtins", + "target": "npm:semver", + "type": "static" + } + ], + "npm:cacache": [ + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:glob@10.3.10": [ + { + "source": "npm:glob@10.3.10", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:cacheable-request": [ + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:get-stream@5.2.0": [ + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:call-bind": [ + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + } + ], + "npm:caniuse-api": [ + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + } + ], + "npm:cardinal": [ + { + "source": "npm:cardinal", + "target": "npm:ansicolors", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:redeyed", + "type": "static" + } + ], + "npm:chalk": [ + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + } + ], + "npm:cli-table3": [ + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + } + ], + "npm:cli-truncate": [ + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:clipanion": [ + { + "source": "npm:clipanion", + "target": "npm:typanion", + "type": "static" + } + ], + "npm:cliui": [ + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + } + ], + "npm:wrap-ansi@7.0.0": [ + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], + "npm:clone-response": [ + { + "source": "npm:clone-response", + "target": "npm:mimic-response", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:columnify": [ + { + "source": "npm:columnify", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:combined-stream": [ + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + } + ], + "npm:compare-func": [ + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop", + "type": "static" + } + ], + "npm:compressible": [ + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:compression": [ + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + } + ], + "npm:concat-stream": [ + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + } + ], + "npm:concat-with-sourcemaps": [ + { + "source": "npm:concat-with-sourcemaps", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:config-chain": [ + { + "source": "npm:config-chain", + "target": "npm:ini@1.3.8", + "type": "static" + }, + { + "source": "npm:config-chain", + "target": "npm:proto-list", + "type": "static" + } + ], + "npm:connect": [ + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + } + ], + "npm:content-disposition": [ + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:conventional-changelog-angular": [ + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-conventionalcommits": [ + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-writer": [ + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split2", + "type": "static" + } + ], + "npm:conventional-commits-parser": [ + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + } + ], + "npm:cookies": [ + { + "source": "npm:cookies", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:keygrip", + "type": "static" + } + ], + "npm:copy-anything": [ + { + "source": "npm:copy-anything", + "target": "npm:is-what", + "type": "static" + } + ], + "npm:copy-webpack-plugin": [ + { + "source": "npm:copy-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@13.2.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:globby@13.2.2": [ + { + "source": "npm:globby@13.2.2", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:core-js-compat": [ + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + } + ], + "npm:cors": [ + { + "source": "npm:cors", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:vary", + "type": "static" + } + ], + "npm:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:create-jest": [ + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + } + ], + "npm:critters": [ + { + "source": "npm:critters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:pretty-bytes", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + } + ], + "npm:crypto-random-string": [ + { + "source": "npm:crypto-random-string", + "target": "npm:type-fest@1.4.0", + "type": "static" + } + ], + "npm:css-declaration-sorter": [ + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:css-loader": [ + { + "source": "npm:css-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:css-minimizer-webpack-plugin": [ + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-tree": [ + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:cssnano": [ + { + "source": "npm:cssnano", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + } + ], + "npm:cssnano-preset-default": [ + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + } + ], + "npm:cssnano-utils": [ + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:csso": [ + { + "source": "npm:csso", + "target": "npm:css-tree@2.2.1", + "type": "static" + } + ], + "npm:css-tree@2.2.1": [ + { + "source": "npm:css-tree@2.2.1", + "target": "npm:mdn-data@2.0.28", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:cssstyle": [ + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + } + ], + "npm:cypress": [ + { + "source": "npm:cypress", + "target": "npm:@cypress/request", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/xvfb", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/node@16.18.68", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sizzle", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:blob-util", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:eventemitter2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:getos", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:ospath", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:request-progress", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:untildify", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:yauzl", + "type": "static" + } + ], + "npm:execa@4.1.0": [ + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:fs-extra@9.1.0": [ + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:supports-color@8.1.1": [ + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:dashdash": [ + { + "source": "npm:dashdash", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:data-urls": [ + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms", + "type": "static" + } + ], + "npm:decompress-response": [ + { + "source": "npm:decompress-response", + "target": "npm:mimic-response@3.1.0", + "type": "static" + } + ], + "npm:default-gateway": [ + { + "source": "npm:default-gateway", + "target": "npm:execa", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + } + ], + "npm:define-data-property": [ + { + "source": "npm:define-data-property", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:define-properties": [ + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:detect-port": [ + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + } + ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:dns-packet": [ + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + } + ], + "npm:domexception": [ + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:dot-prop": [ + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + } + ], + "npm:duplexer2": [ + { + "source": "npm:duplexer2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:duplexify": [ + { + "source": "npm:duplexify", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:stream-shift", + "type": "static" + } + ], + "npm:easy-extender": [ + { + "source": "npm:easy-extender", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:eazy-logger": [ + { + "source": "npm:eazy-logger", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:ecc-jsbn": [ + { + "source": "npm:ecc-jsbn", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:ecdsa-sig-formatter": [ + { + "source": "npm:ecdsa-sig-formatter", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:ejs": [ + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + } + ], + "npm:encoding": [ + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + } + ], + "npm:end-of-stream": [ + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + } + ], + "npm:engine.io": [ + { + "source": "npm:engine.io", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cookie@0.4.2", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:ws@8.11.0", + "type": "static" + } + ], + "npm:engine.io-client": [ + { + "source": "npm:engine.io-client", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:ws@8.11.0", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:xmlhttprequest-ssl", + "type": "static" + } + ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:enquirer": [ + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + } + ], + "npm:env-ci": [ + { + "source": "npm:env-ci", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:env-ci", + "target": "npm:java-properties", + "type": "static" + } + ], + "npm:errno": [ + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:errorhandler": [ + { + "source": "npm:errorhandler", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:escape-html", + "type": "static" + } + ], + "npm:es-abstract": [ + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:es-set-tostringtag": [ + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:es-to-primitive": [ + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:esbuild": [ + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ia32", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-loong64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-mips64el", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ppc64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-riscv64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-s390x", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/sunos-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-ia32", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-x64", + "type": "static" + } + ], + "npm:escodegen": [ + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:eslint": [ + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:find-up@5.0.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals@13.24.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + } + ], + "npm:eslint-config-prettier": [ + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "type": "static" + } + ], + "npm:eslint-plugin-cypress": [ + { + "source": "npm:eslint-plugin-cypress", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-cypress", + "target": "npm:globals@13.24.0", + "type": "static" + } + ], + "npm:eslint-scope": [ + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:find-up@5.0.0": [ + { + "source": "npm:find-up@5.0.0", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up@5.0.0", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:locate-path@6.0.0": [ + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + } + ], + "npm:p-locate@5.0.0": [ + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:espree": [ + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:executable": [ + { + "source": "npm:executable", + "target": "npm:pify", + "type": "static" + } + ], + "npm:expand-range": [ + { + "source": "npm:expand-range", + "target": "npm:fill-range@2.2.4", + "type": "static" + } + ], + "npm:fill-range@2.2.4": [ + { + "source": "npm:fill-range@2.2.4", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:isobject@2.1.0", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:randomatic", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:repeat-element", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:isobject@2.1.0": [ + { + "source": "npm:isobject@2.1.0", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:expect": [ + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:express": [ + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser@1.20.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler@1.2.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send@0.18.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static@1.15.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + } + ], + "npm:express-urlrewrite": [ + { + "source": "npm:express-urlrewrite", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:express-urlrewrite", + "target": "npm:path-to-regexp@1.8.0", + "type": "static" + } + ], + "npm:path-to-regexp@1.8.0": [ + { + "source": "npm:path-to-regexp@1.8.0", + "target": "npm:isarray@0.0.1", + "type": "static" + } + ], + "npm:body-parser@1.20.1": [ + { + "source": "npm:body-parser@1.20.1", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:raw-body@2.5.1", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:finalhandler@1.2.0": [ + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:raw-body@2.5.1": [ + { + "source": "npm:raw-body@2.5.1", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:send@0.18.0": [ + { + "source": "npm:send@0.18.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:statuses@2.0.1", + "type": "static" + } + ], + "npm:serve-static@1.15.0": [ + { + "source": "npm:serve-static@1.15.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:send@0.18.0", + "type": "static" + } + ], + "npm:ext-list": [ + { + "source": "npm:ext-list", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:ext-name": [ + { + "source": "npm:ext-name", + "target": "npm:ext-list", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:sort-keys-length", + "type": "static" + } + ], + "npm:extend-shallow": [ + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + } + ], + "npm:external-editor": [ + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + } + ], + "npm:tmp@0.0.33": [ + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:extract-zip": [ + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + } + ], + "npm:fast-glob": [ + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:faye-websocket": [ + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:fb-watchman": [ + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + } + ], + "npm:fd-slicer": [ + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + } + ], + "npm:figures": [ + { + "source": "npm:figures", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + } + ], + "npm:file-entry-cache": [ + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + } + ], + "npm:file-type": [ + { + "source": "npm:file-type", + "target": "npm:readable-web-to-node-stream", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:strtok3", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:token-types", + "type": "static" + } + ], + "npm:filelist": [ + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + } + ], + "npm:minimatch@5.1.6": [ + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:filenamify": [ + { + "source": "npm:filenamify", + "target": "npm:filename-reserved-regex", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:strip-outer", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:trim-repeated", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + } + ], + "npm:finalhandler": [ + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:find-cache-dir": [ + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-versions": [ + { + "source": "npm:find-versions", + "target": "npm:semver-regex", + "type": "static" + } + ], + "npm:flat-cache": [ + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:for-each": [ + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:foreground-child": [ + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.1.0", + "type": "static" + } + ], + "npm:fork-ts-checker-webpack-plugin": [ + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:ajv-keywords@3.5.2": [ + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv@6.12.6", + "type": "static" + } + ], + "npm:fs-extra@10.1.0": [ + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:schema-utils@3.3.0": [ + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + } + ], + "npm:form-data": [ + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:from2": [ + { + "source": "npm:from2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:fs-extra": [ + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:function.prototype.name": [ + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + } + ], + "npm:get-intrinsic": [ + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:getos": [ + { + "source": "npm:getos", + "target": "npm:async", + "type": "static" + } + ], + "npm:getpass": [ + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:git-log-parser": [ + { + "source": "npm:git-log-parser", + "target": "npm:argv-formatter", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:spawn-error-forwarder", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:split2@1.0.0", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:stream-combiner2", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:traverse", + "type": "static" + } + ], + "npm:split2@1.0.0": [ + { + "source": "npm:split2@1.0.0", + "target": "npm:through2", + "type": "static" + } + ], + "npm:glob": [ + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:global-dirs": [ + { + "source": "npm:global-dirs", + "target": "npm:ini@2.0.0", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + } + ], + "npm:gopd": [ + { + "source": "npm:gopd", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:got": [ + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:gray-matter": [ + { + "source": "npm:gray-matter", + "target": "npm:ansi-red", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:coffee-script", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:toml", + "type": "static" + } + ], + "npm:gulp-header": [ + { + "source": "npm:gulp-header", + "target": "npm:concat-with-sourcemaps", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:lodash.template", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:through2", + "type": "static" + } + ], + "npm:gzip-size": [ + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + } + ], + "npm:handlebars": [ + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + } + ], + "npm:has-property-descriptors": [ + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:hasown": [ + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:hdr-histogram-js": [ + { + "source": "npm:hdr-histogram-js", + "target": "npm:@assemblyscript/loader", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:pako", + "type": "static" + } + ], + "npm:hosted-git-info": [ + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache@10.1.0", + "type": "static" + } + ], + "npm:hpack.js": [ + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:html-encoding-sniffer": [ + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + } + ], + "npm:htmlparser2": [ + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities", + "type": "static" + } + ], + "npm:http-errors": [ + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + } + ], + "npm:http-proxy": [ + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:http-proxy-agent": [ + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:agent-base@6.0.2": [ + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-middleware": [ + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:http-server": [ + { + "source": "npm:http-server", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:corser", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:secure-compare", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:union", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:url-join", + "type": "static" + } + ], + "npm:http-signature": [ + { + "source": "npm:http-signature", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:jsprim", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:sshpk", + "type": "static" + } + ], + "npm:http2-wrapper": [ + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + } + ], + "npm:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:icss-utils": [ + { + "source": "npm:icss-utils", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:identity-obj-proxy": [ + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + } + ], + "npm:ignore-walk": [ + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@9.0.3", + "type": "static" + } + ], + "npm:import-fresh": [ + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + } + ], + "npm:import-from-esm": [ + { + "source": "npm:import-from-esm", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:import-from-esm", + "target": "npm:import-meta-resolve", + "type": "static" + } + ], + "npm:import-local": [ + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + } + ], + "npm:inflight": [ + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:inquirer": [ + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:inquirer-autocomplete-prompt": [ + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:into-stream": [ + { + "source": "npm:into-stream", + "target": "npm:from2", + "type": "static" + }, + { + "source": "npm:into-stream", + "target": "npm:p-is-promise", + "type": "static" + } + ], + "npm:is-array-buffer": [ + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:is-bigint": [ + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + } + ], + "npm:is-binary-path": [ + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + } + ], + "npm:is-boolean-object": [ + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-ci": [ + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + } + ], + "npm:is-core-module": [ + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:is-date-object": [ + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-glob": [ + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-installed-globally": [ + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + } + ], + "npm:is-number": [ + { + "source": "npm:is-number", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:is-number-like": [ + { + "source": "npm:is-number-like", + "target": "npm:lodash.isfinite", + "type": "static" + } + ], + "npm:is-number-object": [ + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-plain-object": [ + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:is-regex": [ + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-shared-array-buffer": [ + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-symbol": [ + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:is-text-path": [ + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + } + ], + "npm:is-typed-array": [ + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:is-weakref": [ + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-wsl": [ + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + } + ], + "npm:issue-parser": [ + { + "source": "npm:issue-parser", + "target": "npm:lodash.capitalize", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.escaperegexp", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.uniqby", + "type": "static" + } + ], + "npm:istanbul-lib-instrument": [ + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + } + ], + "npm:istanbul-lib-report": [ + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:make-dir@4.0.0": [ + { + "source": "npm:make-dir@4.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:istanbul-lib-source-maps": [ + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:istanbul-reports": [ + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + } + ], + "npm:jackspeak": [ + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + } + ], + "npm:jake": [ + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch@3.1.2", + "type": "static" + } + ], + "npm:jest": [ + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + } + ], + "npm:jest-changed-files": [ + { + "source": "npm:jest-changed-files", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:jest-circus": [ + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent@1.5.1", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:babel-plugin-macros@3.1.0": [ + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:dedent@1.5.1": [ + { + "source": "npm:dedent@1.5.1", + "target": "npm:babel-plugin-macros@3.1.0", + "type": "static" + } + ], + "npm:jest-cli": [ + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:jest-config": [ + { + "source": "npm:jest-config", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:jest-diff": [ + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-docblock": [ + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline", + "type": "static" + } + ], + "npm:jest-each": [ + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-environment-jsdom": [ + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + } + ], + "npm:jest-environment-node": [ + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-haste-map": [ + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:jest-leak-detector": [ + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-matcher-utils": [ + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-message-util": [ + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-mock": [ + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-pnp-resolver": [ + { + "source": "npm:jest-pnp-resolver", + "target": "npm:jest-resolve", + "type": "static" + } + ], + "npm:jest-preset-angular": [ + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/platform-browser-dynamic", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:esbuild-wasm", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:ts-jest", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:esbuild", + "type": "static" + } + ], + "npm:jest-resolve": [ + { + "source": "npm:jest-resolve", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports@2.0.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + } + ], + "npm:jest-resolve-dependencies": [ + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:jest-runner": [ + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + } + ], + "npm:source-map-support@0.5.13": [ + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:jest-runtime": [ + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:jest-snapshot": [ + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jest-util": [ + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:jest-validate": [ + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-watcher": [ + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + } + ], + "npm:jest-worker": [ + { + "source": "npm:jest-worker", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:jsdom": [ + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent@5.0.1", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:form-data@4.0.0": [ + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:https-proxy-agent@5.0.1": [ + { + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:debug", + "type": "static" + } + ], + "npm:json-parse-helpfulerror": [ + { + "source": "npm:json-parse-helpfulerror", + "target": "npm:jju", + "type": "static" + } + ], + "npm:json-server": [ + { + "source": "npm:json-server", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:connect-pause", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:errorhandler", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:express-urlrewrite", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:json-parse-helpfulerror", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lodash-id", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lowdb", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:method-override", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:morgan", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:jsonc-eslint-parser": [ + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:JSONStream": [ + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + } + ], + "npm:jsonwebtoken": [ + { + "source": "npm:jsonwebtoken", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isboolean", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isinteger", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isnumber", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jsprim": [ + { + "source": "npm:jsprim", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:verror", + "type": "static" + } + ], + "npm:jwa": [ + { + "source": "npm:jwa", + "target": "npm:buffer-equal-constant-time", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:ecdsa-sig-formatter", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:jws": [ + { + "source": "npm:jws", + "target": "npm:jwa", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:karma-source-map-support": [ + { + "source": "npm:karma-source-map-support", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:keygrip": [ + { + "source": "npm:keygrip", + "target": "npm:tsscmp", + "type": "static" + } + ], + "npm:keyv": [ + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + } + ], + "npm:kind-of": [ + { + "source": "npm:kind-of", + "target": "npm:is-buffer", + "type": "static" + } + ], + "npm:launch-editor": [ + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + } + ], + "npm:lazy-cache": [ + { + "source": "npm:lazy-cache", + "target": "npm:set-getter", + "type": "static" + } + ], + "npm:less": [ + { + "source": "npm:less", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:less-loader": [ + { + "source": "npm:less-loader", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:klona", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:license-webpack-plugin": [ + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:lint-staged": [ + { + "source": "npm:lint-staged", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@7.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:lilconfig@2.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2@6.6.1", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:yaml@2.3.1", + "type": "static" + } + ], + "npm:ansi-escapes@5.0.0": [ + { + "source": "npm:ansi-escapes@5.0.0", + "target": "npm:type-fest@1.4.0", + "type": "static" + } + ], + "npm:cli-cursor@4.0.0": [ + { + "source": "npm:cli-cursor@4.0.0", + "target": "npm:restore-cursor@4.0.0", + "type": "static" + } + ], + "npm:cli-truncate@3.1.0": [ + { + "source": "npm:cli-truncate@3.1.0", + "target": "npm:slice-ansi@5.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate@3.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + } + ], + "npm:execa@7.2.0": [ + { + "source": "npm:execa@7.2.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + } + ], + "npm:listr2@6.6.1": [ + { + "source": "npm:listr2@6.6.1", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:cli-truncate@3.1.0", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:eventemitter3@5.0.1", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:log-update@5.0.1", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:log-update@5.0.1": [ + { + "source": "npm:log-update@5.0.1", + "target": "npm:ansi-escapes@5.0.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:cli-cursor@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:slice-ansi@5.0.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:restore-cursor@4.0.0": [ + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + } + ], + "npm:slice-ansi@5.0.0": [ + { + "source": "npm:slice-ansi@5.0.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi@5.0.0", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + } + ], + "npm:list-item": [ + { + "source": "npm:list-item", + "target": "npm:expand-range", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:listr2": [ + { + "source": "npm:listr2", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + } + ], + "npm:load-json-file": [ + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + } + ], + "npm:parse-json@4.0.0": [ + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + } + ], + "npm:localtunnel": [ + { + "source": "npm:localtunnel", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:debug@4.3.2", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:openurl", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:yargs@17.1.1", + "type": "static" + } + ], + "npm:cliui@7.0.4": [ + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + } + ], + "npm:debug@4.3.2": [ + { + "source": "npm:debug@4.3.2", + "target": "npm:ms", + "type": "static" + } + ], + "npm:yargs@17.1.1": [ + { + "source": "npm:yargs@17.1.1", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + } + ], + "npm:lockfile": [ + { + "source": "npm:lockfile", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:lodash.template": [ + { + "source": "npm:lodash.template", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.templatesettings", + "type": "static" + } + ], + "npm:lodash.templatesettings": [ + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash._reinterpolate", + "type": "static" + } + ], + "npm:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + } + ], + "npm:log-update": [ + { + "source": "npm:log-update", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:slice-ansi@4.0.0": [ + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:lowdb": [ + { + "source": "npm:lowdb", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:steno", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:magic-string": [ + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:make-dir": [ + { + "source": "npm:make-dir", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:make-fetch-happen": [ + { + "source": "npm:make-fetch-happen", + "target": "npm:@npmcli/agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:makeerror": [ + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + } + ], + "npm:markdown-toc": [ + { + "source": "npm:markdown-toc", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:diacritics-map", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:gray-matter", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:lazy-cache", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:list-item", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:markdown-link", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:mixin-deep", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:remarkable", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:strip-color", + "type": "static" + } + ], + "npm:marked-terminal": [ + { + "source": "npm:marked-terminal", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cardinal", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:supports-hyperlinks", + "type": "static" + } + ], + "npm:ansi-escapes@6.2.0": [ + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.13.1", + "type": "static" + } + ], + "npm:memfs": [ + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + } + ], + "npm:method-override": [ + { + "source": "npm:method-override", + "target": "npm:debug@3.1.0", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:vary", + "type": "static" + } + ], + "npm:debug@3.1.0": [ + { + "source": "npm:debug@3.1.0", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:mini-css-extract-plugin": [ + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-fetch": [ + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-flush": [ + { + "source": "npm:minipass-flush", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass@3.3.6": [ + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:minipass-json-stream": [ + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-pipeline": [ + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-sized": [ + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:mixin-deep": [ + { + "source": "npm:mixin-deep", + "target": "npm:for-in", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:is-extendable@1.0.1", + "type": "static" + } + ], + "npm:is-extendable@1.0.1": [ + { + "source": "npm:is-extendable@1.0.1", + "target": "npm:is-plain-object", + "type": "static" + } + ], + "npm:mkdirp": [ + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:morgan": [ + { + "source": "npm:morgan", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:on-headers", + "type": "static" + } + ], + "npm:multicast-dns": [ + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + } + ], + "npm:mv": [ + { + "source": "npm:mv", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:ncp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:rimraf@2.4.5", + "type": "static" + } + ], + "npm:glob@6.0.4": [ + { + "source": "npm:glob@6.0.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:rimraf@2.4.5": [ + { + "source": "npm:rimraf@2.4.5", + "target": "npm:glob@6.0.4", + "type": "static" + } + ], + "npm:needle": [ + { + "source": "npm:needle", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:sax", + "type": "static" + } + ], + "npm:nice-napi": [ + { + "source": "npm:nice-napi", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:nice-napi", + "target": "npm:node-gyp-build", + "type": "static" + } + ], + "npm:node-emoji": [ + { + "source": "npm:node-emoji", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:emojilib", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:skin-tone", + "type": "static" + } + ], + "npm:node-fetch": [ + { + "source": "npm:node-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + } + ], + "npm:whatwg-url@5.0.0": [ + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + } + ], + "npm:node-gyp": [ + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:exponential-backoff", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:nopt": [ + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + } + ], + "npm:normalize-package-data": [ + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:npm": [ + { + "source": "npm:npm", + "target": "npm:@isaacs/string-locale-compare@1.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/config@8.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/package-json@5.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:archy@1.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cli-columns@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:fastest-levenshtein@1.0.16", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:init-package-json@6.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:is-cidr@5.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmaccess@8.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmdiff@6.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmexec@7.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmfund@5.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmhook@10.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmorg@6.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmpack@6.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmpublish@9.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmsearch@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmteam@6.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmversion@5.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-audit-report@5.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-profile@9.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-user-validate@2.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:parse-conflict-json@3.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:qrcode-terminal@0.12.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:supports-color@9.4.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:tiny-relative-date@1.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:treeverse@3.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + } + ], + "npm:npm-bundled": [ + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-install-checks": [ + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-package-arg": [ + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:npm-packlist": [ + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + } + ], + "npm:npm-pick-manifest": [ + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-registry-fetch": [ + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + } + ], + "npm:npm-run-all": [ + { + "source": "npm:npm-run-all", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:memorystream", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:pidtree@0.3.1", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:string.prototype.padend", + "type": "static" + } + ], + "npm:cross-spawn@6.0.5": [ + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key@2.0.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key", + "type": "static" + } + ], + "npm:@npmcli/arborist@7.2.2": [ + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@isaacs/string-locale-compare@1.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/metavuln-calculator@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/name-from-folder@2.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/package-json@5.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/query@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:bin-links@4.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:common-ancestor-path@1.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:json-stringify-nice@1.1.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:parse-conflict-json@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:promise-all-reject-late@1.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:promise-call-limit@1.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:treeverse@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/config@8.0.3": [ + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/disparity-colors@3.0.0": [ + { + "source": "npm:@npmcli/disparity-colors@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + } + ], + "npm:@npmcli/map-workspaces@3.0.4": [ + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:@npmcli/name-from-folder@2.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:read-package-json-fast", + "type": "static" + } + ], + "npm:@npmcli/metavuln-calculator@7.0.0": [ + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/package-json@5.0.0": [ + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/query@3.0.1": [ + { + "source": "npm:@npmcli/query@3.0.1", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:are-we-there-yet@4.0.1": [ + { + "source": "npm:are-we-there-yet@4.0.1", + "target": "npm:delegates@1.0.0", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@4.0.1", + "target": "npm:readable-stream@4.4.2", + "type": "static" + } + ], + "npm:bin-links@4.0.3": [ + { + "source": "npm:bin-links@4.0.3", + "target": "npm:cmd-shim@6.0.2", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:read-cmd-shim@4.0.0", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + } + ], + "npm:buffer@6.0.3": [ + { + "source": "npm:buffer@6.0.3", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:cidr-regex@4.0.3": [ + { + "source": "npm:cidr-regex@4.0.3", + "target": "npm:ip-regex@5.0.0", + "type": "static" + } + ], + "npm:cli-columns@4.0.0": [ + { + "source": "npm:cli-columns@4.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-columns@4.0.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:gauge@5.0.1": [ + { + "source": "npm:gauge@5.0.1", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:color-support@1.1.3", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:console-control-strings@1.1.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:has-unicode@2.0.1", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:wide-align@1.1.5", + "type": "static" + } + ], + "npm:init-package-json@6.0.0": [ + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:promzard@1.0.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:is-cidr@5.0.3": [ + { + "source": "npm:is-cidr@5.0.3", + "target": "npm:cidr-regex@4.0.3", + "type": "static" + } + ], + "npm:libnpmaccess@8.0.2": [ + { + "source": "npm:libnpmaccess@8.0.2", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmaccess@8.0.2", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmdiff@6.0.4": [ + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/disparity-colors@3.0.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:diff@5.1.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:tar", + "type": "static" + } + ], + "npm:libnpmexec@7.0.5": [ + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + } + ], + "npm:libnpmfund@5.0.2": [ + { + "source": "npm:libnpmfund@5.0.2", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + } + ], + "npm:libnpmhook@10.0.1": [ + { + "source": "npm:libnpmhook@10.0.1", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:libnpmhook@10.0.1", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmorg@6.0.2": [ + { + "source": "npm:libnpmorg@6.0.2", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:libnpmorg@6.0.2", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmpack@6.0.4": [ + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:pacote@17.0.5", + "type": "static" + } + ], + "npm:libnpmpublish@9.0.3": [ + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:libnpmsearch@7.0.1": [ + { + "source": "npm:libnpmsearch@7.0.1", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmteam@6.0.1": [ + { + "source": "npm:libnpmteam@6.0.1", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:libnpmteam@6.0.1", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmversion@5.0.2": [ + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-profile@9.0.0": [ + { + "source": "npm:npm-profile@9.0.0", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:npm-profile@9.0.0", + "target": "npm:proc-log", + "type": "static" + } + ], + "npm:npmlog@7.0.1": [ + { + "source": "npm:npmlog@7.0.1", + "target": "npm:are-we-there-yet@4.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:console-control-strings@1.1.0", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:gauge@5.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:set-blocking@2.0.0", + "type": "static" + } + ], + "npm:p-map": [ + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:pacote@17.0.5": [ + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:tar", + "type": "static" + } + ], + "npm:parse-conflict-json@3.0.1": [ + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:just-diff@6.0.2", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:just-diff-apply@5.5.0", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:promise-retry": [ + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:promzard@1.0.0": [ + { + "source": "npm:promzard@1.0.0", + "target": "npm:read@2.1.0", + "type": "static" + } + ], + "npm:read@2.1.0": [ + { + "source": "npm:read@2.1.0", + "target": "npm:mute-stream@1.0.0", + "type": "static" + } + ], + "npm:read-package-json": [ + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:read-package-json-fast": [ + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:readable-stream@4.4.2": [ + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:string_decoder@1.3.0", + "type": "static" + } + ], + "npm:semver": [ + { + "source": "npm:semver", + "target": "npm:lru-cache@6.0.0", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:sigstore": [ + { + "source": "npm:sigstore", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/sign", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + } + ], + "npm:socks": [ + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + } + ], + "npm:socks-proxy-agent": [ + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + } + ], + "npm:spdx-correct": [ + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:spdx-expression-parse": [ + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:string_decoder@1.3.0": [ + { + "source": "npm:string_decoder@1.3.0", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:string-width": [ + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width-cjs": [ + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:tar": [ + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:fs-minipass@2.1.0": [ + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:tuf-js": [ + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:validate-npm-package-license": [ + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + } + ], + "npm:validate-npm-package-name": [ + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + } + ], + "npm:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:wide-align@1.1.5": [ + { + "source": "npm:wide-align@1.1.5", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:wrap-ansi-cjs": [ + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:write-file-atomic@5.0.1": [ + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + } + ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:nx": [ + { + "source": "npm:nx", + "target": "npm:@swc-node/register", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nrwl/tao", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios@1.6.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + } + ], + "npm:nx-release": [ + { + "source": "npm:nx-release", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:@nx/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:process", + "type": "static" + } + ], + "npm:@nrwl/devkit@16.5.0": [ + { + "source": "npm:@nrwl/devkit@16.5.0", + "target": "npm:@nx/devkit@16.5.0", + "type": "static" + } + ], + "npm:@nx/devkit@16.5.0": [ + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:@nrwl/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:axios@1.6.2": [ + { + "source": "npm:axios@1.6.2", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios@1.6.2", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.6.2", + "target": "npm:proxy-from-env@1.1.0", + "type": "static" + } + ], + "npm:glob@7.1.4": [ + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:object.assign": [ + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.pick": [ + { + "source": "npm:object.pick", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:on-finished": [ + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:open": [ + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:opn": [ + { + "source": "npm:opn", + "target": "npm:is-wsl@1.1.0", + "type": "static" + } + ], + "npm:optionator": [ + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:ora": [ + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:os-filter-obj": [ + { + "source": "npm:os-filter-obj", + "target": "npm:arch", + "type": "static" + } + ], + "npm:p-filter": [ + { + "source": "npm:p-filter", + "target": "npm:p-map@5.5.0", + "type": "static" + } + ], + "npm:aggregate-error@4.0.1": [ + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:clean-stack@4.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:indent-string@5.0.0", + "type": "static" + } + ], + "npm:clean-stack@4.2.0": [ + { + "source": "npm:clean-stack@4.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:p-map@5.5.0": [ + { + "source": "npm:p-map@5.5.0", + "target": "npm:aggregate-error@4.0.1", + "type": "static" + } + ], + "npm:p-limit": [ + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + } + ], + "npm:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-limit@2.3.0": [ + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + } + ], + "npm:pacote": [ + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + } + ], + "npm:parent-module": [ + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parse-json": [ + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + } + ], + "npm:parse5-html-rewriting-stream": [ + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:parse5-sax-parser", + "type": "static" + } + ], + "npm:parse5-sax-parser": [ + { + "source": "npm:parse5-sax-parser", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:pino": [ + { + "source": "npm:pino", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:fast-redact", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:on-exit-leak-free", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-abstract-transport@0.5.0", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-std-serializers", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:quick-format-unescaped", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:sonic-boom@2.8.0", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:thread-stream", + "type": "static" + } + ], + "npm:pino-abstract-transport": [ + { + "source": "npm:pino-abstract-transport", + "target": "npm:readable-stream@4.5.1", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport", + "target": "npm:split2", + "type": "static" + } + ], + "npm:readable-stream@4.5.1": [ + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:string_decoder@1.3.0", + "type": "static" + } + ], + "npm:pino-abstract-transport@0.5.0": [ + { + "source": "npm:pino-abstract-transport@0.5.0", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport@0.5.0", + "target": "npm:split2", + "type": "static" + } + ], + "npm:sonic-boom@2.8.0": [ + { + "source": "npm:sonic-boom@2.8.0", + "target": "npm:atomic-sleep", + "type": "static" + } + ], + "npm:piscina": [ + { + "source": "npm:piscina", + "target": "npm:eventemitter-asyncresource", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:hdr-histogram-js", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:hdr-histogram-percentiles-obj", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:nice-napi", + "type": "static" + } + ], + "npm:pkg-conf": [ + { + "source": "npm:pkg-conf", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:pkg-conf", + "target": "npm:load-json-file", + "type": "static" + } + ], + "npm:find-up@2.1.0": [ + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + } + ], + "npm:locate-path@2.0.0": [ + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + } + ], + "npm:p-limit@1.3.0": [ + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + } + ], + "npm:p-locate@2.0.0": [ + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + } + ], + "npm:pkg-dir": [ + { + "source": "npm:pkg-dir", + "target": "npm:find-up", + "type": "static" + } + ], + "npm:please-upgrade-node": [ + { + "source": "npm:please-upgrade-node", + "target": "npm:semver-compare", + "type": "static" + } + ], + "npm:portfinder": [ + { + "source": "npm:portfinder", + "target": "npm:async@2.6.4", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:mkdirp", + "type": "static" + } + ], + "npm:async@2.6.4": [ + { + "source": "npm:async@2.6.4", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:portscanner": [ + { + "source": "npm:portscanner", + "target": "npm:async@2.6.4", + "type": "static" + }, + { + "source": "npm:portscanner", + "target": "npm:is-number-like", + "type": "static" + } + ], + "npm:postcss": [ + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:postcss-calc": [ + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-colormin": [ + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-convert-values": [ + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-discard-comments": [ + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-duplicates": [ + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-empty": [ + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-overridden": [ + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-import": [ + { + "source": "npm:postcss-import", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:read-cache", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:postcss-loader": [ + { + "source": "npm:postcss-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:cosmiconfig@8.3.6": [ + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:postcss-merge-longhand": [ + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + } + ], + "npm:postcss-merge-rules": [ + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-minify-font-values": [ + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-gradients": [ + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-params": [ + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-selectors": [ + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-extract-imports": [ + { + "source": "npm:postcss-modules-extract-imports", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default": [ + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-modules-scope": [ + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-values": [ + { + "source": "npm:postcss-modules-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + } + ], + "npm:postcss-normalize-charset": [ + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-normalize-display-values": [ + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-positions": [ + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-repeat-style": [ + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-string": [ + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-timing-functions": [ + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-unicode": [ + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-url": [ + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-whitespace": [ + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-ordered-values": [ + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-reduce-initial": [ + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + } + ], + "npm:postcss-reduce-transforms": [ + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-svgo": [ + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:postcss-unique-selectors": [ + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:pretty-format": [ + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:prompts": [ + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + } + ], + "npm:proxy-addr": [ + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:qs": [ + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:randomatic": [ + { + "source": "npm:randomatic", + "target": "npm:is-number@4.0.0", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:math-random", + "type": "static" + } + ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:raw-body": [ + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:rc": [ + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini@1.3.8", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + } + ], + "npm:read-cache": [ + { + "source": "npm:read-cache", + "target": "npm:pify", + "type": "static" + } + ], + "npm:read-pkg": [ + { + "source": "npm:read-pkg", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + } + ], + "npm:read-pkg-up": [ + { + "source": "npm:read-pkg-up", + "target": "npm:find-up-simple", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@9.0.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@4.8.3", + "type": "static" + } + ], + "npm:normalize-package-data@2.5.0": [ + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:path-type@3.0.0": [ + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-web-to-node-stream": [ + { + "source": "npm:readable-web-to-node-stream", + "target": "npm:readable-stream@3.6.2", + "type": "static" + } + ], + "npm:readdirp": [ + { + "source": "npm:readdirp", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:redeyed": [ + { + "source": "npm:redeyed", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:regenerate-unicode-properties": [ + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + } + ], + "npm:regenerator-transform": [ + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:regexp.prototype.flags": [ + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:regexpu-core": [ + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + } + ], + "npm:registry-auth-token": [ + { + "source": "npm:registry-auth-token", + "target": "npm:@pnpm/npm-conf", + "type": "static" + } + ], + "npm:regjsparser": [ + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + } + ], + "npm:remarkable": [ + { + "source": "npm:remarkable", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:remarkable", + "target": "npm:autolinker", + "type": "static" + } + ], + "npm:replace-json-property": [ + { + "source": "npm:replace-json-property", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:jsonfile@5.0.0", + "type": "static" + } + ], + "npm:jsonfile@5.0.0": [ + { + "source": "npm:jsonfile@5.0.0", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:jsonfile@5.0.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:request-progress": [ + { + "source": "npm:request-progress", + "target": "npm:throttleit", + "type": "static" + } + ], + "npm:resolve": [ + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve-url-loader": [ + { + "source": "npm:resolve-url-loader", + "target": "npm:adjust-sourcemap-loader", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:resp-modifier": [ + { + "source": "npm:resp-modifier", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:resp-modifier", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:responselike": [ + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + } + ], + "npm:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:rimraf": [ + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rollup": [ + { + "source": "npm:rollup", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:run-parallel": [ + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + } + ], + "npm:rxjs": [ + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:safe-array-concat": [ + { + "source": "npm:safe-array-concat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:isarray@2.0.5", + "type": "static" + } + ], + "npm:safe-regex-test": [ + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + } + ], + "npm:sass": [ + { + "source": "npm:sass", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable@4.3.4", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:sass-loader": [ + { + "source": "npm:sass-loader", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + } + ], + "npm:saxes": [ + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + } + ], + "npm:schema-utils": [ + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:selfsigned": [ + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + } + ], + "npm:semantic-release": [ + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/commit-analyzer", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/github", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/npm", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/release-notes-generator", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:env-ci", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:figures@6.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:find-versions", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:git-log-parser", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:hook-std", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:marked-terminal", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:p-each-series", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:p-reduce@3.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:signale", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:figures@6.0.1": [ + { + "source": "npm:figures@6.0.1", + "target": "npm:is-unicode-supported@2.0.0", + "type": "static" + } + ], + "npm:semver-diff": [ + { + "source": "npm:semver-diff", + "target": "npm:semver", + "type": "static" + } + ], + "npm:semver-truncate": [ + { + "source": "npm:semver-truncate", + "target": "npm:semver", + "type": "static" + } + ], + "npm:send": [ + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy@1.0.4", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime@1.4.1", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses@1.4.0", + "type": "static" + } + ], + "npm:http-errors@1.6.3": [ + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.4.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + } + ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serve-index": [ + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + } + ], + "npm:serve-static": [ + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + } + ], + "npm:set-function-length": [ + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-function-name": [ + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-getter": [ + { + "source": "npm:set-getter", + "target": "npm:to-object-path", + "type": "static" + } + ], + "npm:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of@6.0.3", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + } + ], + "npm:signale": [ + { + "source": "npm:signale", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:figures@2.0.0", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:pkg-conf", + "type": "static" + } + ], + "npm:figures@2.0.0": [ + { + "source": "npm:figures@2.0.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + } + ], + "npm:skin-tone": [ + { + "source": "npm:skin-tone", + "target": "npm:unicode-emoji-modifier-base", + "type": "static" + } + ], + "npm:slice-ansi": [ + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:socket.io": [ + { + "source": "npm:socket.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:engine.io", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-adapter", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-parser", + "type": "static" + } + ], + "npm:socket.io-adapter": [ + { + "source": "npm:socket.io-adapter", + "target": "npm:ws@8.11.0", + "type": "static" + } + ], + "npm:socket.io-client": [ + { + "source": "npm:socket.io-client", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-client", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io-client", + "target": "npm:engine.io-client", + "type": "static" + }, + { + "source": "npm:socket.io-client", + "target": "npm:socket.io-parser", + "type": "static" + } + ], + "npm:socket.io-parser": [ + { + "source": "npm:socket.io-parser", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:sockjs": [ + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:sonic-boom": [ + { + "source": "npm:sonic-boom", + "target": "npm:atomic-sleep", + "type": "static" + } + ], + "npm:sort-keys": [ + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + } + ], + "npm:sort-keys-length": [ + { + "source": "npm:sort-keys-length", + "target": "npm:sort-keys", + "type": "static" + } + ], + "npm:source-map-explorer": [ + { + "source": "npm:source-map-explorer", + "target": "npm:btoa", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:temp", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:open@7.4.2": [ + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:yargs@16.2.0": [ + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:source-map-loader": [ + { + "source": "npm:source-map-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:source-map-support": [ + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:spdy": [ + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + } + ], + "npm:spdy-transport": [ + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:sshpk": [ + { + "source": "npm:sshpk", + "target": "npm:asn1", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:dashdash", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:getpass", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:stack-utils": [ + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:steno": [ + { + "source": "npm:steno", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:stream-combiner2": [ + { + "source": "npm:stream-combiner2", + "target": "npm:duplexer2", + "type": "static" + }, + { + "source": "npm:stream-combiner2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:stream-throttle": [ + { + "source": "npm:stream-throttle", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:stream-throttle", + "target": "npm:limiter", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:string-length": [ + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string.prototype.padend": [ + { + "source": "npm:string.prototype.padend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trim": [ + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trimend": [ + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trimstart": [ + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:strong-log-transformer": [ + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + } + ], + "npm:strtok3": [ + { + "source": "npm:strtok3", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:peek-readable", + "type": "static" + } + ], + "npm:style-loader": [ + { + "source": "npm:style-loader", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:stylehacks": [ + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:stylus": [ + { + "source": "npm:stylus", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:sax@1.2.4", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:stylus-loader": [ + { + "source": "npm:stylus-loader", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:normalize-path", + "type": "static" + } + ], + "npm:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-hyperlinks": [ + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:svgo": [ + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:tar-stream": [ + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream@3.6.2", + "type": "static" + } + ], + "npm:temp": [ + { + "source": "npm:temp", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:temp", + "target": "npm:rimraf@2.6.3", + "type": "static" + } + ], + "npm:rimraf@2.6.3": [ + { + "source": "npm:rimraf@2.6.3", + "target": "npm:glob", + "type": "static" + } + ], + "npm:tempy": [ + { + "source": "npm:tempy", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@2.19.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + } + ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + } + ], + "npm:jest-worker@27.5.1": [ + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:test-exclude": [ + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:thread-stream": [ + { + "source": "npm:thread-stream", + "target": "npm:real-require", + "type": "static" + } + ], + "npm:through2": [ + { + "source": "npm:through2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:tmp": [ + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:to-object-path": [ + { + "source": "npm:to-object-path", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number@7.0.0", + "type": "static" + } + ], + "npm:token-types": [ + { + "source": "npm:token-types", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:tough-cookie": [ + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:url-parse", + "type": "static" + } + ], + "npm:tr46": [ + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:trim-repeated": [ + { + "source": "npm:trim-repeated", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:ts-api-utils": [ + { + "source": "npm:ts-api-utils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:ts-jest": [ + { + "source": "npm:ts-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:ts-loader": [ + { + "source": "npm:ts-loader", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:ts-node": [ + { + "source": "npm:ts-node", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + } + ], + "npm:tsconfig-paths": [ + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom@3.0.0", + "type": "static" + } + ], + "npm:tsconfig-paths-webpack-plugin": [ + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths", + "type": "static" + } + ], + "npm:tunnel-agent": [ + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:type-check": [ + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + } + ], + "npm:type-is": [ + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:typed-array-buffer": [ + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-length": [ + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-offset": [ + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-length": [ + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:unbox-primitive": [ + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + } + ], + "npm:undici": [ + { + "source": "npm:undici", + "target": "npm:@fastify/busboy", + "type": "static" + } + ], + "npm:unicode-match-property-ecmascript": [ + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + } + ], + "npm:union": [ + { + "source": "npm:union", + "target": "npm:qs", + "type": "static" + } + ], + "npm:unique-string": [ + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + } + ], + "npm:update-browserslist-db": [ + { + "source": "npm:update-browserslist-db", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:uri-js": [ + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:url-parse": [ + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:v8-to-istanbul": [ + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + } + ], + "npm:verdaccio": [ + { + "source": "npm:verdaccio", + "target": "npm:@cypress/request@3.0.1", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/local-storage", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/logger-7", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/middleware", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/search", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/signature", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/streams", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/tarball", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/ui-theme", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:clipanion", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:cookies", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:express-rate-limit", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:fast-safe-stringify", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:kleur@4.1.5", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mime@3.0.0", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mv", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:pkginfo", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:verdaccio-audit", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:verdaccio-htpasswd", + "type": "static" + } + ], + "npm:verdaccio-audit": [ + { + "source": "npm:verdaccio-audit", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:https-proxy-agent@5.0.1", + "type": "static" + } + ], + "npm:verdaccio-htpasswd": [ + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:@verdaccio/file-locking@12.0.0-next.1", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:apache-md5", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:bcryptjs", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:unix-crypt-td-js", + "type": "static" + } + ], + "npm:@verdaccio/file-locking@12.0.0-next.1": [ + { + "source": "npm:@verdaccio/file-locking@12.0.0-next.1", + "target": "npm:lockfile", + "type": "static" + } + ], + "npm:@cypress/request@3.0.1": [ + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:verror": [ + { + "source": "npm:verror", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:core-util-is@1.0.2", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:extsprintf", + "type": "static" + } + ], + "npm:vite": [ + { + "source": "npm:vite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:esbuild@0.18.20", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:rollup", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:esbuild@0.18.20": [ + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-loong64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-mips64el@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ppc64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-riscv64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-s390x@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/netbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/openbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/sunos-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-x64@0.18.20", + "type": "static" + } + ], + "npm:w3c-xmlserializer": [ + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:walker": [ + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + } + ], + "npm:watchpack": [ + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:wbuf": [ + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:webpack": [ + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:webpack-dev-middleware": [ + { + "source": "npm:webpack-dev-middleware", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:webpack-dev-server": [ + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", "type": "static" }, { - "source": "tooling-nx-plugin-generators", - "target": "tooling-nx-plugin-validators", + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback@2.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.1.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware@5.3.3", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", "type": "static" } ], - "tooling-nx-plugin-validators": [ + "npm:webpack-dev-middleware@5.3.3": [ { - "source": "tooling-nx-plugin-validators", - "target": "tooling-nx-plugin-config", + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:webpack-merge": [ + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + } + ], + "npm:webpack-subresource-integrity": [ + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:typed-assert", + "type": "static" + } + ], + "npm:eslint-scope@5.1.1": [ + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + } + ], + "npm:websocket-driver": [ + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + } + ], + "npm:whatwg-encoding": [ + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:which-boxed-primitive": [ + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:which-typed-array": [ + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:wrap-ansi": [ + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:write-file-atomic": [ + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", "type": "static" } ], - "tooling-nx-plugin-config": [], - "ax-nx-plugin-workspace": [] + "npm:yauzl": [ + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + } + ], + "npm:yup": [ + { + "source": "npm:yup", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:nanoclone", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:property-expr", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:toposort", + "type": "static" + } + ], + "npm:zone.js": [ + { + "source": "npm:zone.js", + "target": "npm:tslib", + "type": "static" + } + ] }, "version": "6.0" } diff --git a/.nx/cache/terminalOutputs/15540792699947906079 b/.nx/cache/terminalOutputs/15540792699947906079 new file mode 100644 index 0000000000000000000000000000000000000000..80fe097a4fc04aa04ad5851d07ac038d64f79a25 GIT binary patch literal 59284 zcmeIz-EP}96bJBK8`u-%=AburfLOAe#)-WpXt1tWu{JG|4BHU&Ly;JpsYq%hmDpG| z>}+sG8c9CHrkP&3A!*vVXmc~a-v);L*0a4 zzYIxsqXFIA(82z25bZ>R*Ae|{D#}t#7gFbSh9dRC`DIT^JmBrq^+$br@xnk)I_hWUXTv!P0#yt+^DL zcau5`zm6|%SN$f)8&hzGJ42WXEo|zIb)SyCN(-5PW^88kg`B>h^TT>vW~URXJP5Vc z<5rE~$Et3!PwGjl$9E>?()oa6DqmLKkxG3wt0y;0vzgeULR@%C9ZC11P8(hs*oW$& z@WLwD*oJlBD#@wIn=p@26fLU?rH#kqhZ|=)(&`ZPxVZq7>g-YwU!+OLaIutjGoLXA!nQDXd>ixEz0y@lCU|!&cyp z{ixEJ=aVFA!k@R%)cZEoMlY19+(BJgh)+gz6aFP{g@~>#FNhU^_GTEEQ zsw{*O+NWVCz1}A69}o{kNhcyJoGGqE@2u-)DYJB6Y_4h?@=?fn|5!gr=%yj9b)K5M zD#TNMg|JP*)Qh5c^*0=cuT&l6;xNvBC?`IzWRb^wnu1KwHMvma4 zy6Gd8SazXNG}zlA*E#0@8PcMt_jY>}@X`N8n{%}hT)R2H!UX{cKmY;|fB*y_009U< z00Izz00bZa0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_009U<00Izz00bZa z0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z1Rwwb2tWV= z5P$##AOHafKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z1Rwwb2tWV=5P$##AOHaf zKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_ z009U<00Izz00bZa0SG_<0uX=z1Rwwb2teQ?0*?+KKOt{SA@#Jc=l!y%rc(E(LJOOE zV;vRp+{JA~yo!j|5wWw`-CORkzKvWdvdFs*(e1mpbSj)DS4l7EB9(>6`Q2nI-Qjkk zjkEDceewI;EVUw!OKVi=UF@?eZ6zbFND!?(F0sY+vg?_T_q6V}CV z=20.5.0`. You can find the latest version at https://nodejs.org/. + +> ax-nx-plugin-workspace@0.0.0 lint +> nx run-many --target=lint + + + >  NX  Running target lint for 4 projects: + + - tooling-nx-plugin-generators + - tooling-nx-plugin-validators + - tooling-nx-plugin-config + - ax-nx-plugin-workspace + + + +> nx run tooling-nx-plugin-config:lint [existing outputs match the cache, left as is] + + +Linting "tooling-nx-plugin-config"... + +All files pass linting. + + +> nx run tooling-nx-plugin-validators:lint [existing outputs match the cache, left as is] + + +Linting "tooling-nx-plugin-validators"... + +All files pass linting. + + +> nx run tooling-nx-plugin-generators:lint [existing outputs match the cache, left as is] + + +Linting "tooling-nx-plugin-generators"... + +All files pass linting. + diff --git a/.nx/cache/terminalOutputs/2274324271490405785 b/.nx/cache/terminalOutputs/2274324271490405785 new file mode 100644 index 0000000..a224f06 --- /dev/null +++ b/.nx/cache/terminalOutputs/2274324271490405785 @@ -0,0 +1 @@ +PASS tooling-nx-plugin-generators libs/tooling/nx-plugin/generators/src/generators/shared/utils/string.spec.ts (7.947 s) diff --git a/.nx/cache/terminalOutputs/5787663384972380094 b/.nx/cache/terminalOutputs/5787663384972380094 new file mode 100644 index 0000000..8aebc01 --- /dev/null +++ b/.nx/cache/terminalOutputs/5787663384972380094 @@ -0,0 +1,4 @@ +Determining test suites to run...No tests found, exiting with code 0 + +   +   \ No newline at end of file diff --git a/.nx/cache/terminalOutputs/7564716918858913555 b/.nx/cache/terminalOutputs/7564716918858913555 new file mode 100644 index 0000000..c23f201 --- /dev/null +++ b/.nx/cache/terminalOutputs/7564716918858913555 @@ -0,0 +1,5 @@ + +Linting "tooling-nx-plugin-validators"... + +All files pass linting. + diff --git a/.nx/cache/terminalOutputs/9370696602342275563 b/.nx/cache/terminalOutputs/9370696602342275563 new file mode 100644 index 0000000..8923344 --- /dev/null +++ b/.nx/cache/terminalOutputs/9370696602342275563 @@ -0,0 +1,5 @@ + +Linting "tooling-nx-plugin-generators"... + +All files pass linting. + diff --git a/.nx/cache/terminalOutputs/9419033249203670814 b/.nx/cache/terminalOutputs/9419033249203670814 new file mode 100644 index 0000000..47fffd0 --- /dev/null +++ b/.nx/cache/terminalOutputs/9419033249203670814 @@ -0,0 +1,5 @@ + +Linting "tooling-nx-plugin-config"... + +All files pass linting. + From 2ee0c834a4cc9741f1d90fef15b2d5ee39c8000b Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:21:59 +0100 Subject: [PATCH 08/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20regenerate=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nx/cache/5787663384972380094.commit | 1 - .nx/cache/5787663384972380094/code | 1 - .nx/cache/5787663384972380094/source | 1 - .nx/cache/5787663384972380094/terminalOutput | 4 - .nx/cache/7564716918858913555.commit | 1 - .nx/cache/7564716918858913555/code | 1 - .nx/cache/7564716918858913555/source | 1 - .nx/cache/7564716918858913555/terminalOutput | 5 - .nx/cache/9370696602342275563.commit | 1 - .nx/cache/9370696602342275563/code | 1 - .nx/cache/9370696602342275563/source | 1 - .nx/cache/9370696602342275563/terminalOutput | 5 - .nx/cache/9419033249203670814.commit | 1 - .nx/cache/9419033249203670814/code | 1 - .nx/cache/9419033249203670814/source | 1 - .nx/cache/9419033249203670814/terminalOutput | 5 - .nx/cache/d/daemon.log | 4229 -- .nx/cache/file-map.json | 159 +- .nx/cache/lockfile.hash | 1 - .nx/cache/nx_files.nxt | Bin 13556 -> 0 bytes .nx/cache/parsed-lock-file.json | 40865 ---------------- .nx/cache/project-graph.json | 40782 +-------------- .../terminalOutputs/15540792699947906079 | Bin 59284 -> 0 bytes .../terminalOutputs/16651601155166550751 | 0 .../terminalOutputs/18361336782960755279 | 38 - .nx/cache/terminalOutputs/2274324271490405785 | 1 - .nx/cache/terminalOutputs/5787663384972380094 | 4 - .nx/cache/terminalOutputs/7564716918858913555 | 5 - .nx/cache/terminalOutputs/9370696602342275563 | 5 - .nx/cache/terminalOutputs/9419033249203670814 | 5 - 30 files changed, 86 insertions(+), 86039 deletions(-) delete mode 100644 .nx/cache/5787663384972380094.commit delete mode 100644 .nx/cache/5787663384972380094/code delete mode 100644 .nx/cache/5787663384972380094/source delete mode 100644 .nx/cache/5787663384972380094/terminalOutput delete mode 100644 .nx/cache/7564716918858913555.commit delete mode 100644 .nx/cache/7564716918858913555/code delete mode 100644 .nx/cache/7564716918858913555/source delete mode 100644 .nx/cache/7564716918858913555/terminalOutput delete mode 100644 .nx/cache/9370696602342275563.commit delete mode 100644 .nx/cache/9370696602342275563/code delete mode 100644 .nx/cache/9370696602342275563/source delete mode 100644 .nx/cache/9370696602342275563/terminalOutput delete mode 100644 .nx/cache/9419033249203670814.commit delete mode 100644 .nx/cache/9419033249203670814/code delete mode 100644 .nx/cache/9419033249203670814/source delete mode 100644 .nx/cache/9419033249203670814/terminalOutput delete mode 100644 .nx/cache/d/daemon.log delete mode 100644 .nx/cache/lockfile.hash delete mode 100644 .nx/cache/nx_files.nxt delete mode 100644 .nx/cache/parsed-lock-file.json delete mode 100644 .nx/cache/terminalOutputs/15540792699947906079 delete mode 100644 .nx/cache/terminalOutputs/16651601155166550751 delete mode 100644 .nx/cache/terminalOutputs/18361336782960755279 delete mode 100644 .nx/cache/terminalOutputs/2274324271490405785 delete mode 100644 .nx/cache/terminalOutputs/5787663384972380094 delete mode 100644 .nx/cache/terminalOutputs/7564716918858913555 delete mode 100644 .nx/cache/terminalOutputs/9370696602342275563 delete mode 100644 .nx/cache/terminalOutputs/9419033249203670814 diff --git a/.nx/cache/5787663384972380094.commit b/.nx/cache/5787663384972380094.commit deleted file mode 100644 index f32a580..0000000 --- a/.nx/cache/5787663384972380094.commit +++ /dev/null @@ -1 +0,0 @@ -true \ No newline at end of file diff --git a/.nx/cache/5787663384972380094/code b/.nx/cache/5787663384972380094/code deleted file mode 100644 index c227083..0000000 --- a/.nx/cache/5787663384972380094/code +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/.nx/cache/5787663384972380094/source b/.nx/cache/5787663384972380094/source deleted file mode 100644 index 9f267a1..0000000 --- a/.nx/cache/5787663384972380094/source +++ /dev/null @@ -1 +0,0 @@ -0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/5787663384972380094/terminalOutput b/.nx/cache/5787663384972380094/terminalOutput deleted file mode 100644 index 8aebc01..0000000 --- a/.nx/cache/5787663384972380094/terminalOutput +++ /dev/null @@ -1,4 +0,0 @@ -Determining test suites to run...No tests found, exiting with code 0 - -   -   \ No newline at end of file diff --git a/.nx/cache/7564716918858913555.commit b/.nx/cache/7564716918858913555.commit deleted file mode 100644 index f32a580..0000000 --- a/.nx/cache/7564716918858913555.commit +++ /dev/null @@ -1 +0,0 @@ -true \ No newline at end of file diff --git a/.nx/cache/7564716918858913555/code b/.nx/cache/7564716918858913555/code deleted file mode 100644 index c227083..0000000 --- a/.nx/cache/7564716918858913555/code +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/.nx/cache/7564716918858913555/source b/.nx/cache/7564716918858913555/source deleted file mode 100644 index 9f267a1..0000000 --- a/.nx/cache/7564716918858913555/source +++ /dev/null @@ -1 +0,0 @@ -0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/7564716918858913555/terminalOutput b/.nx/cache/7564716918858913555/terminalOutput deleted file mode 100644 index c23f201..0000000 --- a/.nx/cache/7564716918858913555/terminalOutput +++ /dev/null @@ -1,5 +0,0 @@ - -Linting "tooling-nx-plugin-validators"... - -All files pass linting. - diff --git a/.nx/cache/9370696602342275563.commit b/.nx/cache/9370696602342275563.commit deleted file mode 100644 index f32a580..0000000 --- a/.nx/cache/9370696602342275563.commit +++ /dev/null @@ -1 +0,0 @@ -true \ No newline at end of file diff --git a/.nx/cache/9370696602342275563/code b/.nx/cache/9370696602342275563/code deleted file mode 100644 index c227083..0000000 --- a/.nx/cache/9370696602342275563/code +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/.nx/cache/9370696602342275563/source b/.nx/cache/9370696602342275563/source deleted file mode 100644 index 9f267a1..0000000 --- a/.nx/cache/9370696602342275563/source +++ /dev/null @@ -1 +0,0 @@ -0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/9370696602342275563/terminalOutput b/.nx/cache/9370696602342275563/terminalOutput deleted file mode 100644 index 8923344..0000000 --- a/.nx/cache/9370696602342275563/terminalOutput +++ /dev/null @@ -1,5 +0,0 @@ - -Linting "tooling-nx-plugin-generators"... - -All files pass linting. - diff --git a/.nx/cache/9419033249203670814.commit b/.nx/cache/9419033249203670814.commit deleted file mode 100644 index f32a580..0000000 --- a/.nx/cache/9419033249203670814.commit +++ /dev/null @@ -1 +0,0 @@ -true \ No newline at end of file diff --git a/.nx/cache/9419033249203670814/code b/.nx/cache/9419033249203670814/code deleted file mode 100644 index c227083..0000000 --- a/.nx/cache/9419033249203670814/code +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/.nx/cache/9419033249203670814/source b/.nx/cache/9419033249203670814/source deleted file mode 100644 index 9f267a1..0000000 --- a/.nx/cache/9419033249203670814/source +++ /dev/null @@ -1 +0,0 @@ -0e1d8fd6f1c19456a0777078cbd27664707bdaa3f9607a1d1b7bd7bca90bcb94 \ No newline at end of file diff --git a/.nx/cache/9419033249203670814/terminalOutput b/.nx/cache/9419033249203670814/terminalOutput deleted file mode 100644 index 47fffd0..0000000 --- a/.nx/cache/9419033249203670814/terminalOutput +++ /dev/null @@ -1,5 +0,0 @@ - -Linting "tooling-nx-plugin-config"... - -All files pass linting. - diff --git a/.nx/cache/d/daemon.log b/.nx/cache/d/daemon.log deleted file mode 100644 index 9cd0606..0000000 --- a/.nx/cache/d/daemon.log +++ /dev/null @@ -1,4229 +0,0 @@ -[NX Daemon Server] - 2023-12-20T16:15:41.691Z - Started listening on: /var/folders/d7/ljr6pb8s55gb1j56y1s4_f3m0000gn/T/cb69d6535d6f1276b079/d.sock -[NX Daemon Server] - 2023-12-20T16:15:41.692Z - [WATCHER]: Subscribed to changes within: /Users/kiwi/Documents/code/private/nx-plugin (native) -[NX Daemon Server] - 2023-12-20T16:15:41.694Z - Established a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:15:41.694Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:15:41.695Z - Closed a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:15:41.696Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:41.697Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2023-12-20T16:15:41.697Z - [REQUEST]: -[NX Daemon Server] - 2023-12-20T16:15:41.697Z - [REQUEST]: -[NX Daemon Server] - 2023-12-20T16:15:41.919Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:41.921Z - Time taken for 'total for creating and serializing project graph' 222.43412494659424ms -[NX Daemon Server] - 2023-12-20T16:15:41.927Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:41.927Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 222. Response time: 9. -[NX Daemon Server] - 2023-12-20T16:15:41.980Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.980Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.980Z - Handled HASH_TASKS. Handling time: 8. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:41.989Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.989Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.989Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:41.992Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.992Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.992Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:41.995Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.995Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:41.995Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:43.078Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.078Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.078Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:43.170Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.170Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.170Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:43.268Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.268Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.268Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:43.619Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:15:43.619Z - Closed a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:15:43.620Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:15:43.620Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:43.621Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:43.622Z - Time taken for 'total for creating and serializing project graph' 0.1762077808380127ms -[NX Daemon Server] - 2023-12-20T16:15:43.628Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:43.628Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:43.658Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.659Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.659Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:43.667Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.668Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.668Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:43.670Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.671Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.671Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:43.674Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.675Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:43.675Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:43.699Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:43.699Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.699Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:43.700Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.700Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:43.700Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.147Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:15:44.147Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:15:44.148Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:15:44.149Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:44.149Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:44.151Z - Time taken for 'total for creating and serializing project graph' 0.07854199409484863ms -[NX Daemon Server] - 2023-12-20T16:15:44.156Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:44.156Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:44.186Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.187Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.187Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:44.195Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.195Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.195Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.198Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.198Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.198Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.203Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.203Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.203Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.223Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.223Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.223Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.224Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.224Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.224Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.227Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.227Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.227Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.673Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:15:44.674Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:15:44.674Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:15:44.675Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:44.675Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:44.677Z - Time taken for 'total for creating and serializing project graph' 0.06283378601074219ms -[NX Daemon Server] - 2023-12-20T16:15:44.682Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:44.682Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:44.713Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.713Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.713Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.722Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.722Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.722Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.725Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.725Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.725Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.729Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.729Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:44.729Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.750Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.750Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.750Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.753Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.753Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.753Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:44.755Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.755Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:44.755Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.203Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:15:45.203Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:15:45.204Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:15:45.205Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:45.205Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:45.206Z - Time taken for 'total for creating and serializing project graph' 0.08425021171569824ms -[NX Daemon Server] - 2023-12-20T16:15:45.211Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:45.212Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:45.241Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.241Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.241Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.250Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.250Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.250Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.254Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.254Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.254Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.257Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.257Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.257Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.279Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.279Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.279Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.280Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.280Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.280Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.282Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.282Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.282Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.735Z - Established a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:15:45.736Z - Closed a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:15:45.736Z - Established a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:15:45.737Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:45.737Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:45.739Z - Time taken for 'total for creating and serializing project graph' 0.05320882797241211ms -[NX Daemon Server] - 2023-12-20T16:15:45.744Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:45.744Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:45.774Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.774Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.774Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.783Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.783Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.783Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.786Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.786Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.786Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.790Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.790Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:45.790Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.811Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.811Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.811Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.814Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:45.814Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:45.814Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.270Z - Established a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:15:46.270Z - Closed a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:15:46.270Z - Established a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:15:46.271Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:46.271Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:46.273Z - Time taken for 'total for creating and serializing project graph' 0.08745908737182617ms -[NX Daemon Server] - 2023-12-20T16:15:46.278Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:46.278Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:46.308Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.308Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.308Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.317Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.317Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.317Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.321Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.321Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.321Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.324Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.324Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.324Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.348Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.348Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.349Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.349Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.349Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.821Z - Established a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:15:46.821Z - Closed a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:15:46.821Z - Established a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:15:46.822Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:46.823Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:46.824Z - Time taken for 'total for creating and serializing project graph' 0.06541609764099121ms -[NX Daemon Server] - 2023-12-20T16:15:46.829Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:46.830Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:46.857Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.857Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.857Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.867Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.867Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.867Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.870Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.870Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.870Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.873Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.873Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:46.873Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.894Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.894Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.894Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.898Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.898Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.898Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:46.899Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.899Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:46.899Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.361Z - Established a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:15:47.361Z - Closed a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:15:47.361Z - Established a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:15:47.362Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:47.363Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:47.364Z - Time taken for 'total for creating and serializing project graph' 0.10233378410339355ms -[NX Daemon Server] - 2023-12-20T16:15:47.370Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:47.370Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:47.401Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.401Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.401Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.409Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.409Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.409Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.412Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.412Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.412Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.416Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.416Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.416Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.436Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.436Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.436Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.437Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.437Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.437Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.438Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.438Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.438Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.897Z - Established a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:15:47.897Z - Closed a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:15:47.897Z - Established a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:15:47.898Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:47.898Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:47.900Z - Time taken for 'total for creating and serializing project graph' 0.06516599655151367ms -[NX Daemon Server] - 2023-12-20T16:15:47.905Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:47.905Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:47.935Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.935Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.935Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.944Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.944Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.944Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.948Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.948Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.948Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.951Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.952Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:47.952Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:47.973Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.973Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.973Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:47.976Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.976Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:47.976Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.439Z - Established a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:15:48.439Z - Closed a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:15:48.439Z - Established a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:15:48.440Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:48.440Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:48.443Z - Time taken for 'total for creating and serializing project graph' 0.06099987030029297ms -[NX Daemon Server] - 2023-12-20T16:15:48.448Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:48.448Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:15:48.479Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.479Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.479Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.487Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.488Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.488Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:48.491Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.491Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.491Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.495Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.495Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:48.495Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.516Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:48.516Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:48.516Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.517Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:48.517Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:48.517Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.519Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:48.519Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:48.519Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:48.995Z - Established a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:15:48.995Z - Closed a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:15:48.996Z - Established a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:15:48.997Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:48.997Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:48.999Z - Time taken for 'total for creating and serializing project graph' 0.07066607475280762ms -[NX Daemon Server] - 2023-12-20T16:15:49.004Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:49.004Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:49.034Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.034Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.034Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.043Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.044Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.044Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:49.048Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.048Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.048Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.052Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.052Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.052Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.072Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.072Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.072Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.076Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.076Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.076Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.575Z - Established a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:15:49.576Z - Closed a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:15:49.576Z - Established a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:15:49.577Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:49.577Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:49.579Z - Time taken for 'total for creating and serializing project graph' 0.07737517356872559ms -[NX Daemon Server] - 2023-12-20T16:15:49.586Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:49.586Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2023-12-20T16:15:49.617Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.617Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.617Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.626Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.626Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.626Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.629Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.629Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.629Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.632Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.632Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:49.632Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.653Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.653Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.653Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:49.655Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:49.656Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:49.656Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.138Z - Established a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:15:50.138Z - Closed a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:15:50.138Z - Established a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:15:50.139Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:50.140Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:50.141Z - Time taken for 'total for creating and serializing project graph' 0.08762478828430176ms -[NX Daemon Server] - 2023-12-20T16:15:50.146Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:50.147Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:50.177Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.178Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.178Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:50.186Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.187Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.187Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:50.190Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.190Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.190Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.193Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.193Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.194Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:50.213Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.213Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.213Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.217Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.217Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.217Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.700Z - Established a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:15:50.700Z - Closed a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:15:50.701Z - Established a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:15:50.701Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:50.702Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:50.703Z - Time taken for 'total for creating and serializing project graph' 0.10866594314575195ms -[NX Daemon Server] - 2023-12-20T16:15:50.709Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:50.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:50.744Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.744Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.744Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.753Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.753Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.753Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.757Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.757Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.757Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.765Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.765Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:50.765Z - Handled HASH_TASKS. Handling time: 7. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.783Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.783Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.783Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.784Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.784Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.784Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:50.789Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.789Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:50.789Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.330Z - Established a connection. Number of open connections: 16 -[NX Daemon Server] - 2023-12-20T16:15:51.331Z - Closed a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:15:51.331Z - Established a connection. Number of open connections: 16 -[NX Daemon Server] - 2023-12-20T16:15:51.332Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:51.332Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:51.334Z - Time taken for 'total for creating and serializing project graph' 0.11941695213317871ms -[NX Daemon Server] - 2023-12-20T16:15:51.339Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:51.339Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:51.374Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.374Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.374Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.384Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.384Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.384Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.388Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.388Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.388Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.393Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.394Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.394Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:51.415Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.415Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.415Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.417Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.417Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.417Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.418Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.418Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.418Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.913Z - Established a connection. Number of open connections: 17 -[NX Daemon Server] - 2023-12-20T16:15:51.913Z - Closed a connection. Number of open connections: 16 -[NX Daemon Server] - 2023-12-20T16:15:51.913Z - Established a connection. Number of open connections: 17 -[NX Daemon Server] - 2023-12-20T16:15:51.914Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:51.915Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:51.917Z - Time taken for 'total for creating and serializing project graph' 0.06999993324279785ms -[NX Daemon Server] - 2023-12-20T16:15:51.922Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:51.922Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:15:51.953Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.953Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.953Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.963Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.963Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.963Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.966Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.966Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.966Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.970Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.970Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:51.970Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.993Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.993Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.993Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:51.995Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.995Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:51.995Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.467Z - Established a connection. Number of open connections: 18 -[NX Daemon Server] - 2023-12-20T16:15:52.467Z - Closed a connection. Number of open connections: 17 -[NX Daemon Server] - 2023-12-20T16:15:52.467Z - Established a connection. Number of open connections: 18 -[NX Daemon Server] - 2023-12-20T16:15:52.468Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:52.468Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:52.470Z - Time taken for 'total for creating and serializing project graph' 0.04808402061462402ms -[NX Daemon Server] - 2023-12-20T16:15:52.475Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:52.475Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:52.504Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.504Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.504Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.512Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.512Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.512Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.515Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.515Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.515Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.519Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.519Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:52.519Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.538Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:52.538Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:52.538Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.540Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:52.540Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:52.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.085Z - Established a connection. Number of open connections: 19 -[NX Daemon Server] - 2023-12-20T16:15:53.085Z - Closed a connection. Number of open connections: 18 -[NX Daemon Server] - 2023-12-20T16:15:53.086Z - Established a connection. Number of open connections: 19 -[NX Daemon Server] - 2023-12-20T16:15:53.087Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:53.087Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:53.089Z - Time taken for 'total for creating and serializing project graph' 0.06183314323425293ms -[NX Daemon Server] - 2023-12-20T16:15:53.094Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:53.094Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:53.130Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.130Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.130Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.139Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.139Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.139Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.142Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.142Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.142Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.146Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.146Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.146Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.170Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.170Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.170Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.171Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.171Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.171Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.723Z - Established a connection. Number of open connections: 20 -[NX Daemon Server] - 2023-12-20T16:15:53.724Z - Closed a connection. Number of open connections: 19 -[NX Daemon Server] - 2023-12-20T16:15:53.724Z - Established a connection. Number of open connections: 20 -[NX Daemon Server] - 2023-12-20T16:15:53.725Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:53.725Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:53.727Z - Time taken for 'total for creating and serializing project graph' 0.06491684913635254ms -[NX Daemon Server] - 2023-12-20T16:15:53.732Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:53.732Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:15:53.768Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.768Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.768Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.781Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.781Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.781Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.787Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.788Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.788Z - Handled HASH_TASKS. Handling time: 3. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:53.795Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.795Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:53.795Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.823Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.823Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:53.832Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.832Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:53.832Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.220Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2023-12-20T16:15:54.457Z - Established a connection. Number of open connections: 21 -[NX Daemon Server] - 2023-12-20T16:15:54.457Z - Closed a connection. Number of open connections: 20 -[NX Daemon Server] - 2023-12-20T16:15:54.458Z - Established a connection. Number of open connections: 21 -[NX Daemon Server] - 2023-12-20T16:15:54.459Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:54.459Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:54.461Z - Time taken for 'total for creating and serializing project graph' 0.06720805168151855ms -[NX Daemon Server] - 2023-12-20T16:15:54.467Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:54.467Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:15:54.503Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.503Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.503Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.516Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.516Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.516Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.520Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.520Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.520Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.524Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.524Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:54.524Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.546Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:54.546Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:54.546Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.549Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:54.549Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:54.549Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:55.404Z - Established a connection. Number of open connections: 22 -[NX Daemon Server] - 2023-12-20T16:15:55.404Z - Closed a connection. Number of open connections: 21 -[NX Daemon Server] - 2023-12-20T16:15:55.405Z - Established a connection. Number of open connections: 22 -[NX Daemon Server] - 2023-12-20T16:15:55.406Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:55.406Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:55.412Z - Time taken for 'total for creating and serializing project graph' 0.3987081050872803ms -[NX Daemon Server] - 2023-12-20T16:15:55.420Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:55.420Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. -[NX Daemon Server] - 2023-12-20T16:15:55.463Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.463Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.464Z - Handled HASH_TASKS. Handling time: 5. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:55.477Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.477Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.477Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:55.486Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.486Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.486Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:55.494Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.494Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:55.494Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:55.556Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:55.556Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:55.556Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:55.568Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:55.568Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:55.568Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:55.569Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:55.569Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:55.569Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:56.246Z - Established a connection. Number of open connections: 23 -[NX Daemon Server] - 2023-12-20T16:15:56.246Z - Closed a connection. Number of open connections: 22 -[NX Daemon Server] - 2023-12-20T16:15:56.246Z - Established a connection. Number of open connections: 23 -[NX Daemon Server] - 2023-12-20T16:15:56.248Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:56.248Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:56.250Z - Time taken for 'total for creating and serializing project graph' 0.19412493705749512ms -[NX Daemon Server] - 2023-12-20T16:15:56.258Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:56.258Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 10. -[NX Daemon Server] - 2023-12-20T16:15:56.295Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.295Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.295Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:56.330Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.330Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.330Z - Handled HASH_TASKS. Handling time: 25. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:56.341Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.341Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.341Z - Handled HASH_TASKS. Handling time: 7. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:56.348Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.348Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:56.348Z - Handled HASH_TASKS. Handling time: 6. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:56.369Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:56.369Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:56.369Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:56.372Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:56.372Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:56.372Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:56.374Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:56.374Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:56.374Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:57.177Z - Established a connection. Number of open connections: 24 -[NX Daemon Server] - 2023-12-20T16:15:57.177Z - Established a connection. Number of open connections: 25 -[NX Daemon Server] - 2023-12-20T16:15:57.177Z - Closed a connection. Number of open connections: 24 -[NX Daemon Server] - 2023-12-20T16:15:57.178Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:57.178Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:57.182Z - Time taken for 'total for creating and serializing project graph' 0.08304190635681152ms -[NX Daemon Server] - 2023-12-20T16:15:57.220Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:57.220Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 42. -[NX Daemon Server] - 2023-12-20T16:15:57.280Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.280Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.280Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:57.303Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.303Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.303Z - Handled HASH_TASKS. Handling time: 11. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:57.310Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.310Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.310Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:57.344Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.345Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:57.345Z - Handled HASH_TASKS. Handling time: 31. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:57.346Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:57.346Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:57.346Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:57.352Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:57.352Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:57.352Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:57.353Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:57.353Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:57.353Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:58.156Z - Established a connection. Number of open connections: 25 -[NX Daemon Server] - 2023-12-20T16:15:58.157Z - Established a connection. Number of open connections: 26 -[NX Daemon Server] - 2023-12-20T16:15:58.157Z - Closed a connection. Number of open connections: 25 -[NX Daemon Server] - 2023-12-20T16:15:58.158Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:58.158Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:58.161Z - Time taken for 'total for creating and serializing project graph' 0.1471250057220459ms -[NX Daemon Server] - 2023-12-20T16:15:58.169Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:58.169Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. -[NX Daemon Server] - 2023-12-20T16:15:58.220Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.220Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.220Z - Handled HASH_TASKS. Handling time: 13. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:58.269Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.269Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.269Z - Handled HASH_TASKS. Handling time: 19. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:58.280Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.280Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.280Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:58.294Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.295Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:58.295Z - Handled HASH_TASKS. Handling time: 9. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:58.327Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:58.327Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:58.327Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:58.333Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:58.334Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:58.334Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:58.348Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:58.348Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:58.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:59.184Z - Established a connection. Number of open connections: 26 -[NX Daemon Server] - 2023-12-20T16:15:59.185Z - Closed a connection. Number of open connections: 25 -[NX Daemon Server] - 2023-12-20T16:15:59.187Z - Established a connection. Number of open connections: 26 -[NX Daemon Server] - 2023-12-20T16:15:59.189Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:15:59.191Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:15:59.201Z - Time taken for 'total for creating and serializing project graph' 1.5952918529510498ms -[NX Daemon Server] - 2023-12-20T16:15:59.235Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:15:59.235Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 45. -[NX Daemon Server] - 2023-12-20T16:15:59.283Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.283Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.283Z - Handled HASH_TASKS. Handling time: 8. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:59.305Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.311Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.311Z - Handled HASH_TASKS. Handling time: 11. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:15:59.324Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.324Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.324Z - Handled HASH_TASKS. Handling time: 6. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:59.357Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.357Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:15:59.357Z - Handled HASH_TASKS. Handling time: 29. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:15:59.379Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:59.380Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:59.380Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:59.388Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:59.389Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:59.389Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:15:59.390Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:59.390Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:15:59.390Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.170Z - Established a connection. Number of open connections: 27 -[NX Daemon Server] - 2023-12-20T16:16:00.171Z - Closed a connection. Number of open connections: 26 -[NX Daemon Server] - 2023-12-20T16:16:00.172Z - Established a connection. Number of open connections: 27 -[NX Daemon Server] - 2023-12-20T16:16:00.174Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:00.174Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:00.177Z - Time taken for 'total for creating and serializing project graph' 0.11925005912780762ms -[NX Daemon Server] - 2023-12-20T16:16:00.188Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:00.188Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. -[NX Daemon Server] - 2023-12-20T16:16:00.232Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.232Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.232Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.245Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.246Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.246Z - Handled HASH_TASKS. Handling time: 3. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:00.252Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.252Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.252Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.264Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.264Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.264Z - Handled HASH_TASKS. Handling time: 8. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.281Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.283Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.283Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2023-12-20T16:16:00.286Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.286Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.286Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.302Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.302Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.302Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.880Z - Established a connection. Number of open connections: 28 -[NX Daemon Server] - 2023-12-20T16:16:00.880Z - Closed a connection. Number of open connections: 27 -[NX Daemon Server] - 2023-12-20T16:16:00.881Z - Established a connection. Number of open connections: 28 -[NX Daemon Server] - 2023-12-20T16:16:00.882Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:00.882Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:00.884Z - Time taken for 'total for creating and serializing project graph' 0.07908296585083008ms -[NX Daemon Server] - 2023-12-20T16:16:00.890Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:00.890Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:00.922Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.922Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.922Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.932Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.933Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.933Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:00.937Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.937Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.937Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.941Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.941Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:00.941Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.964Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.964Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.964Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.966Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.966Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.966Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:00.967Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.967Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:00.967Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.522Z - Established a connection. Number of open connections: 29 -[NX Daemon Server] - 2023-12-20T16:16:01.522Z - Closed a connection. Number of open connections: 28 -[NX Daemon Server] - 2023-12-20T16:16:01.523Z - Established a connection. Number of open connections: 29 -[NX Daemon Server] - 2023-12-20T16:16:01.524Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:01.524Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:01.526Z - Time taken for 'total for creating and serializing project graph' 0.06491684913635254ms -[NX Daemon Server] - 2023-12-20T16:16:01.531Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:01.531Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:01.561Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.561Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.561Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.571Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.571Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.571Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.574Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.574Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.574Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.578Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.578Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:01.578Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.603Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:01.603Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:01.603Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.604Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:01.604Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:01.604Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:01.605Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:01.605Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:01.605Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.238Z - Established a connection. Number of open connections: 30 -[NX Daemon Server] - 2023-12-20T16:16:02.238Z - Established a connection. Number of open connections: 31 -[NX Daemon Server] - 2023-12-20T16:16:02.239Z - Closed a connection. Number of open connections: 30 -[NX Daemon Server] - 2023-12-20T16:16:02.240Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:02.240Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:02.242Z - Time taken for 'total for creating and serializing project graph' 0.09370803833007812ms -[NX Daemon Server] - 2023-12-20T16:16:02.247Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:02.247Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:02.283Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.283Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.283Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.293Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.293Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.293Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.296Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.297Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.297Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:02.299Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.299Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.299Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.321Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.321Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.321Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.324Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.324Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.324Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.325Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.325Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.325Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.804Z - Established a connection. Number of open connections: 31 -[NX Daemon Server] - 2023-12-20T16:16:02.804Z - Closed a connection. Number of open connections: 30 -[NX Daemon Server] - 2023-12-20T16:16:02.804Z - Established a connection. Number of open connections: 31 -[NX Daemon Server] - 2023-12-20T16:16:02.805Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:02.805Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:02.807Z - Time taken for 'total for creating and serializing project graph' 0.06570911407470703ms -[NX Daemon Server] - 2023-12-20T16:16:02.812Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:02.812Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:02.841Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.841Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.841Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.851Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.851Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.851Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.854Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.854Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.855Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:02.857Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.857Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:02.857Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.877Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.877Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.877Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.881Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.881Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.881Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:02.883Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.883Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:02.883Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.393Z - Established a connection. Number of open connections: 32 -[NX Daemon Server] - 2023-12-20T16:16:03.394Z - Closed a connection. Number of open connections: 31 -[NX Daemon Server] - 2023-12-20T16:16:03.394Z - Established a connection. Number of open connections: 32 -[NX Daemon Server] - 2023-12-20T16:16:03.395Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:03.395Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:03.397Z - Time taken for 'total for creating and serializing project graph' 0.06966710090637207ms -[NX Daemon Server] - 2023-12-20T16:16:03.402Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:03.402Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:03.432Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.432Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.432Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.442Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.442Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.442Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.445Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.445Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.445Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.448Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.448Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:03.448Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.472Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:03.472Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:03.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.477Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:03.477Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:03.477Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:03.478Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:03.478Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:03.478Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.042Z - Established a connection. Number of open connections: 33 -[NX Daemon Server] - 2023-12-20T16:16:04.043Z - Closed a connection. Number of open connections: 32 -[NX Daemon Server] - 2023-12-20T16:16:04.043Z - Established a connection. Number of open connections: 33 -[NX Daemon Server] - 2023-12-20T16:16:04.044Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:04.045Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:04.049Z - Time taken for 'total for creating and serializing project graph' 0.36904191970825195ms -[NX Daemon Server] - 2023-12-20T16:16:04.055Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:04.055Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 10. -[NX Daemon Server] - 2023-12-20T16:16:04.087Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.087Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.087Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.096Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.096Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.096Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.099Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.099Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.099Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.102Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.102Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.102Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.124Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.124Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.124Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.127Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.127Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.127Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.129Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.129Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.129Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.608Z - Established a connection. Number of open connections: 34 -[NX Daemon Server] - 2023-12-20T16:16:04.608Z - Closed a connection. Number of open connections: 33 -[NX Daemon Server] - 2023-12-20T16:16:04.608Z - Established a connection. Number of open connections: 34 -[NX Daemon Server] - 2023-12-20T16:16:04.609Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:04.609Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:04.611Z - Time taken for 'total for creating and serializing project graph' 0.04754185676574707ms -[NX Daemon Server] - 2023-12-20T16:16:04.616Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:04.616Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:04.647Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.647Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.647Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.655Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.655Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.655Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.658Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.658Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.658Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.662Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.662Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:04.662Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.684Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.684Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:04.685Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.685Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:04.685Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.176Z - Established a connection. Number of open connections: 35 -[NX Daemon Server] - 2023-12-20T16:16:05.176Z - Closed a connection. Number of open connections: 34 -[NX Daemon Server] - 2023-12-20T16:16:05.176Z - Established a connection. Number of open connections: 35 -[NX Daemon Server] - 2023-12-20T16:16:05.177Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:05.177Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:05.179Z - Time taken for 'total for creating and serializing project graph' 0.05112504959106445ms -[NX Daemon Server] - 2023-12-20T16:16:05.184Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:05.185Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:05.213Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.213Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.213Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.222Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.222Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.222Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.225Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.225Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.229Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.229Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.229Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.249Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.249Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.253Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.253Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.253Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.751Z - Established a connection. Number of open connections: 36 -[NX Daemon Server] - 2023-12-20T16:16:05.751Z - Closed a connection. Number of open connections: 35 -[NX Daemon Server] - 2023-12-20T16:16:05.751Z - Established a connection. Number of open connections: 36 -[NX Daemon Server] - 2023-12-20T16:16:05.752Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:05.752Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:05.754Z - Time taken for 'total for creating and serializing project graph' 0.05216622352600098ms -[NX Daemon Server] - 2023-12-20T16:16:05.759Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:05.759Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:05.787Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.787Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.787Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.795Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.796Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.796Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:05.799Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.799Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.799Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.802Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.802Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:05.802Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.818Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.823Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2023-12-20T16:16:05.824Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:05.824Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:05.824Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.305Z - Established a connection. Number of open connections: 37 -[NX Daemon Server] - 2023-12-20T16:16:06.305Z - Closed a connection. Number of open connections: 36 -[NX Daemon Server] - 2023-12-20T16:16:06.305Z - Established a connection. Number of open connections: 37 -[NX Daemon Server] - 2023-12-20T16:16:06.306Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:06.306Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:06.308Z - Time taken for 'total for creating and serializing project graph' 0.04566693305969238ms -[NX Daemon Server] - 2023-12-20T16:16:06.313Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:06.313Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:06.341Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.341Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.341Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.350Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.350Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.350Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.353Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.353Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.353Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.356Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.356Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.357Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:06.374Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.374Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.374Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.376Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.376Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.376Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.873Z - Established a connection. Number of open connections: 38 -[NX Daemon Server] - 2023-12-20T16:16:06.873Z - Closed a connection. Number of open connections: 37 -[NX Daemon Server] - 2023-12-20T16:16:06.873Z - Established a connection. Number of open connections: 38 -[NX Daemon Server] - 2023-12-20T16:16:06.874Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:06.874Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:06.876Z - Time taken for 'total for creating and serializing project graph' 0.046792030334472656ms -[NX Daemon Server] - 2023-12-20T16:16:06.881Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:06.881Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:06.911Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.911Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.911Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.920Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.920Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.920Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.923Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.923Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.923Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.927Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.927Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:06.927Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.947Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.947Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.947Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:06.949Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.949Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:06.949Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:07.516Z - Established a connection. Number of open connections: 39 -[NX Daemon Server] - 2023-12-20T16:16:07.516Z - Closed a connection. Number of open connections: 38 -[NX Daemon Server] - 2023-12-20T16:16:07.516Z - Established a connection. Number of open connections: 39 -[NX Daemon Server] - 2023-12-20T16:16:07.517Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:07.518Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:07.520Z - Time taken for 'total for creating and serializing project graph' 0.0809168815612793ms -[NX Daemon Server] - 2023-12-20T16:16:07.525Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:07.525Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:07.557Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.557Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.557Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:07.566Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.567Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.567Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:07.570Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.570Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.571Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:07.574Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.574Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:07.574Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:07.596Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:07.596Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:07.596Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:07.597Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:07.597Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:07.597Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:07.599Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:07.599Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:07.599Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.124Z - Established a connection. Number of open connections: 40 -[NX Daemon Server] - 2023-12-20T16:16:08.124Z - Closed a connection. Number of open connections: 39 -[NX Daemon Server] - 2023-12-20T16:16:08.124Z - Established a connection. Number of open connections: 40 -[NX Daemon Server] - 2023-12-20T16:16:08.125Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:08.125Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:08.127Z - Time taken for 'total for creating and serializing project graph' 0.07195806503295898ms -[NX Daemon Server] - 2023-12-20T16:16:08.132Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:08.132Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:08.163Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.163Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.163Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.172Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.172Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.172Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.176Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.176Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.176Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.180Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.180Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.180Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.196Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.196Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.196Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.200Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.200Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.200Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.202Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.202Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.202Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.799Z - Established a connection. Number of open connections: 41 -[NX Daemon Server] - 2023-12-20T16:16:08.799Z - Closed a connection. Number of open connections: 40 -[NX Daemon Server] - 2023-12-20T16:16:08.799Z - Established a connection. Number of open connections: 41 -[NX Daemon Server] - 2023-12-20T16:16:08.800Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:08.801Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:08.802Z - Time taken for 'total for creating and serializing project graph' 0.0931248664855957ms -[NX Daemon Server] - 2023-12-20T16:16:08.808Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:08.809Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:08.840Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.840Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.840Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.851Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.851Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.851Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.854Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.855Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.855Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:08.859Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.859Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:08.859Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.879Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:08.880Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.880Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:08.881Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.881Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:08.881Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.398Z - Established a connection. Number of open connections: 42 -[NX Daemon Server] - 2023-12-20T16:16:09.398Z - Closed a connection. Number of open connections: 41 -[NX Daemon Server] - 2023-12-20T16:16:09.399Z - Established a connection. Number of open connections: 42 -[NX Daemon Server] - 2023-12-20T16:16:09.400Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:09.400Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:09.402Z - Time taken for 'total for creating and serializing project graph' 0.05116605758666992ms -[NX Daemon Server] - 2023-12-20T16:16:09.406Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:09.406Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:16:09.435Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.435Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.435Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.444Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.444Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.444Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.448Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.448Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.448Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.451Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.451Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:09.451Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.471Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:09.472Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:09.973Z - Established a connection. Number of open connections: 43 -[NX Daemon Server] - 2023-12-20T16:16:09.973Z - Closed a connection. Number of open connections: 42 -[NX Daemon Server] - 2023-12-20T16:16:09.974Z - Established a connection. Number of open connections: 43 -[NX Daemon Server] - 2023-12-20T16:16:09.975Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:09.975Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:09.977Z - Time taken for 'total for creating and serializing project graph' 0.06533312797546387ms -[NX Daemon Server] - 2023-12-20T16:16:09.982Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:09.982Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:10.011Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.011Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.011Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.021Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.021Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.021Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.024Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.024Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.024Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.027Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.027Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.027Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.044Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.044Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.044Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.046Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.046Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.046Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.549Z - Established a connection. Number of open connections: 44 -[NX Daemon Server] - 2023-12-20T16:16:10.549Z - Closed a connection. Number of open connections: 43 -[NX Daemon Server] - 2023-12-20T16:16:10.549Z - Established a connection. Number of open connections: 44 -[NX Daemon Server] - 2023-12-20T16:16:10.550Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:10.550Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:10.552Z - Time taken for 'total for creating and serializing project graph' 0.06804203987121582ms -[NX Daemon Server] - 2023-12-20T16:16:10.557Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:10.557Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:10.586Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.593Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.593Z - Handled HASH_TASKS. Handling time: 2. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:10.603Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.604Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.604Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:10.607Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.607Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.607Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.610Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.610Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:10.610Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.631Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.631Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.631Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.634Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:10.634Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:10.634Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.166Z - Established a connection. Number of open connections: 45 -[NX Daemon Server] - 2023-12-20T16:16:11.166Z - Closed a connection. Number of open connections: 44 -[NX Daemon Server] - 2023-12-20T16:16:11.166Z - Established a connection. Number of open connections: 45 -[NX Daemon Server] - 2023-12-20T16:16:11.167Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:11.167Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:11.169Z - Time taken for 'total for creating and serializing project graph' 0.09649991989135742ms -[NX Daemon Server] - 2023-12-20T16:16:11.175Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:11.175Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:11.203Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.203Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.203Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.212Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.212Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.212Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.215Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.215Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.215Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.218Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.218Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.218Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.242Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.242Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.242Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.244Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.244Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.244Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.734Z - Established a connection. Number of open connections: 46 -[NX Daemon Server] - 2023-12-20T16:16:11.734Z - Closed a connection. Number of open connections: 45 -[NX Daemon Server] - 2023-12-20T16:16:11.734Z - Established a connection. Number of open connections: 46 -[NX Daemon Server] - 2023-12-20T16:16:11.735Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:11.735Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:11.737Z - Time taken for 'total for creating and serializing project graph' 0.04987502098083496ms -[NX Daemon Server] - 2023-12-20T16:16:11.742Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:11.742Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:11.771Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.771Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.771Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.779Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.779Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.779Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.782Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.783Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.783Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:11.786Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.786Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:11.786Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.807Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.807Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.807Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:11.809Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.809Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:11.809Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.305Z - Established a connection. Number of open connections: 47 -[NX Daemon Server] - 2023-12-20T16:16:12.306Z - Closed a connection. Number of open connections: 46 -[NX Daemon Server] - 2023-12-20T16:16:12.306Z - Established a connection. Number of open connections: 47 -[NX Daemon Server] - 2023-12-20T16:16:12.307Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:12.307Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:12.309Z - Time taken for 'total for creating and serializing project graph' 0.05395793914794922ms -[NX Daemon Server] - 2023-12-20T16:16:12.314Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:12.314Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:12.342Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.342Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.342Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.350Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.350Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.350Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.353Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.353Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.353Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.357Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.357Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.357Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.378Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.378Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.378Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.379Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.379Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.875Z - Established a connection. Number of open connections: 48 -[NX Daemon Server] - 2023-12-20T16:16:12.875Z - Closed a connection. Number of open connections: 47 -[NX Daemon Server] - 2023-12-20T16:16:12.876Z - Established a connection. Number of open connections: 48 -[NX Daemon Server] - 2023-12-20T16:16:12.876Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:12.876Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:12.878Z - Time taken for 'total for creating and serializing project graph' 0.04745817184448242ms -[NX Daemon Server] - 2023-12-20T16:16:12.883Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:12.883Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:12.911Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.911Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.911Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.919Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.919Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.919Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.922Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.922Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.922Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.925Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.925Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:12.926Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:12.942Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.942Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.942Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:12.944Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.944Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:12.944Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.436Z - Established a connection. Number of open connections: 49 -[NX Daemon Server] - 2023-12-20T16:16:13.437Z - Closed a connection. Number of open connections: 48 -[NX Daemon Server] - 2023-12-20T16:16:13.437Z - Established a connection. Number of open connections: 49 -[NX Daemon Server] - 2023-12-20T16:16:13.438Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:13.438Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:13.440Z - Time taken for 'total for creating and serializing project graph' 0.07220792770385742ms -[NX Daemon Server] - 2023-12-20T16:16:13.445Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:13.445Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:13.479Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.479Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.479Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.488Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.488Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.488Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.493Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.493Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.493Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.496Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.496Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:13.496Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.524Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:13.524Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:13.524Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.525Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:13.525Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:13.525Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.051Z - Established a connection. Number of open connections: 50 -[NX Daemon Server] - 2023-12-20T16:16:14.051Z - Closed a connection. Number of open connections: 49 -[NX Daemon Server] - 2023-12-20T16:16:14.051Z - Established a connection. Number of open connections: 50 -[NX Daemon Server] - 2023-12-20T16:16:14.052Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:14.052Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:14.054Z - Time taken for 'total for creating and serializing project graph' 0.08045816421508789ms -[NX Daemon Server] - 2023-12-20T16:16:14.060Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:14.060Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:14.089Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.089Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.089Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.101Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.101Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.101Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.105Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.105Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.105Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.108Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.108Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.108Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.133Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.133Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.133Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.134Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.134Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.134Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.135Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.135Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.135Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.652Z - Established a connection. Number of open connections: 51 -[NX Daemon Server] - 2023-12-20T16:16:14.652Z - Closed a connection. Number of open connections: 50 -[NX Daemon Server] - 2023-12-20T16:16:14.653Z - Established a connection. Number of open connections: 51 -[NX Daemon Server] - 2023-12-20T16:16:14.653Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:14.654Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:14.655Z - Time taken for 'total for creating and serializing project graph' 0.05437517166137695ms -[NX Daemon Server] - 2023-12-20T16:16:14.660Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:14.660Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:16:14.688Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.688Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.688Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.698Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.698Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.698Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.701Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.701Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.701Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.704Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.704Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:14.704Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.722Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.722Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.722Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:14.724Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.724Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:14.724Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.266Z - Established a connection. Number of open connections: 52 -[NX Daemon Server] - 2023-12-20T16:16:15.267Z - Closed a connection. Number of open connections: 51 -[NX Daemon Server] - 2023-12-20T16:16:15.267Z - Established a connection. Number of open connections: 52 -[NX Daemon Server] - 2023-12-20T16:16:15.268Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:15.268Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:15.270Z - Time taken for 'total for creating and serializing project graph' 0.046833038330078125ms -[NX Daemon Server] - 2023-12-20T16:16:15.275Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:15.275Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:15.304Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.304Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.304Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.312Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.312Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.312Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.316Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.316Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.316Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.319Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.319Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.319Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.341Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.341Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.342Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:15.342Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.342Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.342Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.344Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.344Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.344Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.856Z - Established a connection. Number of open connections: 53 -[NX Daemon Server] - 2023-12-20T16:16:15.857Z - Closed a connection. Number of open connections: 52 -[NX Daemon Server] - 2023-12-20T16:16:15.857Z - Established a connection. Number of open connections: 53 -[NX Daemon Server] - 2023-12-20T16:16:15.858Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:15.858Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:15.860Z - Time taken for 'total for creating and serializing project graph' 0.05312514305114746ms -[NX Daemon Server] - 2023-12-20T16:16:15.865Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:15.865Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:15.893Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.893Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.893Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.902Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.902Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.902Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.906Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.906Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.906Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.910Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.910Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:15.910Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.932Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.932Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.932Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.933Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.933Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.933Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:15.934Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.935Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:15.935Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:16.461Z - Established a connection. Number of open connections: 54 -[NX Daemon Server] - 2023-12-20T16:16:16.461Z - Closed a connection. Number of open connections: 53 -[NX Daemon Server] - 2023-12-20T16:16:16.461Z - Established a connection. Number of open connections: 54 -[NX Daemon Server] - 2023-12-20T16:16:16.462Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:16.462Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:16.464Z - Time taken for 'total for creating and serializing project graph' 0.05612492561340332ms -[NX Daemon Server] - 2023-12-20T16:16:16.469Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:16.469Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:16.498Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.498Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.498Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:16.508Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.508Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.508Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:16.512Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.512Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.512Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:16.515Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.515Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:16.515Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:16.536Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:16.536Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:16.536Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:16.540Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:16.540Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:16.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:16.541Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:16.541Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:16.541Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.097Z - Established a connection. Number of open connections: 55 -[NX Daemon Server] - 2023-12-20T16:16:17.097Z - Closed a connection. Number of open connections: 54 -[NX Daemon Server] - 2023-12-20T16:16:17.098Z - Established a connection. Number of open connections: 55 -[NX Daemon Server] - 2023-12-20T16:16:17.099Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:17.099Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:17.100Z - Time taken for 'total for creating and serializing project graph' 0.058750152587890625ms -[NX Daemon Server] - 2023-12-20T16:16:17.105Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:17.105Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:16:17.138Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.138Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.138Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:17.147Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.147Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.147Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.150Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.150Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.151Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:17.154Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.154Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.154Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.172Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.172Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.172Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.173Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.173Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.173Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.683Z - Established a connection. Number of open connections: 56 -[NX Daemon Server] - 2023-12-20T16:16:17.683Z - Closed a connection. Number of open connections: 55 -[NX Daemon Server] - 2023-12-20T16:16:17.683Z - Established a connection. Number of open connections: 56 -[NX Daemon Server] - 2023-12-20T16:16:17.684Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:17.684Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:17.686Z - Time taken for 'total for creating and serializing project graph' 0.044415950775146484ms -[NX Daemon Server] - 2023-12-20T16:16:17.691Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:17.691Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:17.718Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.718Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.718Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.727Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.727Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.727Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.731Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.731Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.731Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.734Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.734Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:17.734Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:17.754Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.263Z - Established a connection. Number of open connections: 57 -[NX Daemon Server] - 2023-12-20T16:16:18.263Z - Closed a connection. Number of open connections: 56 -[NX Daemon Server] - 2023-12-20T16:16:18.264Z - Established a connection. Number of open connections: 57 -[NX Daemon Server] - 2023-12-20T16:16:18.265Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:18.265Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:18.267Z - Time taken for 'total for creating and serializing project graph' 0.0440828800201416ms -[NX Daemon Server] - 2023-12-20T16:16:18.271Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:18.272Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:18.310Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.310Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.310Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.319Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.319Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.319Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.322Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.322Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.322Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.325Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.326Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.326Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:18.343Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.343Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.343Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.347Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.347Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.347Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.851Z - Established a connection. Number of open connections: 58 -[NX Daemon Server] - 2023-12-20T16:16:18.852Z - Closed a connection. Number of open connections: 57 -[NX Daemon Server] - 2023-12-20T16:16:18.852Z - Established a connection. Number of open connections: 58 -[NX Daemon Server] - 2023-12-20T16:16:18.853Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:18.853Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:18.855Z - Time taken for 'total for creating and serializing project graph' 0.0442500114440918ms -[NX Daemon Server] - 2023-12-20T16:16:18.859Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:18.860Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:18.891Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.891Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.891Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.900Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.900Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.900Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.905Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.905Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.905Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.908Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.908Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:18.908Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.924Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.924Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.924Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.925Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.925Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.925Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:18.926Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.926Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:18.926Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.430Z - Established a connection. Number of open connections: 59 -[NX Daemon Server] - 2023-12-20T16:16:19.430Z - Closed a connection. Number of open connections: 58 -[NX Daemon Server] - 2023-12-20T16:16:19.430Z - Established a connection. Number of open connections: 59 -[NX Daemon Server] - 2023-12-20T16:16:19.431Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:19.431Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:19.433Z - Time taken for 'total for creating and serializing project graph' 0.04654097557067871ms -[NX Daemon Server] - 2023-12-20T16:16:19.438Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:19.438Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:19.469Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.469Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.469Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.478Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.478Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.478Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.482Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.482Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.482Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.485Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.485Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:19.485Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.502Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.502Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:19.502Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:19.504Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:19.504Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:19.504Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.029Z - Established a connection. Number of open connections: 60 -[NX Daemon Server] - 2023-12-20T16:16:20.029Z - Closed a connection. Number of open connections: 59 -[NX Daemon Server] - 2023-12-20T16:16:20.030Z - Established a connection. Number of open connections: 60 -[NX Daemon Server] - 2023-12-20T16:16:20.031Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:20.031Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:20.038Z - Time taken for 'total for creating and serializing project graph' 0.09179186820983887ms -[NX Daemon Server] - 2023-12-20T16:16:20.044Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:20.044Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 13. -[NX Daemon Server] - 2023-12-20T16:16:20.077Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.077Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.077Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.086Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.087Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.087Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:20.090Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.090Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.090Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.094Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.094Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.094Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.113Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.113Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.113Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.115Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.115Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.115Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.116Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.116Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.116Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.658Z - Established a connection. Number of open connections: 61 -[NX Daemon Server] - 2023-12-20T16:16:20.659Z - Closed a connection. Number of open connections: 60 -[NX Daemon Server] - 2023-12-20T16:16:20.659Z - Established a connection. Number of open connections: 61 -[NX Daemon Server] - 2023-12-20T16:16:20.660Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:20.660Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:20.662Z - Time taken for 'total for creating and serializing project graph' 0.04670882225036621ms -[NX Daemon Server] - 2023-12-20T16:16:20.667Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:20.667Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:20.695Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.695Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.704Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.704Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.704Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.708Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.708Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.708Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.712Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.712Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:20.712Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.737Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.737Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.737Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.738Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.738Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.738Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:20.739Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.739Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:20.739Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.274Z - Established a connection. Number of open connections: 62 -[NX Daemon Server] - 2023-12-20T16:16:21.274Z - Closed a connection. Number of open connections: 61 -[NX Daemon Server] - 2023-12-20T16:16:21.275Z - Established a connection. Number of open connections: 62 -[NX Daemon Server] - 2023-12-20T16:16:21.276Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:21.276Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:21.278Z - Time taken for 'total for creating and serializing project graph' 0.06145787239074707ms -[NX Daemon Server] - 2023-12-20T16:16:21.284Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:21.284Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:21.312Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.312Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.312Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.321Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.321Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.321Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.325Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.325Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.325Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.328Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.328Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.329Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:21.346Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.346Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.346Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.348Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.348Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.348Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.351Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.351Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.351Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.894Z - Established a connection. Number of open connections: 63 -[NX Daemon Server] - 2023-12-20T16:16:21.894Z - Closed a connection. Number of open connections: 62 -[NX Daemon Server] - 2023-12-20T16:16:21.895Z - Established a connection. Number of open connections: 63 -[NX Daemon Server] - 2023-12-20T16:16:21.896Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:21.896Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:21.910Z - Time taken for 'total for creating and serializing project graph' 0.10312485694885254ms -[NX Daemon Server] - 2023-12-20T16:16:21.915Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:21.916Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 20. -[NX Daemon Server] - 2023-12-20T16:16:21.945Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.945Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.945Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.954Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.954Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.954Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.958Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.958Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.958Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.961Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.961Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:21.961Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.982Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.982Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.982Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.984Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.984Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.984Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:21.985Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.985Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:21.985Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:22.594Z - Established a connection. Number of open connections: 64 -[NX Daemon Server] - 2023-12-20T16:16:22.595Z - Closed a connection. Number of open connections: 63 -[NX Daemon Server] - 2023-12-20T16:16:22.595Z - Established a connection. Number of open connections: 64 -[NX Daemon Server] - 2023-12-20T16:16:22.596Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:22.596Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:22.599Z - Time taken for 'total for creating and serializing project graph' 0.06816577911376953ms -[NX Daemon Server] - 2023-12-20T16:16:22.606Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:22.607Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. -[NX Daemon Server] - 2023-12-20T16:16:22.641Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.641Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.641Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:22.651Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.652Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.652Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:22.655Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.656Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.656Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:22.659Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.659Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:22.659Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:22.684Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:22.684Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:22.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:22.685Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:22.685Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:22.685Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.307Z - Established a connection. Number of open connections: 65 -[NX Daemon Server] - 2023-12-20T16:16:23.307Z - Closed a connection. Number of open connections: 64 -[NX Daemon Server] - 2023-12-20T16:16:23.307Z - Established a connection. Number of open connections: 65 -[NX Daemon Server] - 2023-12-20T16:16:23.308Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:23.308Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:23.310Z - Time taken for 'total for creating and serializing project graph' 0.06779217720031738ms -[NX Daemon Server] - 2023-12-20T16:16:23.316Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:23.316Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:23.347Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.347Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.347Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.356Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.356Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.356Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.362Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.363Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.363Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:23.367Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.367Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:23.367Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.387Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:23.387Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:23.387Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.393Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:23.393Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:23.393Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.394Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:23.394Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:23.394Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:23.973Z - Established a connection. Number of open connections: 66 -[NX Daemon Server] - 2023-12-20T16:16:23.973Z - Closed a connection. Number of open connections: 65 -[NX Daemon Server] - 2023-12-20T16:16:23.974Z - Established a connection. Number of open connections: 66 -[NX Daemon Server] - 2023-12-20T16:16:23.975Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:23.975Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:23.977Z - Time taken for 'total for creating and serializing project graph' 0.07312512397766113ms -[NX Daemon Server] - 2023-12-20T16:16:23.986Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:23.986Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. -[NX Daemon Server] - 2023-12-20T16:16:24.017Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.017Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.017Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.027Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.027Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.027Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.031Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.031Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.032Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:24.035Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.035Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.035Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.056Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.056Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.056Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.059Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.059Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.059Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.060Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.061Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.061Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:24.637Z - Established a connection. Number of open connections: 67 -[NX Daemon Server] - 2023-12-20T16:16:24.637Z - Closed a connection. Number of open connections: 66 -[NX Daemon Server] - 2023-12-20T16:16:24.637Z - Established a connection. Number of open connections: 67 -[NX Daemon Server] - 2023-12-20T16:16:24.638Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:24.638Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:24.640Z - Time taken for 'total for creating and serializing project graph' 0.057582855224609375ms -[NX Daemon Server] - 2023-12-20T16:16:24.645Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:24.645Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:24.677Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.677Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.677Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.687Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.687Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.687Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.692Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.692Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.692Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.695Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.695Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:24.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.715Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.715Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.716Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:24.716Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.716Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.716Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:24.718Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.718Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:24.718Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.304Z - Established a connection. Number of open connections: 68 -[NX Daemon Server] - 2023-12-20T16:16:25.304Z - Closed a connection. Number of open connections: 67 -[NX Daemon Server] - 2023-12-20T16:16:25.305Z - Established a connection. Number of open connections: 68 -[NX Daemon Server] - 2023-12-20T16:16:25.306Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:25.306Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:25.308Z - Time taken for 'total for creating and serializing project graph' 0.0829169750213623ms -[NX Daemon Server] - 2023-12-20T16:16:25.311Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:25.311Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2023-12-20T16:16:25.343Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.343Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.343Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.352Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.352Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.352Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.357Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.357Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.357Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.361Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.361Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:25.361Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.380Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:25.380Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:25.380Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.382Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:25.382Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:25.382Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.383Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:25.383Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:25.383Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:25.978Z - Established a connection. Number of open connections: 69 -[NX Daemon Server] - 2023-12-20T16:16:25.979Z - Closed a connection. Number of open connections: 68 -[NX Daemon Server] - 2023-12-20T16:16:25.979Z - Established a connection. Number of open connections: 69 -[NX Daemon Server] - 2023-12-20T16:16:25.980Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:25.980Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:25.982Z - Time taken for 'total for creating and serializing project graph' 0.04545783996582031ms -[NX Daemon Server] - 2023-12-20T16:16:25.987Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:25.987Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:26.022Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.023Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.023Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:26.034Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.035Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.035Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:26.039Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.039Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.039Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.042Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.043Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.043Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:26.062Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.062Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.062Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.065Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.065Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.065Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.066Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.066Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.066Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.643Z - Established a connection. Number of open connections: 70 -[NX Daemon Server] - 2023-12-20T16:16:26.644Z - Closed a connection. Number of open connections: 69 -[NX Daemon Server] - 2023-12-20T16:16:26.644Z - Established a connection. Number of open connections: 70 -[NX Daemon Server] - 2023-12-20T16:16:26.645Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:26.645Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:26.647Z - Time taken for 'total for creating and serializing project graph' 0.06504106521606445ms -[NX Daemon Server] - 2023-12-20T16:16:26.652Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:26.652Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:26.684Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.684Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.684Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.694Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.694Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:26.699Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.699Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.699Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.702Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.702Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:26.702Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.723Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:26.724Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.724Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:26.727Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.727Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:26.727Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.319Z - Established a connection. Number of open connections: 71 -[NX Daemon Server] - 2023-12-20T16:16:27.319Z - Closed a connection. Number of open connections: 70 -[NX Daemon Server] - 2023-12-20T16:16:27.319Z - Established a connection. Number of open connections: 71 -[NX Daemon Server] - 2023-12-20T16:16:27.320Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:27.320Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:27.322Z - Time taken for 'total for creating and serializing project graph' 0.05454206466674805ms -[NX Daemon Server] - 2023-12-20T16:16:27.328Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:27.328Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:27.358Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.358Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.358Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.369Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.369Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.369Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.373Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.373Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.373Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.376Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.376Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:27.376Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.398Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:27.398Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:27.398Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.399Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:27.399Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:27.399Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.400Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:27.400Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:27.400Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:27.993Z - Established a connection. Number of open connections: 72 -[NX Daemon Server] - 2023-12-20T16:16:27.993Z - Closed a connection. Number of open connections: 71 -[NX Daemon Server] - 2023-12-20T16:16:27.993Z - Established a connection. Number of open connections: 72 -[NX Daemon Server] - 2023-12-20T16:16:27.994Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:27.995Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:27.997Z - Time taken for 'total for creating and serializing project graph' 0.058875083923339844ms -[NX Daemon Server] - 2023-12-20T16:16:28.002Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:28.002Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:28.049Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.049Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.049Z - Handled HASH_TASKS. Handling time: 13. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.060Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.060Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.060Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.064Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.064Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.064Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.067Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.067Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.067Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.090Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.090Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.090Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.094Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.094Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.094Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.688Z - Established a connection. Number of open connections: 73 -[NX Daemon Server] - 2023-12-20T16:16:28.688Z - Closed a connection. Number of open connections: 72 -[NX Daemon Server] - 2023-12-20T16:16:28.689Z - Established a connection. Number of open connections: 73 -[NX Daemon Server] - 2023-12-20T16:16:28.690Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:28.690Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:28.691Z - Time taken for 'total for creating and serializing project graph' 0.06741595268249512ms -[NX Daemon Server] - 2023-12-20T16:16:28.697Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:28.697Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:28.728Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.728Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.728Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.739Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.739Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.739Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.744Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.744Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.744Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.748Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.748Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:28.748Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.773Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.773Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.773Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:28.776Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.776Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:28.776Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:29.342Z - Established a connection. Number of open connections: 74 -[NX Daemon Server] - 2023-12-20T16:16:29.342Z - Closed a connection. Number of open connections: 73 -[NX Daemon Server] - 2023-12-20T16:16:29.343Z - Established a connection. Number of open connections: 74 -[NX Daemon Server] - 2023-12-20T16:16:29.344Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:29.345Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:29.347Z - Time taken for 'total for creating and serializing project graph' 0.06862497329711914ms -[NX Daemon Server] - 2023-12-20T16:16:29.353Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:29.353Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:29.386Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.386Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.386Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:29.396Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.396Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.396Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:29.400Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.400Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.400Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:29.403Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.404Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:29.404Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:29.424Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:29.424Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:29.424Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:29.425Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:29.425Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:29.425Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:29.428Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:29.428Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:29.428Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.018Z - Established a connection. Number of open connections: 75 -[NX Daemon Server] - 2023-12-20T16:16:30.018Z - Closed a connection. Number of open connections: 74 -[NX Daemon Server] - 2023-12-20T16:16:30.019Z - Established a connection. Number of open connections: 75 -[NX Daemon Server] - 2023-12-20T16:16:30.020Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:30.020Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:30.022Z - Time taken for 'total for creating and serializing project graph' 0.05112481117248535ms -[NX Daemon Server] - 2023-12-20T16:16:30.027Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:30.027Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:30.059Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.059Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.059Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.069Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.069Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.069Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.073Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.073Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.073Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.077Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.077Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.077Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.098Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.098Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.098Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.100Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.101Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.101Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:30.103Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.103Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.103Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.679Z - Established a connection. Number of open connections: 76 -[NX Daemon Server] - 2023-12-20T16:16:30.679Z - Closed a connection. Number of open connections: 75 -[NX Daemon Server] - 2023-12-20T16:16:30.679Z - Established a connection. Number of open connections: 76 -[NX Daemon Server] - 2023-12-20T16:16:30.681Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:30.681Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:30.683Z - Time taken for 'total for creating and serializing project graph' 0.08595800399780273ms -[NX Daemon Server] - 2023-12-20T16:16:30.688Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:30.688Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:30.725Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.725Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.725Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.736Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.736Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.736Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.741Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.741Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.741Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.744Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.744Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:30.744Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.765Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.765Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.765Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.769Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.769Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.769Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:30.770Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.770Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:30.770Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:31.372Z - Established a connection. Number of open connections: 77 -[NX Daemon Server] - 2023-12-20T16:16:31.372Z - Closed a connection. Number of open connections: 76 -[NX Daemon Server] - 2023-12-20T16:16:31.372Z - Established a connection. Number of open connections: 77 -[NX Daemon Server] - 2023-12-20T16:16:31.373Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:31.373Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:31.375Z - Time taken for 'total for creating and serializing project graph' 0.07895803451538086ms -[NX Daemon Server] - 2023-12-20T16:16:31.384Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:31.384Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 11. -[NX Daemon Server] - 2023-12-20T16:16:31.414Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.414Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.414Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:31.426Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.426Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.426Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:31.430Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.430Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.430Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:31.435Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.435Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:31.435Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:31.454Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:31.454Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:31.454Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:31.454Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:31.454Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:31.455Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:31.459Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:31.460Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:31.460Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:32.045Z - Established a connection. Number of open connections: 78 -[NX Daemon Server] - 2023-12-20T16:16:32.045Z - Closed a connection. Number of open connections: 77 -[NX Daemon Server] - 2023-12-20T16:16:32.045Z - Established a connection. Number of open connections: 78 -[NX Daemon Server] - 2023-12-20T16:16:32.047Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:32.047Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:32.049Z - Time taken for 'total for creating and serializing project graph' 0.051917076110839844ms -[NX Daemon Server] - 2023-12-20T16:16:32.054Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:32.054Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:32.085Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.085Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.085Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.095Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.096Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.096Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:32.100Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.100Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.100Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.103Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.103Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.103Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.127Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.127Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.127Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.128Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.128Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.128Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.130Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.130Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.130Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.706Z - Established a connection. Number of open connections: 79 -[NX Daemon Server] - 2023-12-20T16:16:32.707Z - Closed a connection. Number of open connections: 78 -[NX Daemon Server] - 2023-12-20T16:16:32.707Z - Established a connection. Number of open connections: 79 -[NX Daemon Server] - 2023-12-20T16:16:32.708Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:32.708Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:32.710Z - Time taken for 'total for creating and serializing project graph' 0.051332950592041016ms -[NX Daemon Server] - 2023-12-20T16:16:32.715Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:32.715Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:32.752Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.752Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.752Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.761Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.761Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.761Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.766Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.766Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.766Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.769Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.769Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:32.769Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.789Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.789Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.789Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.792Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.792Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.792Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:32.794Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.794Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:32.794Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:33.397Z - Established a connection. Number of open connections: 80 -[NX Daemon Server] - 2023-12-20T16:16:33.397Z - Closed a connection. Number of open connections: 79 -[NX Daemon Server] - 2023-12-20T16:16:33.397Z - Established a connection. Number of open connections: 80 -[NX Daemon Server] - 2023-12-20T16:16:33.399Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:33.399Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:33.401Z - Time taken for 'total for creating and serializing project graph' 0.08829188346862793ms -[NX Daemon Server] - 2023-12-20T16:16:33.407Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:33.407Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:33.438Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.438Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.438Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:33.448Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.448Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.448Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:33.452Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.452Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.452Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:33.456Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.456Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:33.456Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:33.479Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:33.479Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:33.479Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:33.481Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:33.482Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:33.482Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:33.483Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:33.483Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:33.483Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.078Z - Established a connection. Number of open connections: 81 -[NX Daemon Server] - 2023-12-20T16:16:34.078Z - Closed a connection. Number of open connections: 80 -[NX Daemon Server] - 2023-12-20T16:16:34.079Z - Established a connection. Number of open connections: 81 -[NX Daemon Server] - 2023-12-20T16:16:34.080Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:34.080Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:34.082Z - Time taken for 'total for creating and serializing project graph' 0.09075021743774414ms -[NX Daemon Server] - 2023-12-20T16:16:34.087Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:34.087Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:34.128Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.128Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.128Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.138Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.139Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.139Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:34.144Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.144Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.144Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.147Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.147Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.147Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.167Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.167Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.167Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.168Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.168Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.168Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.170Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.170Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.170Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.773Z - Established a connection. Number of open connections: 82 -[NX Daemon Server] - 2023-12-20T16:16:34.773Z - Closed a connection. Number of open connections: 81 -[NX Daemon Server] - 2023-12-20T16:16:34.774Z - Established a connection. Number of open connections: 82 -[NX Daemon Server] - 2023-12-20T16:16:34.775Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:34.775Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:34.777Z - Time taken for 'total for creating and serializing project graph' 0.06537508964538574ms -[NX Daemon Server] - 2023-12-20T16:16:34.782Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:34.782Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:34.812Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.812Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.812Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.823Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.823Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.823Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.827Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.827Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.827Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.831Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.831Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:34.831Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.854Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.854Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.854Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.856Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.856Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.856Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:34.857Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.858Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:34.858Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:35.459Z - Established a connection. Number of open connections: 83 -[NX Daemon Server] - 2023-12-20T16:16:35.459Z - Closed a connection. Number of open connections: 82 -[NX Daemon Server] - 2023-12-20T16:16:35.459Z - Established a connection. Number of open connections: 83 -[NX Daemon Server] - 2023-12-20T16:16:35.460Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:35.460Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:35.462Z - Time taken for 'total for creating and serializing project graph' 0.0733330249786377ms -[NX Daemon Server] - 2023-12-20T16:16:35.468Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:35.468Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:35.499Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.499Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.499Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:35.510Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.510Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.510Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:35.514Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.514Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.514Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:35.517Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.518Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:35.518Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:35.541Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:35.541Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:35.541Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:35.543Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:35.543Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:35.543Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.132Z - Established a connection. Number of open connections: 84 -[NX Daemon Server] - 2023-12-20T16:16:36.132Z - Closed a connection. Number of open connections: 83 -[NX Daemon Server] - 2023-12-20T16:16:36.132Z - Established a connection. Number of open connections: 84 -[NX Daemon Server] - 2023-12-20T16:16:36.133Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:36.133Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:36.136Z - Time taken for 'total for creating and serializing project graph' 0.04954195022583008ms -[NX Daemon Server] - 2023-12-20T16:16:36.141Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:36.141Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:36.171Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.171Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.171Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.181Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.181Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.181Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.185Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.185Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.185Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.191Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.191Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.191Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.211Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.211Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.211Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.212Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.212Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.212Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.218Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.219Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.219Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:36.804Z - Established a connection. Number of open connections: 85 -[NX Daemon Server] - 2023-12-20T16:16:36.805Z - Closed a connection. Number of open connections: 84 -[NX Daemon Server] - 2023-12-20T16:16:36.805Z - Established a connection. Number of open connections: 85 -[NX Daemon Server] - 2023-12-20T16:16:36.806Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:36.806Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:36.808Z - Time taken for 'total for creating and serializing project graph' 0.08866715431213379ms -[NX Daemon Server] - 2023-12-20T16:16:36.813Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:36.813Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:36.844Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.844Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.844Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.854Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.854Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.854Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.858Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.858Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.858Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.862Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.862Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:36.862Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.882Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.882Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.882Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:36.886Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.886Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:36.886Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:37.511Z - Established a connection. Number of open connections: 86 -[NX Daemon Server] - 2023-12-20T16:16:37.512Z - Closed a connection. Number of open connections: 85 -[NX Daemon Server] - 2023-12-20T16:16:37.512Z - Established a connection. Number of open connections: 86 -[NX Daemon Server] - 2023-12-20T16:16:37.513Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:37.513Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:37.515Z - Time taken for 'total for creating and serializing project graph' 0.06129193305969238ms -[NX Daemon Server] - 2023-12-20T16:16:37.522Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:37.522Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2023-12-20T16:16:37.553Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.553Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.553Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:37.565Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.565Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.565Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:37.569Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.569Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.570Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:37.573Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.573Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:37.573Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:37.596Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:37.596Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:37.596Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:37.597Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:37.597Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:37.597Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:37.599Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:37.600Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:37.600Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:38.166Z - Established a connection. Number of open connections: 87 -[NX Daemon Server] - 2023-12-20T16:16:38.166Z - Closed a connection. Number of open connections: 86 -[NX Daemon Server] - 2023-12-20T16:16:38.166Z - Established a connection. Number of open connections: 87 -[NX Daemon Server] - 2023-12-20T16:16:38.167Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:38.167Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:38.169Z - Time taken for 'total for creating and serializing project graph' 0.04441690444946289ms -[NX Daemon Server] - 2023-12-20T16:16:38.174Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:38.174Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:38.202Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.202Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.202Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.212Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.212Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.212Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.216Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.216Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.216Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.219Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.219Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.219Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.237Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.237Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.237Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.240Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.240Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.240Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.825Z - Established a connection. Number of open connections: 88 -[NX Daemon Server] - 2023-12-20T16:16:38.825Z - Closed a connection. Number of open connections: 87 -[NX Daemon Server] - 2023-12-20T16:16:38.825Z - Established a connection. Number of open connections: 88 -[NX Daemon Server] - 2023-12-20T16:16:38.826Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:38.826Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:38.828Z - Time taken for 'total for creating and serializing project graph' 0.0625ms -[NX Daemon Server] - 2023-12-20T16:16:38.833Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:38.833Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:38.880Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.880Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.880Z - Handled HASH_TASKS. Handling time: 4. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.895Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.895Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.895Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.903Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.903Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.903Z - Handled HASH_TASKS. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.908Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.909Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:38.909Z - Handled HASH_TASKS. Handling time: 3. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:38.934Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.934Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.934Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.936Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.936Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.936Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:38.938Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.938Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:38.938Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:39.508Z - Established a connection. Number of open connections: 89 -[NX Daemon Server] - 2023-12-20T16:16:39.508Z - Closed a connection. Number of open connections: 88 -[NX Daemon Server] - 2023-12-20T16:16:39.509Z - Established a connection. Number of open connections: 89 -[NX Daemon Server] - 2023-12-20T16:16:39.510Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:39.510Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:39.511Z - Time taken for 'total for creating and serializing project graph' 0.04550004005432129ms -[NX Daemon Server] - 2023-12-20T16:16:39.516Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:39.516Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:16:39.544Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.545Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.545Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:39.553Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.553Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.553Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:39.557Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.557Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.557Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:39.560Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.560Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:39.560Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:39.578Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:39.578Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:39.578Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:39.579Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:39.579Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:39.579Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:39.581Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:39.581Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:39.581Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.188Z - Established a connection. Number of open connections: 90 -[NX Daemon Server] - 2023-12-20T16:16:40.188Z - Closed a connection. Number of open connections: 89 -[NX Daemon Server] - 2023-12-20T16:16:40.188Z - Established a connection. Number of open connections: 90 -[NX Daemon Server] - 2023-12-20T16:16:40.189Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:40.189Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:40.191Z - Time taken for 'total for creating and serializing project graph' 0.12333297729492188ms -[NX Daemon Server] - 2023-12-20T16:16:40.197Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:40.197Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:40.228Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.228Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.228Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.240Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.240Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.240Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.244Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.244Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.244Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.248Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.248Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.248Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.274Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.274Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.276Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.276Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.276Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.848Z - Established a connection. Number of open connections: 91 -[NX Daemon Server] - 2023-12-20T16:16:40.848Z - Closed a connection. Number of open connections: 90 -[NX Daemon Server] - 2023-12-20T16:16:40.848Z - Established a connection. Number of open connections: 91 -[NX Daemon Server] - 2023-12-20T16:16:40.849Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:40.849Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:40.852Z - Time taken for 'total for creating and serializing project graph' 0.05295896530151367ms -[NX Daemon Server] - 2023-12-20T16:16:40.856Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:40.856Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:40.888Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.888Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.888Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.899Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.899Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.899Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.902Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.902Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.902Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.906Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.906Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:40.906Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.929Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.930Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.930Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:40.932Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:40.932Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:40.932Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.522Z - Established a connection. Number of open connections: 92 -[NX Daemon Server] - 2023-12-20T16:16:41.522Z - Closed a connection. Number of open connections: 91 -[NX Daemon Server] - 2023-12-20T16:16:41.523Z - Established a connection. Number of open connections: 92 -[NX Daemon Server] - 2023-12-20T16:16:41.524Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:41.524Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:41.526Z - Time taken for 'total for creating and serializing project graph' 0.05137515068054199ms -[NX Daemon Server] - 2023-12-20T16:16:41.531Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:41.531Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:41.561Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.561Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.561Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.571Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.571Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.571Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.575Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.575Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.575Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.579Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.579Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:41.579Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:41.604Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:41.605Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:42.202Z - Established a connection. Number of open connections: 93 -[NX Daemon Server] - 2023-12-20T16:16:42.202Z - Closed a connection. Number of open connections: 92 -[NX Daemon Server] - 2023-12-20T16:16:42.202Z - Established a connection. Number of open connections: 93 -[NX Daemon Server] - 2023-12-20T16:16:42.203Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:42.203Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:42.206Z - Time taken for 'total for creating and serializing project graph' 0.05520796775817871ms -[NX Daemon Server] - 2023-12-20T16:16:42.210Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:42.210Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:42.240Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.240Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.240Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.250Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.250Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.250Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.255Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.255Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.255Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.259Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.259Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.259Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.281Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.281Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.281Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.285Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.285Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.285Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.286Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.286Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.286Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.838Z - Established a connection. Number of open connections: 94 -[NX Daemon Server] - 2023-12-20T16:16:42.838Z - Closed a connection. Number of open connections: 93 -[NX Daemon Server] - 2023-12-20T16:16:42.839Z - Established a connection. Number of open connections: 94 -[NX Daemon Server] - 2023-12-20T16:16:42.839Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:42.839Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:42.841Z - Time taken for 'total for creating and serializing project graph' 0.04574990272521973ms -[NX Daemon Server] - 2023-12-20T16:16:42.846Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:42.846Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:42.874Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.874Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.874Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.885Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.885Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.885Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.889Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.889Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.889Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.893Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.893Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:42.893Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.910Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:42.911Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.911Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:42.914Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.914Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:42.914Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:43.515Z - Established a connection. Number of open connections: 95 -[NX Daemon Server] - 2023-12-20T16:16:43.515Z - Closed a connection. Number of open connections: 94 -[NX Daemon Server] - 2023-12-20T16:16:43.516Z - Established a connection. Number of open connections: 95 -[NX Daemon Server] - 2023-12-20T16:16:43.517Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:43.517Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:43.519Z - Time taken for 'total for creating and serializing project graph' 0.04483389854431152ms -[NX Daemon Server] - 2023-12-20T16:16:43.524Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:43.524Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:43.558Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.558Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.558Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:43.569Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.569Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.569Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:43.573Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.573Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.573Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:43.576Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.576Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:43.576Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:43.595Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:43.595Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:43.595Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:43.597Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:43.598Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:43.598Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.187Z - Established a connection. Number of open connections: 96 -[NX Daemon Server] - 2023-12-20T16:16:44.188Z - Closed a connection. Number of open connections: 95 -[NX Daemon Server] - 2023-12-20T16:16:44.188Z - Established a connection. Number of open connections: 96 -[NX Daemon Server] - 2023-12-20T16:16:44.189Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:44.189Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:44.191Z - Time taken for 'total for creating and serializing project graph' 0.06433320045471191ms -[NX Daemon Server] - 2023-12-20T16:16:44.196Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:44.196Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:44.224Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.224Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.224Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.233Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.233Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.233Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.238Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.238Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.238Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.241Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.241Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.241Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.263Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.263Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:44.263Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.265Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:44.265Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:44.265Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.937Z - Established a connection. Number of open connections: 97 -[NX Daemon Server] - 2023-12-20T16:16:44.938Z - Closed a connection. Number of open connections: 96 -[NX Daemon Server] - 2023-12-20T16:16:44.938Z - Established a connection. Number of open connections: 97 -[NX Daemon Server] - 2023-12-20T16:16:44.939Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:44.939Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:44.941Z - Time taken for 'total for creating and serializing project graph' 0.07774996757507324ms -[NX Daemon Server] - 2023-12-20T16:16:44.947Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:44.947Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:44.980Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.980Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.980Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.990Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.990Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.990Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.995Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.995Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.995Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:44.999Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.999Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:44.999Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.060Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.060Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.060Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.061Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.061Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.061Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:45.067Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.067Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.067Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.700Z - Established a connection. Number of open connections: 98 -[NX Daemon Server] - 2023-12-20T16:16:45.700Z - Closed a connection. Number of open connections: 97 -[NX Daemon Server] - 2023-12-20T16:16:45.700Z - Established a connection. Number of open connections: 98 -[NX Daemon Server] - 2023-12-20T16:16:45.702Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:45.702Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:45.704Z - Time taken for 'total for creating and serializing project graph' 0.09320807456970215ms -[NX Daemon Server] - 2023-12-20T16:16:45.709Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:45.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:45.741Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.741Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.741Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.751Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.751Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.751Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.755Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.755Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.755Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.759Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.759Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:45.759Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.780Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.780Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.780Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.786Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:45.786Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:45.786Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:46.414Z - Established a connection. Number of open connections: 99 -[NX Daemon Server] - 2023-12-20T16:16:46.414Z - Closed a connection. Number of open connections: 98 -[NX Daemon Server] - 2023-12-20T16:16:46.414Z - Established a connection. Number of open connections: 99 -[NX Daemon Server] - 2023-12-20T16:16:46.415Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:46.415Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:46.417Z - Time taken for 'total for creating and serializing project graph' 0.05279088020324707ms -[NX Daemon Server] - 2023-12-20T16:16:46.423Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:46.423Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:46.455Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.455Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.455Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:46.466Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.466Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.466Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:46.470Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.471Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.471Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:46.474Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.475Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:46.475Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:46.496Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:46.496Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:46.496Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:46.500Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:46.500Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:46.500Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:46.503Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:46.503Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:46.503Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.152Z - Established a connection. Number of open connections: 100 -[NX Daemon Server] - 2023-12-20T16:16:47.152Z - Closed a connection. Number of open connections: 99 -[NX Daemon Server] - 2023-12-20T16:16:47.152Z - Established a connection. Number of open connections: 100 -[NX Daemon Server] - 2023-12-20T16:16:47.153Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:47.153Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:47.156Z - Time taken for 'total for creating and serializing project graph' 0.061625003814697266ms -[NX Daemon Server] - 2023-12-20T16:16:47.160Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:47.161Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:47.201Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.201Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.201Z - Handled HASH_TASKS. Handling time: 13. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.212Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.212Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.212Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.217Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.217Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.217Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.222Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.222Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.222Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.244Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.244Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.244Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.248Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.249Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:47.250Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.250Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.250Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.895Z - Established a connection. Number of open connections: 101 -[NX Daemon Server] - 2023-12-20T16:16:47.895Z - Closed a connection. Number of open connections: 100 -[NX Daemon Server] - 2023-12-20T16:16:47.896Z - Established a connection. Number of open connections: 101 -[NX Daemon Server] - 2023-12-20T16:16:47.897Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:47.897Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:47.899Z - Time taken for 'total for creating and serializing project graph' 0.057457923889160156ms -[NX Daemon Server] - 2023-12-20T16:16:47.904Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:47.905Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:47.933Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.933Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.933Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.944Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.944Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.944Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.948Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.948Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.948Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.951Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.951Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:47.951Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.970Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.970Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.970Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:47.972Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.972Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:47.972Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:48.572Z - Established a connection. Number of open connections: 102 -[NX Daemon Server] - 2023-12-20T16:16:48.572Z - Closed a connection. Number of open connections: 101 -[NX Daemon Server] - 2023-12-20T16:16:48.572Z - Established a connection. Number of open connections: 102 -[NX Daemon Server] - 2023-12-20T16:16:48.573Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:48.573Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:48.575Z - Time taken for 'total for creating and serializing project graph' 0.060791969299316406ms -[NX Daemon Server] - 2023-12-20T16:16:48.580Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:48.580Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:48.609Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.609Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.609Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:48.618Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.618Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.618Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:48.622Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.622Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.622Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:48.625Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.626Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:48.626Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:48.646Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:48.646Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:48.646Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:48.649Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:48.649Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:48.649Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:48.651Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:48.651Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:48.651Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.304Z - Established a connection. Number of open connections: 103 -[NX Daemon Server] - 2023-12-20T16:16:49.304Z - Established a connection. Number of open connections: 104 -[NX Daemon Server] - 2023-12-20T16:16:49.304Z - Closed a connection. Number of open connections: 103 -[NX Daemon Server] - 2023-12-20T16:16:49.305Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:49.305Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:49.307Z - Time taken for 'total for creating and serializing project graph' 0.10341715812683105ms -[NX Daemon Server] - 2023-12-20T16:16:49.312Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:49.312Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:49.340Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.340Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.340Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.350Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.350Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.350Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.354Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.354Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.354Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.357Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.357Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.357Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.379Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:49.379Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:49.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.381Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:49.381Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:49.381Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.382Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:49.382Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:49.382Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:49.956Z - Established a connection. Number of open connections: 104 -[NX Daemon Server] - 2023-12-20T16:16:49.956Z - Closed a connection. Number of open connections: 103 -[NX Daemon Server] - 2023-12-20T16:16:49.956Z - Established a connection. Number of open connections: 104 -[NX Daemon Server] - 2023-12-20T16:16:49.957Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:49.957Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:49.959Z - Time taken for 'total for creating and serializing project graph' 0.05716705322265625ms -[NX Daemon Server] - 2023-12-20T16:16:49.964Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:49.964Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:49.995Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.995Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:49.995Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.005Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.005Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.005Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.009Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.009Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.009Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.012Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.012Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.013Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.035Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.035Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.035Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.037Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.037Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.037Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.038Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.038Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.038Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.612Z - Established a connection. Number of open connections: 105 -[NX Daemon Server] - 2023-12-20T16:16:50.613Z - Closed a connection. Number of open connections: 104 -[NX Daemon Server] - 2023-12-20T16:16:50.613Z - Established a connection. Number of open connections: 105 -[NX Daemon Server] - 2023-12-20T16:16:50.615Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:50.615Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:50.617Z - Time taken for 'total for creating and serializing project graph' 0.11366701126098633ms -[NX Daemon Server] - 2023-12-20T16:16:50.619Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:50.619Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2023-12-20T16:16:50.649Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.649Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.649Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.658Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.658Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.658Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.662Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.662Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.662Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.666Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.666Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:50.666Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.688Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.688Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.688Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:50.691Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.691Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.691Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:50.691Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.692Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:50.692Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:51.292Z - Established a connection. Number of open connections: 106 -[NX Daemon Server] - 2023-12-20T16:16:51.299Z - Established a connection. Number of open connections: 107 -[NX Daemon Server] - 2023-12-20T16:16:51.299Z - Closed a connection. Number of open connections: 106 -[NX Daemon Server] - 2023-12-20T16:16:51.300Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:51.300Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:51.302Z - Time taken for 'total for creating and serializing project graph' 0.05304098129272461ms -[NX Daemon Server] - 2023-12-20T16:16:51.307Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:51.307Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:51.337Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.337Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.337Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:51.346Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.346Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.346Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:51.350Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.350Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.350Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:51.353Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.354Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:51.354Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:51.375Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:51.375Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:51.375Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:51.377Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:51.377Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:51.377Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:51.380Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:51.380Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:51.380Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.014Z - Established a connection. Number of open connections: 107 -[NX Daemon Server] - 2023-12-20T16:16:52.014Z - Closed a connection. Number of open connections: 106 -[NX Daemon Server] - 2023-12-20T16:16:52.014Z - Established a connection. Number of open connections: 107 -[NX Daemon Server] - 2023-12-20T16:16:52.015Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:52.016Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:52.017Z - Time taken for 'total for creating and serializing project graph' 0.05633401870727539ms -[NX Daemon Server] - 2023-12-20T16:16:52.022Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:52.022Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:16:52.053Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.053Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.053Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.064Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.064Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.064Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.068Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.068Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.068Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.072Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.072Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.072Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.096Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.096Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.096Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.096Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.096Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.097Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:52.097Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.097Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.097Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.766Z - Established a connection. Number of open connections: 108 -[NX Daemon Server] - 2023-12-20T16:16:52.766Z - Closed a connection. Number of open connections: 107 -[NX Daemon Server] - 2023-12-20T16:16:52.766Z - Established a connection. Number of open connections: 108 -[NX Daemon Server] - 2023-12-20T16:16:52.767Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:52.767Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:52.770Z - Time taken for 'total for creating and serializing project graph' 0.07566618919372559ms -[NX Daemon Server] - 2023-12-20T16:16:52.775Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:52.775Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:52.810Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.810Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.810Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.821Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.821Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.821Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.826Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.826Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.826Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.830Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.830Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:52.830Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.854Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.854Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.854Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:52.857Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.857Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.858Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:52.861Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.861Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:52.861Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.466Z - Established a connection. Number of open connections: 109 -[NX Daemon Server] - 2023-12-20T16:16:53.466Z - Closed a connection. Number of open connections: 108 -[NX Daemon Server] - 2023-12-20T16:16:53.467Z - Established a connection. Number of open connections: 109 -[NX Daemon Server] - 2023-12-20T16:16:53.468Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:53.468Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:53.470Z - Time taken for 'total for creating and serializing project graph' 0.07508277893066406ms -[NX Daemon Server] - 2023-12-20T16:16:53.475Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:53.475Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:53.503Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.503Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.503Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.512Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.512Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.512Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.517Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.517Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.517Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.520Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.520Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:53.520Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.539Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:53.539Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:53.539Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.540Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:53.540Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:53.540Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:53.542Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:53.542Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:53.542Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.138Z - Established a connection. Number of open connections: 110 -[NX Daemon Server] - 2023-12-20T16:16:54.138Z - Closed a connection. Number of open connections: 109 -[NX Daemon Server] - 2023-12-20T16:16:54.139Z - Established a connection. Number of open connections: 110 -[NX Daemon Server] - 2023-12-20T16:16:54.139Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:54.140Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:54.141Z - Time taken for 'total for creating and serializing project graph' 0.059332847595214844ms -[NX Daemon Server] - 2023-12-20T16:16:54.147Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:54.147Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:54.177Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.177Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.177Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.187Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.187Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.187Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.191Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.191Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.191Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.195Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.195Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.195Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.216Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.216Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.216Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.218Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.218Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.218Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.219Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.219Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.219Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.830Z - Established a connection. Number of open connections: 111 -[NX Daemon Server] - 2023-12-20T16:16:54.830Z - Closed a connection. Number of open connections: 110 -[NX Daemon Server] - 2023-12-20T16:16:54.831Z - Established a connection. Number of open connections: 111 -[NX Daemon Server] - 2023-12-20T16:16:54.832Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:54.832Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:54.834Z - Time taken for 'total for creating and serializing project graph' 0.04474997520446777ms -[NX Daemon Server] - 2023-12-20T16:16:54.840Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:54.840Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:16:54.868Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.869Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.869Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:54.878Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.878Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.878Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.882Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.883Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.883Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:54.887Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.887Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:54.887Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.909Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.909Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.909Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.910Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.910Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.910Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:54.914Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.914Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:54.914Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:55.505Z - Established a connection. Number of open connections: 112 -[NX Daemon Server] - 2023-12-20T16:16:55.505Z - Closed a connection. Number of open connections: 111 -[NX Daemon Server] - 2023-12-20T16:16:55.506Z - Established a connection. Number of open connections: 112 -[NX Daemon Server] - 2023-12-20T16:16:55.507Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:55.507Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:55.509Z - Time taken for 'total for creating and serializing project graph' 0.04041695594787598ms -[NX Daemon Server] - 2023-12-20T16:16:55.513Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:55.513Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:16:55.542Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.542Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.542Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:55.551Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.551Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.551Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:55.555Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.555Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.555Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:55.558Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.558Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:55.558Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:55.579Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:55.579Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:55.579Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:55.579Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:55.580Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:55.580Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:55.583Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:55.583Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:55.583Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.187Z - Established a connection. Number of open connections: 113 -[NX Daemon Server] - 2023-12-20T16:16:56.187Z - Closed a connection. Number of open connections: 112 -[NX Daemon Server] - 2023-12-20T16:16:56.188Z - Established a connection. Number of open connections: 113 -[NX Daemon Server] - 2023-12-20T16:16:56.188Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:56.188Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:56.190Z - Time taken for 'total for creating and serializing project graph' 0.039166927337646484ms -[NX Daemon Server] - 2023-12-20T16:16:56.195Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:56.195Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:56.224Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.225Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:56.234Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.234Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.234Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.239Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.239Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.239Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.243Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.243Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.243Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.273Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:56.273Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:56.273Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.274Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.274Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:56.274Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.915Z - Established a connection. Number of open connections: 114 -[NX Daemon Server] - 2023-12-20T16:16:56.915Z - Closed a connection. Number of open connections: 113 -[NX Daemon Server] - 2023-12-20T16:16:56.916Z - Established a connection. Number of open connections: 114 -[NX Daemon Server] - 2023-12-20T16:16:56.917Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:56.917Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:56.919Z - Time taken for 'total for creating and serializing project graph' 0.0644998550415039ms -[NX Daemon Server] - 2023-12-20T16:16:56.924Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:56.924Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:56.964Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.964Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.964Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.973Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.973Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.973Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.977Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.977Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.977Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:56.980Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.980Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:56.980Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.005Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.006Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.006Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:57.008Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.008Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.008Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.009Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.009Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.009Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.602Z - Established a connection. Number of open connections: 115 -[NX Daemon Server] - 2023-12-20T16:16:57.602Z - Closed a connection. Number of open connections: 114 -[NX Daemon Server] - 2023-12-20T16:16:57.602Z - Established a connection. Number of open connections: 115 -[NX Daemon Server] - 2023-12-20T16:16:57.603Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:57.603Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:57.606Z - Time taken for 'total for creating and serializing project graph' 0.042417049407958984ms -[NX Daemon Server] - 2023-12-20T16:16:57.610Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:57.610Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:57.640Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.640Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.640Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.650Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.650Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.650Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.654Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.654Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.654Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.657Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.657Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:57.657Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.679Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.679Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.679Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:57.680Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.680Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:57.680Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:58.310Z - Established a connection. Number of open connections: 116 -[NX Daemon Server] - 2023-12-20T16:16:58.310Z - Closed a connection. Number of open connections: 115 -[NX Daemon Server] - 2023-12-20T16:16:58.310Z - Established a connection. Number of open connections: 116 -[NX Daemon Server] - 2023-12-20T16:16:58.311Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:58.311Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:58.313Z - Time taken for 'total for creating and serializing project graph' 0.04375004768371582ms -[NX Daemon Server] - 2023-12-20T16:16:58.318Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:58.318Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:58.346Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.347Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.347Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:58.356Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.356Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.356Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:58.360Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.360Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.361Z - Handled HASH_TASKS. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:16:58.364Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.364Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:58.364Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:58.388Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:58.388Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:58.388Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:58.389Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:58.389Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:58.389Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:58.391Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:58.391Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:58.391Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:58.994Z - Established a connection. Number of open connections: 117 -[NX Daemon Server] - 2023-12-20T16:16:58.994Z - Closed a connection. Number of open connections: 116 -[NX Daemon Server] - 2023-12-20T16:16:58.994Z - Established a connection. Number of open connections: 117 -[NX Daemon Server] - 2023-12-20T16:16:58.995Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:58.995Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:58.997Z - Time taken for 'total for creating and serializing project graph' 0.04154205322265625ms -[NX Daemon Server] - 2023-12-20T16:16:59.002Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:59.002Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:16:59.030Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.030Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.030Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.042Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.042Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.042Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.046Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.046Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.046Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.051Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.051Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.051Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.075Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.075Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.075Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.078Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.078Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.078Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.081Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.081Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.081Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.700Z - Established a connection. Number of open connections: 118 -[NX Daemon Server] - 2023-12-20T16:16:59.701Z - Closed a connection. Number of open connections: 117 -[NX Daemon Server] - 2023-12-20T16:16:59.701Z - Established a connection. Number of open connections: 118 -[NX Daemon Server] - 2023-12-20T16:16:59.702Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:16:59.702Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:16:59.704Z - Time taken for 'total for creating and serializing project graph' 0.05854201316833496ms -[NX Daemon Server] - 2023-12-20T16:16:59.707Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:16:59.707Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2023-12-20T16:16:59.738Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.738Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.738Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.748Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.748Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.748Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.752Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.752Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.752Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.756Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.756Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:16:59.756Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.785Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.785Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.785Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.788Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.788Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.788Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:16:59.789Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.789Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:16:59.789Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:00.415Z - Established a connection. Number of open connections: 119 -[NX Daemon Server] - 2023-12-20T16:17:00.415Z - Closed a connection. Number of open connections: 118 -[NX Daemon Server] - 2023-12-20T16:17:00.415Z - Established a connection. Number of open connections: 119 -[NX Daemon Server] - 2023-12-20T16:17:00.416Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:00.417Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:00.419Z - Time taken for 'total for creating and serializing project graph' 0.07074999809265137ms -[NX Daemon Server] - 2023-12-20T16:17:00.424Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:00.424Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:17:00.453Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.453Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.453Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:00.463Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.463Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.463Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:00.468Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.468Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.468Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:00.472Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.472Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:00.472Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:00.498Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:00.498Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:00.498Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:00.498Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:00.499Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:00.499Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:00.501Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:00.501Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:00.501Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:01.224Z - Established a connection. Number of open connections: 120 -[NX Daemon Server] - 2023-12-20T16:17:01.225Z - Closed a connection. Number of open connections: 119 -[NX Daemon Server] - 2023-12-20T16:17:01.225Z - Established a connection. Number of open connections: 120 -[NX Daemon Server] - 2023-12-20T16:17:01.226Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:01.226Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:01.228Z - Time taken for 'total for creating and serializing project graph' 0.09304189682006836ms -[NX Daemon Server] - 2023-12-20T16:17:01.234Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:01.234Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:17:01.265Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.265Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.265Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:01.286Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.286Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.286Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:01.291Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.291Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.291Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:01.295Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.295Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:01.295Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:01.318Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:01.319Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:01.319Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:01.322Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:01.322Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:01.322Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:01.325Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:01.325Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:01.325Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:02.164Z - Established a connection. Number of open connections: 121 -[NX Daemon Server] - 2023-12-20T16:17:02.164Z - Closed a connection. Number of open connections: 120 -[NX Daemon Server] - 2023-12-20T16:17:02.164Z - Established a connection. Number of open connections: 121 -[NX Daemon Server] - 2023-12-20T16:17:02.165Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:02.165Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:02.167Z - Time taken for 'total for creating and serializing project graph' 0.07062482833862305ms -[NX Daemon Server] - 2023-12-20T16:17:02.173Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:02.173Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:17:02.205Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.206Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.206Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:02.217Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.217Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.217Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:02.221Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.221Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.221Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:02.225Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.225Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:02.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:02.248Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:02.248Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:02.248Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:02.249Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:02.249Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:02.249Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:02.251Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:02.251Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:02.251Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.059Z - Established a connection. Number of open connections: 122 -[NX Daemon Server] - 2023-12-20T16:17:03.059Z - Closed a connection. Number of open connections: 121 -[NX Daemon Server] - 2023-12-20T16:17:03.059Z - Established a connection. Number of open connections: 122 -[NX Daemon Server] - 2023-12-20T16:17:03.061Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:03.061Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:03.066Z - Time taken for 'total for creating and serializing project graph' 0.0867919921875ms -[NX Daemon Server] - 2023-12-20T16:17:03.072Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:03.073Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 12. -[NX Daemon Server] - 2023-12-20T16:17:03.109Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.109Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.109Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.120Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.136Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.136Z - Handled HASH_TASKS. Handling time: 2. Response time: 16. -[NX Daemon Server] - 2023-12-20T16:17:03.141Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.142Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.142Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:03.146Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.146Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.146Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.181Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:03.181Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:03.181Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.181Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:03.203Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:03.203Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 22. -[NX Daemon Server] - 2023-12-20T16:17:03.204Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:03.204Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:03.204Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.905Z - Established a connection. Number of open connections: 123 -[NX Daemon Server] - 2023-12-20T16:17:03.906Z - Closed a connection. Number of open connections: 122 -[NX Daemon Server] - 2023-12-20T16:17:03.906Z - Established a connection. Number of open connections: 123 -[NX Daemon Server] - 2023-12-20T16:17:03.907Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:03.907Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:03.909Z - Time taken for 'total for creating and serializing project graph' 0.07158398628234863ms -[NX Daemon Server] - 2023-12-20T16:17:03.914Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:03.915Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:17:03.955Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.955Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.955Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.966Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.966Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.966Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.972Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.972Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.972Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:03.977Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.977Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:03.977Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.002Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.002Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.002Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.005Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.005Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.005Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.009Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.009Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.009Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.657Z - Established a connection. Number of open connections: 124 -[NX Daemon Server] - 2023-12-20T16:17:04.657Z - Closed a connection. Number of open connections: 123 -[NX Daemon Server] - 2023-12-20T16:17:04.658Z - Established a connection. Number of open connections: 124 -[NX Daemon Server] - 2023-12-20T16:17:04.658Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:04.659Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:04.660Z - Time taken for 'total for creating and serializing project graph' 0.06349992752075195ms -[NX Daemon Server] - 2023-12-20T16:17:04.665Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:04.665Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2023-12-20T16:17:04.694Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.694Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.694Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.704Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.704Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.704Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.708Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.708Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.708Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.711Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.712Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:04.712Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:04.735Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.735Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.735Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.737Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.737Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.737Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:04.738Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.738Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:04.738Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:05.368Z - Established a connection. Number of open connections: 125 -[NX Daemon Server] - 2023-12-20T16:17:05.368Z - Closed a connection. Number of open connections: 124 -[NX Daemon Server] - 2023-12-20T16:17:05.369Z - Established a connection. Number of open connections: 125 -[NX Daemon Server] - 2023-12-20T16:17:05.370Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:05.370Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:05.372Z - Time taken for 'total for creating and serializing project graph' 0.0408329963684082ms -[NX Daemon Server] - 2023-12-20T16:17:05.377Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:05.377Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:17:05.409Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.409Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.409Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:05.420Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.420Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.420Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:05.424Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.424Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.425Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:05.431Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.431Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:05.431Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:05.454Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:05.454Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:05.454Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:05.455Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:05.455Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:05.455Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:05.460Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:05.460Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:05.460Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.096Z - Established a connection. Number of open connections: 126 -[NX Daemon Server] - 2023-12-20T16:17:06.096Z - Closed a connection. Number of open connections: 125 -[NX Daemon Server] - 2023-12-20T16:17:06.096Z - Established a connection. Number of open connections: 126 -[NX Daemon Server] - 2023-12-20T16:17:06.098Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:06.098Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:06.099Z - Time taken for 'total for creating and serializing project graph' 0.0581660270690918ms -[NX Daemon Server] - 2023-12-20T16:17:06.105Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:06.105Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:17:06.135Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.135Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.135Z - Handled HASH_TASKS. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.151Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.151Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.151Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.155Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.155Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.155Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.159Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.159Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.159Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.183Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.183Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.183Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.188Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.188Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.188Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.189Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.189Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.189Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.828Z - Established a connection. Number of open connections: 127 -[NX Daemon Server] - 2023-12-20T16:17:06.828Z - Closed a connection. Number of open connections: 126 -[NX Daemon Server] - 2023-12-20T16:17:06.829Z - Established a connection. Number of open connections: 127 -[NX Daemon Server] - 2023-12-20T16:17:06.830Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:06.830Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:06.832Z - Time taken for 'total for creating and serializing project graph' 0.055291175842285156ms -[NX Daemon Server] - 2023-12-20T16:17:06.837Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:06.837Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:17:06.866Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.867Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.867Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:06.877Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.877Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.877Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.881Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.881Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.881Z - Handled HASH_TASKS. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.885Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.885Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:06.885Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.906Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.906Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.906Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.908Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.908Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.908Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:06.909Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.909Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:06.909Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:07.643Z - Established a connection. Number of open connections: 128 -[NX Daemon Server] - 2023-12-20T16:17:07.643Z - Closed a connection. Number of open connections: 127 -[NX Daemon Server] - 2023-12-20T16:17:07.643Z - Established a connection. Number of open connections: 128 -[NX Daemon Server] - 2023-12-20T16:17:07.645Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:07.645Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:07.647Z - Time taken for 'total for creating and serializing project graph' 0.08516716957092285ms -[NX Daemon Server] - 2023-12-20T16:17:07.653Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:07.653Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:17:07.683Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.683Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.683Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:07.694Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.695Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.695Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:07.699Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.699Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.699Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:07.703Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.703Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:07.703Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:07.730Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:07.730Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:07.730Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:07.734Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:07.734Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:07.734Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.439Z - Established a connection. Number of open connections: 129 -[NX Daemon Server] - 2023-12-20T16:17:08.439Z - Closed a connection. Number of open connections: 128 -[NX Daemon Server] - 2023-12-20T16:17:08.439Z - Established a connection. Number of open connections: 129 -[NX Daemon Server] - 2023-12-20T16:17:08.440Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:08.440Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:08.442Z - Time taken for 'total for creating and serializing project graph' 0.06508302688598633ms -[NX Daemon Server] - 2023-12-20T16:17:08.447Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:08.448Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:17:08.478Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.478Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.478Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.489Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.489Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.489Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.493Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.493Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.494Z - Handled HASH_TASKS. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:08.497Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.497Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:08.497Z - Handled HASH_TASKS. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.524Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:08.524Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:08.524Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.527Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:08.527Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:08.527Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.528Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:08.528Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:08.528Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:08.846Z - Closed a connection. Number of open connections: 128 -[NX Daemon Server] - 2023-12-20T16:17:08.846Z - Closed a connection. Number of open connections: 127 -[NX Daemon Server] - 2023-12-20T16:17:08.858Z - Closed a connection. Number of open connections: 126 -[NX Daemon Server] - 2023-12-20T16:17:08.863Z - Closed a connection. Number of open connections: 125 -[NX Daemon Server] - 2023-12-20T16:17:08.879Z - Closed a connection. Number of open connections: 124 -[NX Daemon Server] - 2023-12-20T16:17:08.881Z - Closed a connection. Number of open connections: 123 -[NX Daemon Server] - 2023-12-20T16:17:08.881Z - Closed a connection. Number of open connections: 122 -[NX Daemon Server] - 2023-12-20T16:17:08.881Z - Closed a connection. Number of open connections: 121 -[NX Daemon Server] - 2023-12-20T16:17:08.889Z - Closed a connection. Number of open connections: 120 -[NX Daemon Server] - 2023-12-20T16:17:08.894Z - Closed a connection. Number of open connections: 119 -[NX Daemon Server] - 2023-12-20T16:17:08.911Z - Closed a connection. Number of open connections: 118 -[NX Daemon Server] - 2023-12-20T16:17:08.911Z - Closed a connection. Number of open connections: 117 -[NX Daemon Server] - 2023-12-20T16:17:08.919Z - Closed a connection. Number of open connections: 116 -[NX Daemon Server] - 2023-12-20T16:17:08.935Z - Closed a connection. Number of open connections: 115 -[NX Daemon Server] - 2023-12-20T16:17:08.935Z - Closed a connection. Number of open connections: 114 -[NX Daemon Server] - 2023-12-20T16:17:08.956Z - Closed a connection. Number of open connections: 113 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 112 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 111 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 110 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 109 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 108 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 107 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 106 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 105 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 104 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 103 -[NX Daemon Server] - 2023-12-20T16:17:09.173Z - Closed a connection. Number of open connections: 102 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 101 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 100 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 99 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 98 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 97 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 96 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 95 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 94 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 93 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 92 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 91 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 90 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 89 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 88 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 87 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 86 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 85 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 84 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 83 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 82 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 81 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 80 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 79 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 78 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 77 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 76 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 75 -[NX Daemon Server] - 2023-12-20T16:17:09.174Z - Closed a connection. Number of open connections: 74 -[NX Daemon Server] - 2023-12-20T16:17:09.176Z - Closed a connection. Number of open connections: 73 -[NX Daemon Server] - 2023-12-20T16:17:09.176Z - Closed a connection. Number of open connections: 72 -[NX Daemon Server] - 2023-12-20T16:17:09.178Z - Closed a connection. Number of open connections: 71 -[NX Daemon Server] - 2023-12-20T16:17:09.178Z - Closed a connection. Number of open connections: 70 -[NX Daemon Server] - 2023-12-20T16:17:09.195Z - Closed a connection. Number of open connections: 69 -[NX Daemon Server] - 2023-12-20T16:17:09.195Z - Closed a connection. Number of open connections: 68 -[NX Daemon Server] - 2023-12-20T16:17:09.195Z - Closed a connection. Number of open connections: 67 -[NX Daemon Server] - 2023-12-20T16:17:09.411Z - Closed a connection. Number of open connections: 66 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 65 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 64 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 63 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 62 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 61 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 60 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 59 -[NX Daemon Server] - 2023-12-20T16:17:09.412Z - Closed a connection. Number of open connections: 58 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 57 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 56 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 55 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 54 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 53 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 52 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 51 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 50 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 49 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 48 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 47 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 46 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 45 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 44 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 43 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 42 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 41 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 40 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 39 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 38 -[NX Daemon Server] - 2023-12-20T16:17:09.414Z - Closed a connection. Number of open connections: 37 -[NX Daemon Server] - 2023-12-20T16:17:09.430Z - Closed a connection. Number of open connections: 36 -[NX Daemon Server] - 2023-12-20T16:17:09.430Z - Closed a connection. Number of open connections: 35 -[NX Daemon Server] - 2023-12-20T16:17:09.450Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:09.450Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:09.450Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:09.464Z - Closed a connection. Number of open connections: 34 -[NX Daemon Server] - 2023-12-20T16:17:09.470Z - Closed a connection. Number of open connections: 33 -[NX Daemon Server] - 2023-12-20T16:17:09.470Z - Closed a connection. Number of open connections: 32 -[NX Daemon Server] - 2023-12-20T16:17:09.477Z - Closed a connection. Number of open connections: 31 -[NX Daemon Server] - 2023-12-20T16:17:09.483Z - Closed a connection. Number of open connections: 30 -[NX Daemon Server] - 2023-12-20T16:17:09.483Z - Closed a connection. Number of open connections: 29 -[NX Daemon Server] - 2023-12-20T16:17:09.483Z - Closed a connection. Number of open connections: 28 -[NX Daemon Server] - 2023-12-20T16:17:09.492Z - Closed a connection. Number of open connections: 27 -[NX Daemon Server] - 2023-12-20T16:17:09.492Z - Closed a connection. Number of open connections: 26 -[NX Daemon Server] - 2023-12-20T16:17:09.498Z - Closed a connection. Number of open connections: 25 -[NX Daemon Server] - 2023-12-20T16:17:09.498Z - Closed a connection. Number of open connections: 24 -[NX Daemon Server] - 2023-12-20T16:17:09.509Z - Closed a connection. Number of open connections: 23 -[NX Daemon Server] - 2023-12-20T16:17:09.509Z - Closed a connection. Number of open connections: 22 -[NX Daemon Server] - 2023-12-20T16:17:09.516Z - Closed a connection. Number of open connections: 21 -[NX Daemon Server] - 2023-12-20T16:17:09.518Z - Closed a connection. Number of open connections: 20 -[NX Daemon Server] - 2023-12-20T16:17:09.525Z - Closed a connection. Number of open connections: 19 -[NX Daemon Server] - 2023-12-20T16:17:09.526Z - Closed a connection. Number of open connections: 18 -[NX Daemon Server] - 2023-12-20T16:17:09.527Z - Closed a connection. Number of open connections: 17 -[NX Daemon Server] - 2023-12-20T16:17:09.544Z - Closed a connection. Number of open connections: 16 -[NX Daemon Server] - 2023-12-20T16:17:09.551Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Closed a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Closed a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:17:09.551Z - Closed a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:17:09.558Z - Closed a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:17:09.567Z - Closed a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:17:09.567Z - Closed a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:17:09.570Z - Closed a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:17:09.570Z - Closed a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:17:09.576Z - Closed a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:17:09.576Z - Closed a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:17:09.576Z - Closed a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:17:09.584Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:17:09.592Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:17:09.706Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:17:09.727Z - Closed a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:17:09.745Z - Closed a connection. Number of open connections: 0 -[NX Daemon Server] - 2023-12-20T16:17:16.517Z - Established a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:17:16.517Z - Closed a connection. Number of open connections: 0 -[NX Daemon Server] - 2023-12-20T16:17:16.518Z - Established a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:17:16.518Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:16.518Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:16.520Z - Time taken for 'total for creating and serializing project graph' 0.05683302879333496ms -[NX Daemon Server] - 2023-12-20T16:17:16.526Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:16.526Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2023-12-20T16:17:16.548Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:16.549Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:16.549Z - Handled HASH_TASKS. Handling time: 8. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:17.779Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:17.779Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:17.779Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:18.779Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:17:18.780Z - Closed a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:17:18.781Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:17:18.783Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:18.783Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:18.786Z - Time taken for 'total for creating and serializing project graph' 0.17520904541015625ms -[NX Daemon Server] - 2023-12-20T16:17:18.797Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:18.797Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. -[NX Daemon Server] - 2023-12-20T16:17:18.832Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:18.851Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:18.851Z - Handled HASH_TASKS. Handling time: 22. Response time: 19. -[NX Daemon Server] - 2023-12-20T16:17:18.995Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:18.995Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:18.995Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:19.000Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:19.000Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:19.000Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:20.214Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:17:20.216Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:17:20.217Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:17:20.235Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:20.235Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:20.238Z - Time taken for 'total for creating and serializing project graph' 0.0969998836517334ms -[NX Daemon Server] - 2023-12-20T16:17:20.307Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:20.307Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 72. -[NX Daemon Server] - 2023-12-20T16:17:20.338Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:20.350Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:20.350Z - Handled HASH_TASKS. Handling time: 19. Response time: 12. -[NX Daemon Server] - 2023-12-20T16:17:20.416Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:20.416Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:20.416Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:20.420Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:20.420Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:20.420Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:21.417Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:21.417Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:21.417Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:21.691Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:17:21.691Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:17:21.691Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:17:21.692Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:21.692Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:21.695Z - Time taken for 'total for creating and serializing project graph' 0.0657501220703125ms -[NX Daemon Server] - 2023-12-20T16:17:21.730Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:21.730Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 38. -[NX Daemon Server] - 2023-12-20T16:17:21.751Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:21.765Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:21.765Z - Handled HASH_TASKS. Handling time: 8. Response time: 14. -[NX Daemon Server] - 2023-12-20T16:17:21.824Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:21.824Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:21.824Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:21.828Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:21.828Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:21.828Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:22.998Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:17:22.998Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:17:22.999Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:17:23.000Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:23.000Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:23.005Z - Time taken for 'total for creating and serializing project graph' 0.21450018882751465ms -[NX Daemon Server] - 2023-12-20T16:17:23.042Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:23.042Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 42. -[NX Daemon Server] - 2023-12-20T16:17:23.070Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:23.071Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:23.071Z - Handled HASH_TASKS. Handling time: 10. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:23.237Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:23.237Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:23.237Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:23.240Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:23.240Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:23.240Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:25.483Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:25.483Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:25.483Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:25.631Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:25.631Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:25.631Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:26.240Z - Established a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:17:26.249Z - Closed a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:17:26.249Z - Established a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:17:26.257Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:26.257Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:26.261Z - Time taken for 'total for creating and serializing project graph' 0.2618751525878906ms -[NX Daemon Server] - 2023-12-20T16:17:26.293Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:26.293Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 36. -[NX Daemon Server] - 2023-12-20T16:17:26.356Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:26.535Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:26.535Z - Handled HASH_TASKS. Handling time: 11. Response time: 179. -[NX Daemon Server] - 2023-12-20T16:17:26.766Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:26.766Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:26.766Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:26.769Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:26.769Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:26.769Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:28.579Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:28.580Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:28.580Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:29.543Z - Established a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:17:29.544Z - Established a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:17:29.544Z - Closed a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:17:29.545Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:29.545Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:29.550Z - Time taken for 'total for creating and serializing project graph' 0.11491584777832031ms -[NX Daemon Server] - 2023-12-20T16:17:29.652Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:29.652Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 107. -[NX Daemon Server] - 2023-12-20T16:17:29.770Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:29.819Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:29.819Z - Handled HASH_TASKS. Handling time: 21. Response time: 49. -[NX Daemon Server] - 2023-12-20T16:17:29.996Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:29.996Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:29.996Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:29.998Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:29.998Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:29.998Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:31.467Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:31.467Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:31.467Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:32.131Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:32.131Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:32.131Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:33.578Z - Established a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:17:33.579Z - Closed a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:17:33.580Z - Established a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:17:33.583Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:33.583Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:33.591Z - Time taken for 'total for creating and serializing project graph' 0.9372498989105225ms -[NX Daemon Server] - 2023-12-20T16:17:33.690Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:33.690Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 107. -[NX Daemon Server] - 2023-12-20T16:17:33.785Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:33.787Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:33.787Z - Handled HASH_TASKS. Handling time: 11. Response time: 2. -[NX Daemon Server] - 2023-12-20T16:17:34.078Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:34.078Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:34.078Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:34.091Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:34.091Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:34.091Z - Handled RECORD_OUTPUTS_HASH. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:34.510Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:34.510Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:34.510Z - Handled RECORD_OUTPUTS_HASH. Handling time: 5. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:34.643Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:34.643Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:34.643Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:37.235Z - Established a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:17:37.235Z - Closed a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:17:37.269Z - Established a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:17:37.300Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:37.300Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:37.304Z - Time taken for 'total for creating and serializing project graph' 0.2628750801086426ms -[NX Daemon Server] - 2023-12-20T16:17:37.378Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:37.378Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 78. -[NX Daemon Server] - 2023-12-20T16:17:37.462Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:37.546Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:37.548Z - Handled HASH_TASKS. Handling time: 26. Response time: 84. -[NX Daemon Server] - 2023-12-20T16:17:37.662Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:37.662Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:37.662Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:37.665Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:37.665Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:37.665Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:38.634Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:38.634Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:38.634Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:38.723Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:38.723Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:38.723Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:41.303Z - Established a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:17:41.304Z - Established a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:17:41.304Z - Closed a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:17:41.305Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:41.305Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:41.332Z - Time taken for 'total for creating and serializing project graph' 0.19054102897644043ms -[NX Daemon Server] - 2023-12-20T16:17:41.463Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:41.463Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:41.463Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:41.501Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:41.501Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 196. -[NX Daemon Server] - 2023-12-20T16:17:41.537Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:41.537Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:41.537Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:41.624Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:41.629Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:41.629Z - Handled HASH_TASKS. Handling time: 23. Response time: 5. -[NX Daemon Server] - 2023-12-20T16:17:41.692Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:41.692Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:41.692Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:41.695Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:41.695Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:41.695Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:44.340Z - Established a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:17:44.349Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:44.349Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:44.349Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:44.350Z - Closed a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:17:44.350Z - Established a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:17:44.352Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:44.352Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:44.354Z - Time taken for 'total for creating and serializing project graph' 0.16533303260803223ms -[NX Daemon Server] - 2023-12-20T16:17:44.425Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:44.425Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 73. -[NX Daemon Server] - 2023-12-20T16:17:44.483Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:44.506Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:44.506Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:44.506Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:44.519Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:44.519Z - Handled HASH_TASKS. Handling time: 20. Response time: 36. -[NX Daemon Server] - 2023-12-20T16:17:44.638Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:44.638Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:44.638Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:44.644Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:44.644Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:44.644Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:46.355Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:46.355Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:46.355Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:47.193Z - Established a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:17:47.195Z - Closed a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:17:47.207Z - Established a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:17:47.209Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:47.209Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:47.214Z - Time taken for 'total for creating and serializing project graph' 0.23541688919067383ms -[NX Daemon Server] - 2023-12-20T16:17:47.341Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:47.341Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 132. -[NX Daemon Server] - 2023-12-20T16:17:47.374Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:47.376Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:47.376Z - Handled HASH_TASKS. Handling time: 14. Response time: 2. -[NX Daemon Server] - 2023-12-20T16:17:47.588Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:47.588Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:47.588Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:47.591Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:47.591Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:47.591Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:48.748Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:48.748Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:48.748Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:50.448Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:50.448Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:50.448Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:50.470Z - Established a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:17:50.470Z - Closed a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:17:50.470Z - Established a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:17:50.498Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:50.498Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:50.502Z - Time taken for 'total for creating and serializing project graph' 0.21212506294250488ms -[NX Daemon Server] - 2023-12-20T16:17:50.634Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:50.634Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 136. -[NX Daemon Server] - 2023-12-20T16:17:50.726Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:50.732Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:50.733Z - Handled HASH_TASKS. Handling time: 44. Response time: 7. -[NX Daemon Server] - 2023-12-20T16:17:50.831Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:50.831Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:50.831Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:50.840Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:50.840Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:50.840Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:51.212Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:51.212Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:51.212Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:54.015Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:54.018Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:54.018Z - Handled RECORD_OUTPUTS_HASH. Handling time: 6. Response time: 3. -[NX Daemon Server] - 2023-12-20T16:17:54.446Z - Established a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:17:54.446Z - Established a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:17:54.446Z - Closed a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:17:54.449Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:54.449Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:54.452Z - Time taken for 'total for creating and serializing project graph' 0.22983288764953613ms -[NX Daemon Server] - 2023-12-20T16:17:54.480Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:54.480Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 31. -[NX Daemon Server] - 2023-12-20T16:17:54.526Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:54.566Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:54.567Z - Handled HASH_TASKS. Handling time: 15. Response time: 40. -[NX Daemon Server] - 2023-12-20T16:17:54.701Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:54.701Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:54.701Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:54.705Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:54.705Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:54.705Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:55.038Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:55.038Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:55.038Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:58.982Z - Established a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:17:58.983Z - Established a connection. Number of open connections: 16 -[NX Daemon Server] - 2023-12-20T16:17:58.985Z - Closed a connection. Number of open connections: 15 -[NX Daemon Server] - 2023-12-20T16:17:58.990Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2023-12-20T16:17:58.990Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2023-12-20T16:17:59.002Z - Time taken for 'total for creating and serializing project graph' 0.3366658687591553ms -[NX Daemon Server] - 2023-12-20T16:17:59.177Z - Done responding to the client project-graph -[NX Daemon Server] - 2023-12-20T16:17:59.177Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 187. -[NX Daemon Server] - 2023-12-20T16:17:59.222Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:59.351Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:59.351Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:59.351Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:59.359Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2023-12-20T16:17:59.359Z - Handled HASH_TASKS. Handling time: 17. Response time: 137. -[NX Daemon Server] - 2023-12-20T16:17:59.436Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:59.437Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2023-12-20T16:17:59.437Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2023-12-20T16:17:59.439Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:59.439Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:59.439Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:17:59.668Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:59.668Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2023-12-20T16:17:59.668Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2023-12-20T16:18:00.404Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2023-12-20T16:18:00.413Z - [WATCHER]: .github/workflows/ci.yml was modified -[NX Daemon Server] - 2023-12-20T16:18:00.520Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2023-12-20T16:18:00.520Z - [REQUEST]: .github/workflows/ci.yml -[NX Daemon Server] - 2023-12-20T16:18:00.526Z - [REQUEST]: -[NX Daemon Server] - 2023-12-20T16:18:01.225Z - Time taken for 'hash changed files from watcher' 1.1470000743865967ms -[NX Daemon Server] - 2023-12-20T16:18:02.038Z - Closed a connection. Number of open connections: 14 -[NX Daemon Server] - 2023-12-20T16:18:02.038Z - Closed a connection. Number of open connections: 13 -[NX Daemon Server] - 2023-12-20T16:18:02.038Z - Closed a connection. Number of open connections: 12 -[NX Daemon Server] - 2023-12-20T16:18:02.040Z - Closed a connection. Number of open connections: 11 -[NX Daemon Server] - 2023-12-20T16:18:02.040Z - Closed a connection. Number of open connections: 10 -[NX Daemon Server] - 2023-12-20T16:18:02.040Z - Closed a connection. Number of open connections: 9 -[NX Daemon Server] - 2023-12-20T16:18:02.043Z - Closed a connection. Number of open connections: 8 -[NX Daemon Server] - 2023-12-20T16:18:02.049Z - Closed a connection. Number of open connections: 7 -[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 6 -[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 5 -[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2023-12-20T16:18:02.059Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2023-12-20T16:18:02.062Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2023-12-20T16:18:02.077Z - Closed a connection. Number of open connections: 1 -[NX Daemon Server] - 2023-12-20T16:18:02.096Z - Closed a connection. Number of open connections: 0 -[NX Daemon Server] - 2023-12-20T16:18:23.344Z - [WATCHER]: .gitignore was modified -[NX Daemon Server] - 2023-12-20T16:18:23.345Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2023-12-20T16:18:23.345Z - [WATCHER]: Stopping the watcher for /Users/kiwi/Documents/code/private/nx-plugin (sources) -[NX Daemon Server] - 2023-12-20T16:18:23.345Z - [WATCHER]: Stopping the watcher for /Users/kiwi/Documents/code/private/nx-plugin (outputs) -[NX Daemon Server] - 2023-12-20T16:18:23.345Z - Server stopped because: "Stopping the daemon the set of ignored files changed (native)" diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json index 21bc1ce..52fa372 100644 --- a/.nx/cache/file-map.json +++ b/.nx/cache/file-map.json @@ -94,67 +94,7 @@ }, "nxJsonPlugins": [], "fileMap": { - "nonProjectFiles": [ - { - "file": ".github/workflows/ci.yml", - "hash": "18201737436483772103" - } - ], "projectFileMap": { - "tooling-nx-plugin-config": [ - { - "file": "libs/tooling/nx-plugin/config/.eslintrc.json", - "hash": "15754961097349354736" - }, - { - "file": "libs/tooling/nx-plugin/config/README.md", - "hash": "5737414999656167607" - }, - { - "file": "libs/tooling/nx-plugin/config/jest.config.ts", - "hash": "2076786795323067777" - }, - { - "file": "libs/tooling/nx-plugin/config/package-lock.json", - "hash": "18213964522934649663" - }, - { - "file": "libs/tooling/nx-plugin/config/package.json", - "hash": "4195037350856133493", - "deps": [ - "npm:inquirer", - "npm:@types/inquirer" - ] - }, - { - "file": "libs/tooling/nx-plugin/config/project.json", - "hash": "17388542100888902116" - }, - { - "file": "libs/tooling/nx-plugin/config/src/index.ts", - "hash": "4261738526690432499" - }, - { - "file": "libs/tooling/nx-plugin/config/src/lib/config.helper.ts", - "hash": "10560189062792512190", - "deps": [ - "npm:inquirer", - "npm:@nx/devkit" - ] - }, - { - "file": "libs/tooling/nx-plugin/config/tsconfig.json", - "hash": "9584156853704587869" - }, - { - "file": "libs/tooling/nx-plugin/config/tsconfig.lib.json", - "hash": "5419457303262888731" - }, - { - "file": "libs/tooling/nx-plugin/config/tsconfig.spec.json", - "hash": "12676338339107966475" - } - ], "tooling-nx-plugin-validators": [ { "file": "libs/tooling/nx-plugin/validators/.eslintrc.json", @@ -178,10 +118,7 @@ }, { "file": "libs/tooling/nx-plugin/validators/package.json", - "hash": "2381165151099912703", - "deps": [ - "npm:chalk" - ] + "hash": "2381165151099912703" }, { "file": "libs/tooling/nx-plugin/validators/project.json", @@ -192,6 +129,7 @@ "hash": "3775989106480202960", "deps": [ "npm:@nx/devkit", + "npm:@nx/devkit/testing", "tooling-nx-plugin-config" ] }, @@ -230,6 +168,56 @@ "hash": "12676338339107966475" } ], + "tooling-nx-plugin-config": [ + { + "file": "libs/tooling/nx-plugin/config/.eslintrc.json", + "hash": "15754961097349354736" + }, + { + "file": "libs/tooling/nx-plugin/config/README.md", + "hash": "5737414999656167607" + }, + { + "file": "libs/tooling/nx-plugin/config/jest.config.ts", + "hash": "2076786795323067777" + }, + { + "file": "libs/tooling/nx-plugin/config/package-lock.json", + "hash": "18213964522934649663" + }, + { + "file": "libs/tooling/nx-plugin/config/package.json", + "hash": "4195037350856133493" + }, + { + "file": "libs/tooling/nx-plugin/config/project.json", + "hash": "17388542100888902116" + }, + { + "file": "libs/tooling/nx-plugin/config/src/index.ts", + "hash": "4261738526690432499" + }, + { + "file": "libs/tooling/nx-plugin/config/src/lib/config.helper.ts", + "hash": "10560189062792512190", + "deps": [ + "npm:inquirer", + "npm:@nx/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.json", + "hash": "9584156853704587869" + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.lib.json", + "hash": "5419457303262888731" + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.spec.json", + "hash": "12676338339107966475" + } + ], "ax-nx-plugin-workspace": [ { "file": ".ax.config.json", @@ -257,7 +245,7 @@ }, { "file": ".github/workflows/ci.yml", - "hash": "12945670883121043129" + "hash": "18201737436483772103" }, { "file": ".github/workflows/release.yml", @@ -265,7 +253,7 @@ }, { "file": ".gitignore", - "hash": "3583689735365856263" + "hash": "9437586763271846806" }, { "file": ".npmrc", @@ -334,7 +322,7 @@ "file": "jest.preset.js", "hash": "9430166341120122740", "deps": [ - "npm:@nx/jest" + "npm:@nx/jest/preset" ] }, { @@ -345,10 +333,6 @@ "file": "nx.json", "hash": "10355845662403895098" }, - { - "file": "package-lock.json", - "hash": "9384922806344764894" - }, { "file": "package.json", "hash": "9761205731330717165" @@ -421,6 +405,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/app/generator.spec.ts", "hash": "804817193264652368", "deps": [ + "npm:@nrwl/devkit/testing", "npm:@nrwl/devkit" ] }, @@ -431,7 +416,8 @@ "npm:path", "npm:fs", "npm:@nx/devkit", - "npm:@nx/angular", + "npm:@nx/devkit/src/utils/string-utils", + "npm:@nx/angular/generators", "tooling-nx-plugin-config" ] }, @@ -498,7 +484,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.effects.spec.ts", "hash": "5617246286119475512", "deps": [ - "npm:rxjs" + "npm:rxjs/testing" ] }, { @@ -540,7 +526,7 @@ "hash": "937011369169402688", "deps": [ "npm:@angular/core", - "npm:@angular/common" + "npm:@angular/common/http" ] }, { @@ -551,7 +537,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/util/lib/__projectName__.service.spec.ts", "hash": "1075166821751228279", "deps": [ - "npm:@angular/core" + "npm:@angular/core/testing" ] }, { @@ -566,13 +552,14 @@ "hash": "12643617170295389714", "deps": [ "npm:@nx/devkit", - "npm:nx" + "npm:nx/src/config/misc-interfaces" ] }, { "file": "libs/tooling/nx-plugin/generators/src/generators/lib/generator.spec.ts", "hash": "1656734658203775118", "deps": [ + "npm:@nrwl/devkit/testing", "npm:@nrwl/devkit" ] }, @@ -582,7 +569,8 @@ "deps": [ "npm:fs", "npm:path", - "npm:@nx/devkit" + "npm:@nx/devkit", + "npm:@nx/devkit/src/utils/string-utils" ] }, { @@ -599,7 +587,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular" + "npm:@nx/angular/generators" ] }, { @@ -617,7 +605,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular" + "npm:@nx/angular/generators" ] }, { @@ -643,7 +631,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular" + "npm:@nx/angular/generators" ] }, { @@ -652,7 +640,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular" + "npm:@nx/angular/generators" ] }, { @@ -670,14 +658,14 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular" + "npm:@nx/angular/generators" ] }, { "file": "libs/tooling/nx-plugin/generators/src/generators/move/generator.ts", "hash": "3861962895159191269", "deps": [ - "npm:@nrwl/workspace", + "npm:@nrwl/workspace/generators", "npm:@nrwl/devkit", "tooling-nx-plugin-validators", "npm:inquirer", @@ -786,7 +774,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/generators-angular.ts", "hash": "2448398896972449059", "deps": [ - "npm:@nrwl/devkit" + "npm:@nrwl/devkit/ngcli-adapter" ] }, { @@ -834,6 +822,7 @@ "hash": "12676338339107966475" } ] - } + }, + "nonProjectFiles": [] } } diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash deleted file mode 100644 index 657038c..0000000 --- a/.nx/cache/lockfile.hash +++ /dev/null @@ -1 +0,0 @@ -367406656570254204 \ No newline at end of file diff --git a/.nx/cache/nx_files.nxt b/.nx/cache/nx_files.nxt deleted file mode 100644 index 1474aecaa12a43e8fc6e259a5db664c592ddf0fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13556 zcmcJW3#=t~UB_=9Y)h%zmOiBN2q7sXw0rKn{_{X9+ZRHiB`sDS#x7^ioqO-u-h0mR z%-rp6)50oZYbuFK)d)d>6i`eEA{q>CB!U>?gH#hztS_n}3e@_*MyRfz@63PB{O{SF z?mc()Z064VzUO~_^Pk`Q|NGCLwY0Q!!hX)?`kbYuV;mL6>DYPB_o6ja=V$Xr=jOM2 zA)4!pxqhCd#qUb4&*J<&ocSEnaTR}F%JDLe9!K-rWv+dP79LspTz)4yvGglAe;?K%JLZ4vm7K5VXujui+xQy*US+>`zxx4**K+Ww#=nk>*K>%^?Lxut;Li_L zmrKWyKJzU>wX^p+lUhCdmRy=eqzCQub@YmSQ;o7uc4#%UScc>VTd_OT!68c_X z{47blFbcel;lX0L9FI4KqqXJHk$sbmt+nB3c`YC1{B%4mmW%1YCHX;1_J*S}pRV=? zd9N(|AdbS=PyECSG83j*;ztX!?@uPn#b7<(?DtmSX#&GcV=wfRIP%lXPm&IngYjr} zxVAj$5AN!(<@+|qgS+a7P6I#8;>ZL+7DjQD#c|ld;&6XsxN^#ew%_E<)FjO~4$>ft zm|g6pSr+*nT%TE#tHX^P8JGPsUxvZ*fdiB2_)tD5Z|!g92M+Y|)m4Z>;*H`kh`q=U zLl51VG)c_Dw;Ya!rK3K$CPCsEFAl;e^fI0!41$HZN@?|j=!&B^7;jF-qkL5M*2~R} zC^cT-BP$bm9cz%{nTd=+(z2pmO`$wGAvorT6-VR}CQ1<&vdTya+{G*|u427E%~zHQ zvYV5Vz&jXEax71jZV{L;jt$w%OXCQY#KG=nZsUwBMNSkZNoW#g?s-`h?I8HgC0#pf z1&@O0QIxYVVGuWYF(MTykY(XcM7@((u`(V|7)SxV{K!C=aoWE-tF)OI#ibyOah>E) z&TMeqA}_J&j4VRf3M1bSJmOXo?XJS8gXN@OQeKQ^5h?KMfQa&w2>&B?bl8>SbF;8s zxm@JM{L9h^2O(!u3++z9wP|h*Wi%Ki0Tz>wd_yoHH+M~|+l^a~Th06B*7VfXz;wJ- zq7dq$*bhmDCRSmDoXKS!l6dA@){n8CZ%lGZy*dHHKH)iV0s>@+&jm!3#XYTkqRN41 zO7uO7#4N#lyg&jA{HRL>juvrIRYi4X3&Sw+NsAF0#8H!E@x0_#1M<=+&G2|CVse9T z!i0ioVS!pN-5jsv8+ByaC;3(;;$;Cdr6l%!RiZ%>SB_(IwjvJ?MZ^vW*D)E9fZFv? zu2kl$-OTWNLnJmNB=Sk(?I7uI_YjJ-D52sZvXFP9*zBT;ufnQZEW^jg?T{=QXK6qg z-pf~pEHG*ba8C*XiaS3GJ-WmO2h{if?~yyd3e=1RZ=rmSIn#Yc*Fe;0Y6^{LaZ7;GU) zq(}lPXMDJ-z;T=2+OS;TI=FoIczW0B#`x}Hc`)o9-Q4i0woFWVW&SEm_}k@~PE=_x zE9XoJ%2diJ)jEYifGv9{rdZZZ@5=K@7*O!AB#TfoApl98iAK7`V8f`KkDHN|qBx~A z%0i-M=UUBitvUDf41&u{hGF8Q*z#^mwb=>;wRq&SG{kC%=Ex=RouoS%t!0@COR{Z5 z3B`w;x^PUI<|h@1EQcvV(lo#ygM@%Xpg28WHvqF1@>6mTS|(bc(Ae}2=hKz`U@#mn z+n6SULc=#9QPWBoaCsPF+K#OauzBR}?|Gz>~X*G{;1?Etcpp@X3faQYt}nab0bz z@``dwOGf4!GcO!7rK-XrOn3jH^~Cu_!ZyzBu-QVlEKp(^W@(y{qqxpI(`6HONwnQR zv?@l&Ea$=?MBRK&Z&GvdTNt-A5wGnl;AarO!5bG?uL-Ovobn z;gk^%!U`k){|Qc2MN~C)Sfa7ECl*k}%aH;*?U#!*;QaE_-UtvBPTX z)mfpw(#CL5^)uTQn<3rMyCEu5t8g>loQdH*lUSOlL8?y(S4vz7@rrd zTzuM}9-WoR0Ztbs87n9n;8=s={!Q*MuM-8y)P>rz3)%C3&aEML`p$Y$H{-L+a9!~9qP8}X$h6F4+g%lc959T!1++^m;75FVa!n%a@Ntz)i zze_uFC7NS0_M7buQz{oV*=bi*jV-!piFKpl+Gsq@X;4??X`;Fmv%nua%)+_x%*Yv9 zH!XJDj<>Gt?tk!Gmd!L{SO{pXfHS*alK^P9(d(DCco^*I5C)k2Tl!5$!r zO|-%Y)ahK{k)F|Sb>muYY*B?I3uYb0hIt2_8*h$=PEixqcErY9e;*5sypTN;#ECZa z@aa9PKW<6^PidI>l){cB?SkE@SKFUoE_xa6|z|NknzcvMXZS zfcUb5Xn6{O)J1Zgx0?+WR#p_>tUlPwBahH&NYs_BHdJbLu20;@d4NCSsGe?fIf(ZAh9xg=dWCWti;lr#riI z(>SLiuM&ezs3`TgNfz&*(wOyfGPYu?tx|>4YQtc6RcCG5YU}S?9jPS1QbAI^+9MXQ%fdE!qQJ>s_71FNPL$j06ES6GssQQ6P@u7!xRaH@ z98=YlZitav!&0vaq>7B_XJJ{^&D&O*OqKGK0w#%QjNmFr(=#W%Xpt$mb3+fKrE;R7 ze#RlW$^UhTmLk}YV8NpTjk1%iMz&r$p3jM4ZmJAuYGW7d9(WmL5IewKHHgDt=3JFu zu`!*H%P8Hcl-Pr0x4M~V^?jr_D(Ho1slkgUbY8o{yfwR7SRsRJO~u5p44#l(9uo-6Y-%_?5If%TBxVWOA^4f$oaCh27eICm zK_DZO)0=1Kr7DBF_&WNS&5DjXnT~!g$qiQzSTANxonxK&P+`i;CB0(#}NE zJ@sviplSn_eQyFk`#EewBM>!bce1LS)7Cb=jTJSkD+z_23l%v5`GCe8)h|n9o>)bj z_E8LF^ul_OiOe1quZpRqwLwk9plqP&PTRQIGH$ku4@s~f=@;?Cn zVT->3{OY~+e69yS3tIPmzccdG*uiE>*8vGL$zZkr^?{mPv zW%<0(8LxL2zhm)tIJgIX1GMJzaR>LI#}@x4=U+XqmD_tQ{;I!j=W{3H9|eCd=j*_m z`SeDU&FNrikDlvo&iEUkuZ9->1op zL+}_{e13{^GoQ<$S1kT>4zBlCON&3s*|pF6EPl@4wz%Z>S#Zt&`yG5g^b>acdmQ|& z;4g>Pe7@q~(#t!c#pkN8wESNK{l|9v>%sr@zkj^)BiX|x(Bku;GyXd0S3rx;BMz?j zR}WkKG0u$~^t{KR#pi;@+xv#le`s;z;CkL~S$yi?@}n0+i_blr8~)z~{Ugw_hfh1> z^`32R$6xq&?S0<}{vnHB4&Lz5JfE_7>5Q+O3|h~7Kj-_;uI*Fr9Up+!d_L)nmpvC2 z|6R`aY`w2yp?UrawD?@{_w9TXH$GzV>m6KjI2&5y?{jd)fgZH(dp~D){zE(d^UnAi z88@}#pXBW7_Y-#f(m%BGk=;IK@rxW>_xpzBbBlvZFW<4_`{2!d^e%P^t=~Q9jF(;M z_rm|g!SxRGVT(WitL=Q=0RAb9U+>`8fbW5pd>(Re>35&SA9ZlWv11kw{;}n+c=9=m z-vHjsUvhX6wCw7ao$=DwGPLIZSqHxw`T>hy`n8t-9pE3c_}Ibw;QwRshaCLn;BSEz z|KD?P*~8l{{^EaX`LBY16kKvxcko-Fp93xYBb=YQsJ2_h!ykke|37oaD=)m;j^F#w zEr0p@aXbD>@LO&Cya@c;cKm*4y!3J|wC?+WgDd`AWARTpcm!TTYd%joxaRq=9l!VM ztzKRL{XT0*le}PMW?{#p= z?OJHv_e%~gJ9#Ix_&@)N_P*lt`*!?Q;LUwyKYO4n`8eYx=S!e<-w$&>*Vc8yZ?ogS z&iUqZYB?zH{EWpf`Iq*-^2aZMYo50`xcEG6$G;W4nUCgiEwsjOa$d3iqIta5;vePQ z=u6N0W@!EHs}8;&`WGzzvM1Z|vWG{&#s5tX9z#DDTKLa9xcJ{_@kbndKlqPX{NjIY z`O9C9gKIu71pjVpC#qkcw&RD+c-5chLu>rIIS;MfDn8!Z0O T($|Zif0FZMe{|x+I@kXTSMHER diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json deleted file mode 100644 index 953d224..0000000 --- a/.nx/cache/parsed-lock-file.json +++ /dev/null @@ -1,40865 +0,0 @@ -{ - "externalNodes": { - "npm:@aashutoshrathi/word-wrap": { - "type": "npm", - "name": "npm:@aashutoshrathi/word-wrap", - "data": { - "version": "1.2.6", - "packageName": "@aashutoshrathi/word-wrap", - "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" - } - }, - "npm:@adobe/css-tools": { - "type": "npm", - "name": "npm:@adobe/css-tools", - "data": { - "version": "4.3.2", - "packageName": "@adobe/css-tools", - "hash": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.2.1", - "packageName": "@ampproject/remapping", - "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" - } - }, - "npm:@angular-devkit/architect": { - "type": "npm", - "name": "npm:@angular-devkit/architect", - "data": { - "version": "0.1700.7", - "packageName": "@angular-devkit/architect", - "hash": "sha512-32uitQKsYLGXAKoXBsmOnPsTt9pS+b9cnFI9ZvBFVhJ31I2EOM7vGcMFalhTxdB/DkVHk4TyO78efV0V26DwCA==" - } - }, - "npm:@angular-devkit/build-angular": { - "type": "npm", - "name": "npm:@angular-devkit/build-angular", - "data": { - "version": "17.0.7", - "packageName": "@angular-devkit/build-angular", - "hash": "sha512-AtEzLk6n6BXqQzk0Bsupe6GV0IgUe7RbpBfqROi+NZqMA7OUAHCX3xA6M68Qu+5KxBtW7T5lHeZZ7iP/y39wtQ==" - } - }, - "npm:chalk@5.3.0": { - "type": "npm", - "name": "npm:chalk@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:cli-width@4.1.0": { - "type": "npm", - "name": "npm:cli-width@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "cli-width", - "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - } - }, - "npm:escape-string-regexp@5.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:figures@5.0.0": { - "type": "npm", - "name": "npm:figures@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "figures", - "hash": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:figures@6.0.1": { - "type": "npm", - "name": "npm:figures@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "figures", - "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" - } - }, - "npm:figures@2.0.0": { - "type": "npm", - "name": "npm:figures@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "figures", - "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" - } - }, - "npm:inquirer@9.2.11": { - "type": "npm", - "name": "npm:inquirer@9.2.11", - "data": { - "version": "9.2.11", - "packageName": "inquirer", - "hash": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==" - } - }, - "npm:inquirer": { - "type": "npm", - "name": "npm:inquirer", - "data": { - "version": "8.2.6", - "packageName": "inquirer", - "hash": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==" - } - }, - "npm:is-unicode-supported@1.3.0": { - "type": "npm", - "name": "npm:is-unicode-supported@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "is-unicode-supported", - "hash": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-unicode-supported@2.0.0": { - "type": "npm", - "name": "npm:is-unicode-supported@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-unicode-supported", - "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" - } - }, - "npm:mute-stream@1.0.0": { - "type": "npm", - "name": "npm:mute-stream@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "0.0.8", - "packageName": "mute-stream", - "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - } - }, - "npm:run-async@3.0.0": { - "type": "npm", - "name": "npm:run-async@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "run-async", - "hash": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==" - } - }, - "npm:run-async": { - "type": "npm", - "name": "npm:run-async", - "data": { - "version": "2.4.1", - "packageName": "run-async", - "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" - } - }, - "npm:@angular-devkit/build-webpack": { - "type": "npm", - "name": "npm:@angular-devkit/build-webpack", - "data": { - "version": "0.1700.7", - "packageName": "@angular-devkit/build-webpack", - "hash": "sha512-B9Mg/qYDpE5my8PJ3VPQyRSUV0Oq1bFUzU8s0ZpqEZl1URKc04pm0LtLmebrMIcUZgDiGk0RHaD+O1E9IV/bdQ==" - } - }, - "npm:@angular-devkit/core": { - "type": "npm", - "name": "npm:@angular-devkit/core", - "data": { - "version": "17.0.7", - "packageName": "@angular-devkit/core", - "hash": "sha512-vATobHo5O5tJba424hJfQWLb40GzvZPNsI74dcgSUTgrDph8ksmk5xB9OvEvf0INorQZ2IMphj/VIWj4/+JqSA==" - } - }, - "npm:@angular-devkit/core@16.0.6": { - "type": "npm", - "name": "npm:@angular-devkit/core@16.0.6", - "data": { - "version": "16.0.6", - "packageName": "@angular-devkit/core", - "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" - } - }, - "npm:@angular-devkit/schematics": { - "type": "npm", - "name": "npm:@angular-devkit/schematics", - "data": { - "version": "17.0.7", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-BY11OkJkM3xyXcvyD7x5kGY/c8Ufd4AfPvI0D9imhVxbns45Q48b1DlvCQvSnCJ/s+OwnkrYb/Efa70ZiaGu8A==" - } - }, - "npm:@angular-devkit/schematics@16.0.6": { - "type": "npm", - "name": "npm:@angular-devkit/schematics@16.0.6", - "data": { - "version": "16.0.6", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" - } - }, - "npm:@angular-eslint/bundled-angular-compiler": { - "type": "npm", - "name": "npm:@angular-eslint/bundled-angular-compiler", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/bundled-angular-compiler", - "hash": "sha512-xRlSh9qjdUdUKAy/0UQsxX7wf1tHApAsHsfismebPriqfmVAPyEg4HBrM8ImWaZxiqaTGC1AyHsUBQD5FK8o6w==" - } - }, - "npm:@angular-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/eslint-plugin", - "hash": "sha512-fFOBlCOVObVu3gjLj+0BypqO1ZR/0bfJnDElqMdYwJG7zRaFT8NNQbrOo/q/GQoqOFoNna6mw3teTGsd5JnL2A==" - } - }, - "npm:@angular-eslint/eslint-plugin-template": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin-template", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/eslint-plugin-template", - "hash": "sha512-unZ6QNwtxuB8Eni7UPdw7uK6iZipZUXIsH+ZuLMOxwFgGMqeRnpv8SW0212rto3d/Ec0jESzVHKcwZ9pT+jxgw==" - } - }, - "npm:@angular-eslint/template-parser": { - "type": "npm", - "name": "npm:@angular-eslint/template-parser", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/template-parser", - "hash": "sha512-ofL46rNhRVeSxrSQF0vwhKMco+vJuo+ZGjSOzFmT9N3KAMB0j+WXTbpyGGMy0gQSBc4W6p+j+zxGa2CR2xb6wA==" - } - }, - "npm:@angular-eslint/utils": { - "type": "npm", - "name": "npm:@angular-eslint/utils", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/utils", - "hash": "sha512-CTNPOb05S/DII/Fm8JYUvKo+B4u/ctHjGJ0X1YXUR0q31oaGqTE3KePGq76+Y6swRDf9NjUIcfcnZp3u3j4CBQ==" - } - }, - "npm:@angular/animations": { - "type": "npm", - "name": "npm:@angular/animations", - "data": { - "version": "17.0.7", - "packageName": "@angular/animations", - "hash": "sha512-IjZjPGMxvi2a9o7fzjwNO44FvhTZlVSgcPtqM6Glq0+WVeQcnZxf1Onj68M/FGx2AunS8elRbrgPxTexVeSo7A==" - } - }, - "npm:@angular/cdk": { - "type": "npm", - "name": "npm:@angular/cdk", - "data": { - "version": "17.0.4", - "packageName": "@angular/cdk", - "hash": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==" - } - }, - "npm:@angular/cli": { - "type": "npm", - "name": "npm:@angular/cli", - "data": { - "version": "17.0.7", - "packageName": "@angular/cli", - "hash": "sha512-oSa0GVAQNA7wFbLJYeaO3kV4iUcbKEqXDLxcIE8s1GfHddBOlXH2P1T4fXonCBl5qvV+joP0G0+fs7I0w2utZQ==" - } - }, - "npm:@schematics/angular@17.0.7": { - "type": "npm", - "name": "npm:@schematics/angular@17.0.7", - "data": { - "version": "17.0.7", - "packageName": "@schematics/angular", - "hash": "sha512-d7QKmcKrM4owb/2bR7Ipf23roiNbvbD/x7reNhQAtKAPLSHJ3Ulkf1+Yv+dj+9f+K7y9SBviEUSrD27BQ9WaxQ==" - } - }, - "npm:@schematics/angular": { - "type": "npm", - "name": "npm:@schematics/angular", - "data": { - "version": "16.0.6", - "packageName": "@schematics/angular", - "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" - } - }, - "npm:@angular/common": { - "type": "npm", - "name": "npm:@angular/common", - "data": { - "version": "17.0.7", - "packageName": "@angular/common", - "hash": "sha512-bPPL6x0KOAOTxKSE2j4EWmEUOnqZYzOYiHzroa5b9UEyA9NvGkd9bm3zIxw8xcndRj1Ehcmvpi6KBLcYBBbWfg==" - } - }, - "npm:@angular/compiler": { - "type": "npm", - "name": "npm:@angular/compiler", - "data": { - "version": "17.0.7", - "packageName": "@angular/compiler", - "hash": "sha512-QHPuLti2c2tGZmOGZ0cfCHo4LxiHUkC27I0aZFDyQSSQqEI5obQGVlEREHysw0nsS3sYIcLvqcwcKcRtXlXtxQ==" - } - }, - "npm:@angular/compiler-cli": { - "type": "npm", - "name": "npm:@angular/compiler-cli", - "data": { - "version": "17.0.7", - "packageName": "@angular/compiler-cli", - "hash": "sha512-YnL38idjIYtl3BXYpv+sVJKWGbUjHT6eyQSQVAfO/1AwWqVa21K9hnE+Q37VmUKEcKFMnQembeuErA+KVsGI6A==" - } - }, - "npm:@angular/core": { - "type": "npm", - "name": "npm:@angular/core", - "data": { - "version": "17.0.7", - "packageName": "@angular/core", - "hash": "sha512-mEkelXkzEi6+A9GjdKOSGGzQAfo1iAjVTn6YsplNUeGE5JgDZYZ7sXGQqs0Lin7dzJxnPAgGjCOl7SpWLXIPSQ==" - } - }, - "npm:@angular/forms": { - "type": "npm", - "name": "npm:@angular/forms", - "data": { - "version": "17.0.7", - "packageName": "@angular/forms", - "hash": "sha512-28BxRxEmgZIofGwVp6s2v3ri/kuWW+/EY/ZXhavlWKJEh4ATJl72k0RkRWNcQi4wnvn0Qb8tFdnVJnvRZvvKEw==" - } - }, - "npm:@angular/language-service": { - "type": "npm", - "name": "npm:@angular/language-service", - "data": { - "version": "17.0.7", - "packageName": "@angular/language-service", - "hash": "sha512-03EXeBZgyGNnEDLiABwEw0lpAcqLxSgl+bXQahOO4OnBSYQWGEiqfs3ymNbNj0chUfQVadG4FWghwGTGbj77Iw==" - } - }, - "npm:@angular/platform-browser": { - "type": "npm", - "name": "npm:@angular/platform-browser", - "data": { - "version": "17.0.7", - "packageName": "@angular/platform-browser", - "hash": "sha512-bm9/wt51nc/MPjft/FlRNIgFSeLjDtfJOT7M32Rt6kOHhNKSK7ZTPWdMe9ahuHSbAhLzd0G/4NsT5sKrWSeVZg==" - } - }, - "npm:@angular/platform-browser-dynamic": { - "type": "npm", - "name": "npm:@angular/platform-browser-dynamic", - "data": { - "version": "17.0.7", - "packageName": "@angular/platform-browser-dynamic", - "hash": "sha512-OquwUX9fLWA2JUZW5Jm6atk0CPt0sA7Tg24eGLsr6g1XfTS7jRZprlGaa72NgPLnQVV6m84o/ZiNYS6yPmq1Gg==" - } - }, - "npm:@angular/router": { - "type": "npm", - "name": "npm:@angular/router", - "data": { - "version": "17.0.7", - "packageName": "@angular/router", - "hash": "sha512-rUFPe1uDlYYw6+3Gq68czW7WxBH7zT/D3UsT1otqwUV4RnQQsVze4fIit9FqJh7tuP4y3WpB4XBNf7p7Oi6TJw==" - } - }, - "npm:@assemblyscript/loader": { - "type": "npm", - "name": "npm:@assemblyscript/loader", - "data": { - "version": "0.10.1", - "packageName": "@assemblyscript/loader", - "hash": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.23.5", - "packageName": "@babel/code-frame", - "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:color-convert@1.9.3": { - "type": "npm", - "name": "npm:color-convert@1.9.3", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name@1.1.3": { - "type": "npm", - "name": "npm:color-name@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:has-flag@3.0.0": { - "type": "npm", - "name": "npm:has-flag@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color@8.1.1": { - "type": "npm", - "name": "npm:supports-color@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:supports-color@9.4.0": { - "type": "npm", - "name": "npm:supports-color@9.4.0", - "data": { - "version": "9.4.0", - "packageName": "supports-color", - "hash": "4124946643497815937" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.23.5", - "packageName": "@babel/compat-data", - "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.23.2", - "packageName": "@babel/core", - "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.9.0", - "packageName": "convert-source-map", - "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - } - }, - "npm:semver@6.3.1": { - "type": "npm", - "name": "npm:semver@6.3.1", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@7.5.3": { - "type": "npm", - "name": "npm:semver@7.5.3", - "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" - } - }, - "npm:semver@5.7.2": { - "type": "npm", - "name": "npm:semver@5.7.2", - "data": { - "version": "5.7.2", - "packageName": "semver", - "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "3378029399647957957" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.23.0", - "packageName": "@babel/generator", - "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" - } - }, - "npm:@babel/generator@7.23.6": { - "type": "npm", - "name": "npm:@babel/generator@7.23.6", - "data": { - "version": "7.23.6", - "packageName": "@babel/generator", - "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.23.6", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.23.6", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.4.4", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" - } - }, - "npm:@babel/helper-function-name": { - "type": "npm", - "name": "npm:@babel/helper-function-name", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-function-name", - "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" - } - }, - "npm:@babel/helper-hoist-variables": { - "type": "npm", - "name": "npm:@babel/helper-hoist-variables", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-hoist-variables", - "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.23.3", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.22.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.23.4", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.23.5", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.23.6", - "packageName": "@babel/helpers", - "hash": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.23.4", - "packageName": "@babel/highlight", - "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.23.6", - "packageName": "@babel/parser", - "hash": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.23.5", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.23.2", - "packageName": "@babel/preset-env", - "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-typescript", - "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/runtime", - "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.22.15", - "packageName": "@babel/template", - "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.23.6", - "packageName": "@babel/traverse", - "hash": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.23.6", - "packageName": "@babel/types", - "hash": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.5.0", - "packageName": "@colors/colors", - "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.20", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==" - } - }, - "npm:@cypress/request": { - "type": "npm", - "name": "npm:@cypress/request", - "data": { - "version": "2.88.12", - "packageName": "@cypress/request", - "hash": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==" - } - }, - "npm:@cypress/request@3.0.1": { - "type": "npm", - "name": "npm:@cypress/request@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@cypress/request", - "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" - } - }, - "npm:@cypress/xvfb": { - "type": "npm", - "name": "npm:@cypress/xvfb", - "data": { - "version": "1.2.4", - "packageName": "@cypress/xvfb", - "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@4.3.2": { - "type": "npm", - "name": "npm:debug@4.3.2", - "data": { - "version": "4.3.2", - "packageName": "debug", - "hash": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==" - } - }, - "npm:debug@3.1.0": { - "type": "npm", - "name": "npm:debug@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "debug", - "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - }, - "npm:@discoveryjs/json-ext": { - "type": "npm", - "name": "npm:@discoveryjs/json-ext", - "data": { - "version": "0.5.7", - "packageName": "@discoveryjs/json-ext", - "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" - } - }, - "npm:@esbuild/android-arm": { - "type": "npm", - "name": "npm:@esbuild/android-arm", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/android-arm", - "hash": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==" - } - }, - "npm:@esbuild/android-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm", - "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" - } - }, - "npm:@esbuild/android-arm64": { - "type": "npm", - "name": "npm:@esbuild/android-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==" - } - }, - "npm:@esbuild/android-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" - } - }, - "npm:@esbuild/android-x64": { - "type": "npm", - "name": "npm:@esbuild/android-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/android-x64", - "hash": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==" - } - }, - "npm:@esbuild/android-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-x64", - "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" - } - }, - "npm:@esbuild/darwin-arm64": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==" - } - }, - "npm:@esbuild/darwin-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" - } - }, - "npm:@esbuild/darwin-x64": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==" - } - }, - "npm:@esbuild/darwin-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" - } - }, - "npm:@esbuild/freebsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==" - } - }, - "npm:@esbuild/freebsd-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" - } - }, - "npm:@esbuild/freebsd-x64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" - } - }, - "npm:@esbuild/linux-arm": { - "type": "npm", - "name": "npm:@esbuild/linux-arm", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==" - } - }, - "npm:@esbuild/linux-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" - } - }, - "npm:@esbuild/linux-arm64": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==" - } - }, - "npm:@esbuild/linux-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" - } - }, - "npm:@esbuild/linux-ia32": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==" - } - }, - "npm:@esbuild/linux-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" - } - }, - "npm:@esbuild/linux-loong64": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==" - } - }, - "npm:@esbuild/linux-loong64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" - } - }, - "npm:@esbuild/linux-mips64el": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==" - } - }, - "npm:@esbuild/linux-mips64el@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" - } - }, - "npm:@esbuild/linux-ppc64": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==" - } - }, - "npm:@esbuild/linux-ppc64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" - } - }, - "npm:@esbuild/linux-riscv64": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==" - } - }, - "npm:@esbuild/linux-riscv64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" - } - }, - "npm:@esbuild/linux-s390x": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==" - } - }, - "npm:@esbuild/linux-s390x@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==" - } - }, - "npm:@esbuild/linux-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" - } - }, - "npm:@esbuild/netbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==" - } - }, - "npm:@esbuild/netbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" - } - }, - "npm:@esbuild/openbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==" - } - }, - "npm:@esbuild/openbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" - } - }, - "npm:@esbuild/sunos-x64": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==" - } - }, - "npm:@esbuild/sunos-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" - } - }, - "npm:@esbuild/win32-arm64": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==" - } - }, - "npm:@esbuild/win32-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" - } - }, - "npm:@esbuild/win32-ia32": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==" - } - }, - "npm:@esbuild/win32-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==" - } - }, - "npm:@esbuild/win32-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.10.0", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "2.1.4", - "packageName": "@eslint/eslintrc", - "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" - } - }, - "npm:ajv@6.12.6": { - "type": "npm", - "name": "npm:ajv@6.12.6", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:argparse@2.0.1": { - "type": "npm", - "name": "npm:argparse@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:globals@13.24.0": { - "type": "npm", - "name": "npm:globals@13.24.0", - "data": { - "version": "13.24.0", - "packageName": "globals", - "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:js-yaml@4.1.0": { - "type": "npm", - "name": "npm:js-yaml@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "3.14.1", - "packageName": "js-yaml", - "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:minimatch@3.1.2": { - "type": "npm", - "name": "npm:minimatch@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "npm:minimatch@9.0.3": { - "type": "npm", - "name": "npm:minimatch@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" - } - }, - "npm:minimatch@7.4.6": { - "type": "npm", - "name": "npm:minimatch@7.4.6", - "data": { - "version": "7.4.6", - "packageName": "minimatch", - "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" - } - }, - "npm:minimatch@5.1.6": { - "type": "npm", - "name": "npm:minimatch@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "minimatch", - "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.0.5", - "packageName": "minimatch", - "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" - } - }, - "npm:type-fest@0.20.2": { - "type": "npm", - "name": "npm:type-fest@0.20.2", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest@4.8.3": { - "type": "npm", - "name": "npm:type-fest@4.8.3", - "data": { - "version": "4.8.3", - "packageName": "type-fest", - "hash": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==" - } - }, - "npm:type-fest@1.4.0": { - "type": "npm", - "name": "npm:type-fest@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "type-fest", - "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" - } - }, - "npm:type-fest@3.13.1": { - "type": "npm", - "name": "npm:type-fest@3.13.1", - "data": { - "version": "3.13.1", - "packageName": "type-fest", - "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" - } - }, - "npm:type-fest@2.19.0": { - "type": "npm", - "name": "npm:type-fest@2.19.0", - "data": { - "version": "2.19.0", - "packageName": "type-fest", - "hash": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "8.48.0", - "packageName": "@eslint/js", - "hash": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==" - } - }, - "npm:@fastify/busboy": { - "type": "npm", - "name": "npm:@fastify/busboy", - "data": { - "version": "2.1.0", - "packageName": "@fastify/busboy", - "hash": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==" - } - }, - "npm:@humanwhocodes/config-array": { - "type": "npm", - "name": "npm:@humanwhocodes/config-array", - "data": { - "version": "0.11.13", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/object-schema": { - "type": "npm", - "name": "npm:@humanwhocodes/object-schema", - "data": { - "version": "2.0.1", - "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "13543247940053143024" - } - }, - "npm:strip-ansi@7.1.0": { - "type": "npm", - "name": "npm:strip-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "strip-ansi", - "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "11479311392825997119" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrap-ansi@7.0.0": { - "type": "npm", - "name": "npm:wrap-ansi@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.3", - "packageName": "@istanbuljs/schema", - "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.3", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.1", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.1.2", - "packageName": "@jridgewell/set-array", - "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.5", - "packageName": "@jridgewell/source-map", - "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.15", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - } - }, - "npm:@leichtgewicht/ip-codec": { - "type": "npm", - "name": "npm:@leichtgewicht/ip-codec", - "data": { - "version": "2.0.4", - "packageName": "@leichtgewicht/ip-codec", - "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - } - }, - "npm:@ljharb/through": { - "type": "npm", - "name": "npm:@ljharb/through", - "data": { - "version": "2.3.11", - "packageName": "@ljharb/through", - "hash": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==" - } - }, - "npm:@mole-inc/bin-wrapper": { - "type": "npm", - "name": "npm:@mole-inc/bin-wrapper", - "data": { - "version": "8.0.1", - "packageName": "@mole-inc/bin-wrapper", - "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" - } - }, - "npm:@ngrx/store": { - "type": "npm", - "name": "npm:@ngrx/store", - "data": { - "version": "17.0.1", - "packageName": "@ngrx/store", - "hash": "sha512-BmVzN+fqyz0ZrVEmJ+jrNwePMKcpNL49vb8sbQ3yDDftxgZz2HqRKFMexqlXpz5ixwK5LqTOblHNQOgi9irsTw==" - } - }, - "npm:@ngtools/webpack": { - "type": "npm", - "name": "npm:@ngtools/webpack", - "data": { - "version": "17.0.7", - "packageName": "@ngtools/webpack", - "hash": "sha512-gwhUhpwXn0trwwKdSu9WlJbEcLt+s/2fPwoD9lZ0y3wXfrOogsfcNBJKeO5BZf1h+A3AWt7ePmgrZXSJM+865Q==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/agent": { - "type": "npm", - "name": "npm:@npmcli/agent", - "data": { - "version": "2.2.0", - "packageName": "@npmcli/agent", - "hash": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==" - } - }, - "npm:http-proxy-agent@7.0.0": { - "type": "npm", - "name": "npm:http-proxy-agent@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:lru-cache@10.1.0": { - "type": "npm", - "name": "npm:lru-cache@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "lru-cache", - "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" - } - }, - "npm:lru-cache@6.0.0": { - "type": "npm", - "name": "npm:lru-cache@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@7.18.3": { - "type": "npm", - "name": "npm:lru-cache@7.18.3", - "data": { - "version": "7.18.3", - "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - } - }, - "npm:lru-cache@4.1.5": { - "type": "npm", - "name": "npm:lru-cache@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "lru-cache", - "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" - } - }, - "npm:@npmcli/git": { - "type": "npm", - "name": "npm:@npmcli/git", - "data": { - "version": "5.0.3", - "packageName": "@npmcli/git", - "hash": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==" - } - }, - "npm:isexe@3.1.1": { - "type": "npm", - "name": "npm:isexe@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:which@4.0.0": { - "type": "npm", - "name": "npm:which@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "which", - "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" - } - }, - "npm:which@1.3.1": { - "type": "npm", - "name": "npm:which@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "228540766434988782" - } - }, - "npm:@npmcli/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.0.2", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" - } - }, - "npm:@npmcli/node-gyp": { - "type": "npm", - "name": "npm:@npmcli/node-gyp", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/node-gyp", - "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" - } - }, - "npm:@npmcli/promise-spawn": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "7.0.0", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==" - } - }, - "npm:@npmcli/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "7.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==" - } - }, - "npm:@nrwl/angular": { - "type": "npm", - "name": "npm:@nrwl/angular", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/angular", - "hash": "sha512-4f7o6dsoQwP8o8O57dT0fTNnKcRllsQVkYeZx2SR/I0Gs2I/UlaCQZ6GCjy+BXSJS3AXn7sz6a69vo0uGJPBFw==" - } - }, - "npm:@nrwl/cypress": { - "type": "npm", - "name": "npm:@nrwl/cypress", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/cypress", - "hash": "sha512-/cimurrZnHFX9o0Sb5cj7SskUtEgA2aYnpLuZuAWaazpQPd+72WXTXFVYN8dVd7wgTV96uTQUTkUGt9nzvNiTA==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/devkit", - "hash": "sha512-uZVqc2qhi+WdSqLV9aIcE+5ck+IUSQ47Cc5bslWrssQjBncqGavHYDuU4ZLuKK5HxCuZqlQjvo7TsF7LeOjNiA==" - } - }, - "npm:@nrwl/devkit@16.5.0": { - "type": "npm", - "name": "npm:@nrwl/devkit@16.5.0", - "data": { - "version": "16.5.0", - "packageName": "@nrwl/devkit", - "hash": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==" - } - }, - "npm:@nrwl/eslint-plugin-nx": { - "type": "npm", - "name": "npm:@nrwl/eslint-plugin-nx", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/eslint-plugin-nx", - "hash": "sha512-xQDmFeIc+VR3q6scSSciSNVSdcRI52FFTTlDw4/pZCJk59LJTt6GgnqeL0Aj4EIgELfZQLOsKrxIoup5gzKlrQ==" - } - }, - "npm:@nrwl/jest": { - "type": "npm", - "name": "npm:@nrwl/jest", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/jest", - "hash": "sha512-YZ6yFFw1lq7nSCZTkP8qMbIeYX/yJ6Ko6iXPECPQViy4W6E9WEVnWU52RkovoKSN+CuhienzJCxne7DALLLr3w==" - } - }, - "npm:@nrwl/js": { - "type": "npm", - "name": "npm:@nrwl/js", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/js", - "hash": "sha512-oFnyaVOpVG3XrkIXQMs5TM6hrRRBe38jRX79d51S41yLuiOrHgpJlMmii1wafevM1Dpk9UlAvPh7v8OffgDZtg==" - } - }, - "npm:@nrwl/nx-plugin": { - "type": "npm", - "name": "npm:@nrwl/nx-plugin", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/nx-plugin", - "hash": "sha512-sg8oOxs3abfNMOpWK8utqy2wIfihLnLAtWxBFoRb/R+Xwjc+vw/ibqGGvZm+jSlk5SQxit52RMMQtl5foI5HQw==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/tao", - "hash": "sha512-cgtUKTRSxDZ94S9IpC27/qYZJ1YttJDET+veKrtRYvwnHFgkq1peyeTTtnM25yJon7PRdm2lYrlIVdPm0vXupw==" - } - }, - "npm:@nrwl/web": { - "type": "npm", - "name": "npm:@nrwl/web", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/web", - "hash": "sha512-htiLKuLgWikZOf+gKzX4tkkcYV+94ZGYeBEHAZ8Agx4dyw7/8u1JStSAvrwZFAzw06KejGJy4NAh2ycCLJMwrA==" - } - }, - "npm:@nrwl/webpack": { - "type": "npm", - "name": "npm:@nrwl/webpack", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/webpack", - "hash": "sha512-cxBh3Aqg9nIR7be3y9pvss2x22Bp0iDmcvpj/L0fc/3PK9DpYK2Y2eDGvswsd5xZvLTu5BhQVji/io73JmmB4w==" - } - }, - "npm:@nrwl/workspace": { - "type": "npm", - "name": "npm:@nrwl/workspace", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/workspace", - "hash": "sha512-ACMnIxblNEAsjFfkpNspENxlm/jMpF9hr3aKioyoFAUmATxO7lJt8VuA43slI1oVgtTfWpOcM0aSRP/07kVW6Q==" - } - }, - "npm:@nx/angular": { - "type": "npm", - "name": "npm:@nx/angular", - "data": { - "version": "17.2.6", - "packageName": "@nx/angular", - "hash": "sha512-e11FcG9SP8gR/nwfhvPnORfOee5zjUFkC1vLLY/JdJRV2jXE5qLtoTVq8lFqU6LjD21FoFCt5EMiceRj3WoEZQ==" - } - }, - "npm:yallist@4.0.0": { - "type": "npm", - "name": "npm:yallist@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yallist@2.1.2": { - "type": "npm", - "name": "npm:yallist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "yallist", - "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:@nx/cypress": { - "type": "npm", - "name": "npm:@nx/cypress", - "data": { - "version": "17.2.6", - "packageName": "@nx/cypress", - "hash": "sha512-C2TSLyV2Nm8zIM8aJJrRkv6RO4iqLRmO+XC0/Z58SF9cD3iF7HSKzGtj2iRshgI8Pac7WgvcZLYyiKQIAdJIUw==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "17.2.6", - "packageName": "@nx/devkit", - "hash": "sha512-a9GPw0KiLhvv2RBLPlWgaVDZRvgww4ANBwv7LuGvk8FNgxF5vkQMM5WyKpvxKJhmh1EZ+T9JsGWAFrK7skW9Bw==" - } - }, - "npm:@nx/devkit@16.5.0": { - "type": "npm", - "name": "npm:@nx/devkit@16.5.0", - "data": { - "version": "16.5.0", - "packageName": "@nx/devkit", - "hash": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==" - } - }, - "npm:@nx/eslint": { - "type": "npm", - "name": "npm:@nx/eslint", - "data": { - "version": "17.2.6", - "packageName": "@nx/eslint", - "hash": "sha512-gDtIf6T3vCf7XO2lWvVulFcNmx2l6kKGZypEpLMGtfdAUai/aaBbNHbbwcsOZiPvWtNo64mGBZX5Qv6aPb9oPg==" - } - }, - "npm:@nx/eslint-plugin": { - "type": "npm", - "name": "npm:@nx/eslint-plugin", - "data": { - "version": "17.2.6", - "packageName": "@nx/eslint-plugin", - "hash": "sha512-P9+G9r6fz0RP/muchPFHyicfA4o80kUD8oRmrJJAjI3KolpRk3Kld7GAbXPkunnGuMcf/nSJxaUkt+QCe5zOhQ==" - } - }, - "npm:@nx/jest": { - "type": "npm", - "name": "npm:@nx/jest", - "data": { - "version": "17.2.6", - "packageName": "@nx/jest", - "hash": "sha512-lWdzwkNfVQPCcr3gb3OrtUX/wjI9Oxm6Q9cKezPydCWtrZnEQii/aRi9/AncCGBf0Rx6hLT0yaiIAvJKlCk9qg==" - } - }, - "npm:@nx/js": { - "type": "npm", - "name": "npm:@nx/js", - "data": { - "version": "17.2.6", - "packageName": "@nx/js", - "hash": "sha512-jjWzEg63C7vBu6Lo890N8gIcEji+8/ggf5My2kCmAnJehqIg8/B0Bq0x9shIxAT7qZgyLxHbC3VWg5ictS6aEw==" - } - }, - "npm:fast-glob@3.2.7": { - "type": "npm", - "name": "npm:fast-glob@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:fast-glob@3.3.2": { - "type": "npm", - "name": "npm:fast-glob@3.3.2", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.1", - "packageName": "fast-glob", - "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" - } - }, - "npm:ora@5.3.0": { - "type": "npm", - "name": "npm:ora@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:source-map@0.6.1": { - "type": "npm", - "name": "npm:source-map@0.6.1", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:source-map-support@0.5.19": { - "type": "npm", - "name": "npm:source-map-support@0.5.19", - "data": { - "version": "0.5.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "17.2.6", - "packageName": "@nx/linter", - "hash": "sha512-TTS3WPZQNVdFgTykdX3jbELcN0IsYpKPv8TGOzqkJbRfvsF2jjZzQggWujg1iXBdWRKdaWYDi8SUi+4wocemIg==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-ezU5u7hkEwI2xzsFSjyr53uNURBvga40LQlpEnS/CbqRifHHhTKisCy+r2+kRhiOwTeR+I+/2D3zPyIyN3aEHQ==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-wUIwbM/7LMxlFkEOlbxR/s2qaRuD69yXc70f2rtxsskwJ4GOF5kfc1jk2YaDs9qswI+FgQVgbeZu8pgF+slY7Q==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-uBKEGqG4txVCpBirRzt1QwuOLzfA0s9dlUP7n5t4qJuaf9OXuVcDXay8g84WT1jx4PPtipyv/wyIFu3r7v8kZw==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-dSDVz2BktaPHMkrJojFCx+V+QFLDF0KzoHorESzZmHZTfumr0xtJ1COWCU+gYmLptc+8OgwCzCPWXHhcDgji/A==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-AD99Kk47Yxn3IJ89aCT1oVpNX1XNECAYay97yhqf2tiBsDv9hC43PppOdjI0dNP5VRBTrr6EsWdhvE0uNJ3RJw==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-MOX/EJyzseEnzbFxY7V6es/xta6WQ0cDDrl6i6qjCRnoRTFFVMsL0Fb4dtVbv7fd75O41P+OBGpG70MYx2SOxw==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-16xTSszGPY25INDUr4pzLXWcO3va1764iVFiHRTuJr5siDymY7zSj+DPKFmewzqF2358Y5m8AtMotY0FqKciYg==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-F/nIq8bcZd2cNuBiQbyJwur7CpeRBCt0qKDF38HQ2l3HhQv+jwk4T6115LMQqwZb9e6kt6BAFsY+6O7I6t3pCw==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-1lAKKKiH7eduzqcPDB03iPz38yNXn3Y4Q/3jULjaRc3EFAplfBsYVwJ9kGjXPZSrpt/AY7w5ATY55/r5B3gQnA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-LrJySMWrO5oWMrP4VOWM1hr3c4rtxHGCcRy19VwqvaAPDrnsg0qfPjv4q1C9YyIU8sj+T3oJs1yZdnNntlN8ew==" - } - }, - "npm:@nx/plugin": { - "type": "npm", - "name": "npm:@nx/plugin", - "data": { - "version": "17.2.6", - "packageName": "@nx/plugin", - "hash": "sha512-K9DZhFeqtmRSELwEbrK2zLOHhCf97glBjF2vRN24zb5k7tCAOtpsK7L6TD9Xl5OSx1e9ffi9emRJUjPli6XoRw==" - } - }, - "npm:@nx/web": { - "type": "npm", - "name": "npm:@nx/web", - "data": { - "version": "17.2.6", - "packageName": "@nx/web", - "hash": "sha512-6VkA19bFepNmrIISxXwYMo5nm/uUAPHQKNPfSHqxo9Ef57WS93dDMVRqc7641lRvT31Nc75Uu0NPYGo/B/s87A==" - } - }, - "npm:@nx/webpack": { - "type": "npm", - "name": "npm:@nx/webpack", - "data": { - "version": "17.2.6", - "packageName": "@nx/webpack", - "hash": "sha512-vODJosrOh5ru1Gy7rBp9yXVeeSF32bq1qTjOX3ez1OOXbw5fmJcxaOjOoh44ty0+d9wIB2YIl8lHsmmaCcmOnw==" - } - }, - "npm:array-union@3.0.1": { - "type": "npm", - "name": "npm:array-union@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "array-union", - "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:copy-webpack-plugin@10.2.4": { - "type": "npm", - "name": "npm:copy-webpack-plugin@10.2.4", - "data": { - "version": "10.2.4", - "packageName": "copy-webpack-plugin", - "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "11.0.0", - "packageName": "copy-webpack-plugin", - "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" - } - }, - "npm:cosmiconfig@7.1.0": { - "type": "npm", - "name": "npm:cosmiconfig@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "cosmiconfig", - "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "6.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - } - }, - "npm:cosmiconfig@8.3.6": { - "type": "npm", - "name": "npm:cosmiconfig@8.3.6", - "data": { - "version": "8.3.6", - "packageName": "cosmiconfig", - "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" - } - }, - "npm:glob-parent@6.0.2": { - "type": "npm", - "name": "npm:glob-parent@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:globby@12.2.0": { - "type": "npm", - "name": "npm:globby@12.2.0", - "data": { - "version": "12.2.0", - "packageName": "globby", - "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" - } - }, - "npm:globby@14.0.0": { - "type": "npm", - "name": "npm:globby@14.0.0", - "data": { - "version": "14.0.0", - "packageName": "globby", - "hash": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==" - } - }, - "npm:globby@13.2.2": { - "type": "npm", - "name": "npm:globby@13.2.2", - "data": { - "version": "13.2.2", - "packageName": "globby", - "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:iconv-lite@0.6.3": { - "type": "npm", - "name": "npm:iconv-lite@0.6.3", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:less@4.1.3": { - "type": "npm", - "name": "npm:less@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "less", - "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" - } - }, - "npm:less": { - "type": "npm", - "name": "npm:less", - "data": { - "version": "4.2.0", - "packageName": "less", - "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" - } - }, - "npm:loader-utils@2.0.4": { - "type": "npm", - "name": "npm:loader-utils@2.0.4", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "3.2.1", - "packageName": "loader-utils", - "hash": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" - } - }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir@4.0.0": { - "type": "npm", - "name": "npm:make-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:mini-css-extract-plugin@2.4.7": { - "type": "npm", - "name": "npm:mini-css-extract-plugin@2.4.7", - "data": { - "version": "2.4.7", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.7.6", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==" - } - }, - "npm:parse5@4.0.0": { - "type": "npm", - "name": "npm:parse5@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse5", - "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "npm:postcss-loader@6.2.1": { - "type": "npm", - "name": "npm:postcss-loader@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "postcss-loader", - "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" - } - }, - "npm:postcss-loader": { - "type": "npm", - "name": "npm:postcss-loader", - "data": { - "version": "7.3.3", - "packageName": "postcss-loader", - "hash": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==" - } - }, - "npm:sass-loader@12.6.0": { - "type": "npm", - "name": "npm:sass-loader@12.6.0", - "data": { - "version": "12.6.0", - "packageName": "sass-loader", - "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" - } - }, - "npm:sass-loader": { - "type": "npm", - "name": "npm:sass-loader", - "data": { - "version": "13.3.2", - "packageName": "sass-loader", - "hash": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:source-map-loader@3.0.2": { - "type": "npm", - "name": "npm:source-map-loader@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "source-map-loader", - "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "4.0.1", - "packageName": "source-map-loader", - "hash": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "17.2.6", - "packageName": "@nx/workspace", - "hash": "sha512-mss1RggPBWpggMJ7ok83iHx/PdlevhDqayLvjguRKjPwk0rTBRUuvY78AkKo2RbMOQyywNMt09MNz5FOmfCfqg==" - } - }, - "npm:@octokit/auth-token": { - "type": "npm", - "name": "npm:@octokit/auth-token", - "data": { - "version": "4.0.0", - "packageName": "@octokit/auth-token", - "hash": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==" - } - }, - "npm:@octokit/core": { - "type": "npm", - "name": "npm:@octokit/core", - "data": { - "version": "5.0.2", - "packageName": "@octokit/core", - "hash": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==" - } - }, - "npm:@octokit/endpoint": { - "type": "npm", - "name": "npm:@octokit/endpoint", - "data": { - "version": "9.0.4", - "packageName": "@octokit/endpoint", - "hash": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==" - } - }, - "npm:@octokit/graphql": { - "type": "npm", - "name": "npm:@octokit/graphql", - "data": { - "version": "7.0.2", - "packageName": "@octokit/graphql", - "hash": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==" - } - }, - "npm:@octokit/openapi-types": { - "type": "npm", - "name": "npm:@octokit/openapi-types", - "data": { - "version": "19.1.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" - } - }, - "npm:@octokit/plugin-paginate-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest", - "data": { - "version": "9.1.5", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==" - } - }, - "npm:@octokit/plugin-retry": { - "type": "npm", - "name": "npm:@octokit/plugin-retry", - "data": { - "version": "6.0.1", - "packageName": "@octokit/plugin-retry", - "hash": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==" - } - }, - "npm:@octokit/plugin-throttling": { - "type": "npm", - "name": "npm:@octokit/plugin-throttling", - "data": { - "version": "8.1.3", - "packageName": "@octokit/plugin-throttling", - "hash": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==" - } - }, - "npm:@octokit/request": { - "type": "npm", - "name": "npm:@octokit/request", - "data": { - "version": "8.1.6", - "packageName": "@octokit/request", - "hash": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==" - } - }, - "npm:@octokit/request-error": { - "type": "npm", - "name": "npm:@octokit/request-error", - "data": { - "version": "5.0.1", - "packageName": "@octokit/request-error", - "hash": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==" - } - }, - "npm:@octokit/types": { - "type": "npm", - "name": "npm:@octokit/types", - "data": { - "version": "12.4.0", - "packageName": "@octokit/types", - "hash": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==" - } - }, - "npm:@phenomnomnominal/tsquery": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery", - "data": { - "version": "5.0.1", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@pnpm/config.env-replace": { - "type": "npm", - "name": "npm:@pnpm/config.env-replace", - "data": { - "version": "1.1.0", - "packageName": "@pnpm/config.env-replace", - "hash": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==" - } - }, - "npm:@pnpm/network.ca-file": { - "type": "npm", - "name": "npm:@pnpm/network.ca-file", - "data": { - "version": "1.0.2", - "packageName": "@pnpm/network.ca-file", - "hash": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==" - } - }, - "npm:graceful-fs@4.2.10": { - "type": "npm", - "name": "npm:graceful-fs@4.2.10", - "data": { - "version": "4.2.10", - "packageName": "graceful-fs", - "hash": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:@pnpm/npm-conf": { - "type": "npm", - "name": "npm:@pnpm/npm-conf", - "data": { - "version": "2.2.2", - "packageName": "@pnpm/npm-conf", - "hash": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==" - } - }, - "npm:magic-string@0.30.0": { - "type": "npm", - "name": "npm:magic-string@0.30.0", - "data": { - "version": "0.30.0", - "packageName": "magic-string", - "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.5", - "packageName": "magic-string", - "hash": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==" - } - }, - "npm:@semantic-release/changelog": { - "type": "npm", - "name": "npm:@semantic-release/changelog", - "data": { - "version": "6.0.3", - "packageName": "@semantic-release/changelog", - "hash": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==" - } - }, - "npm:@semantic-release/commit-analyzer": { - "type": "npm", - "name": "npm:@semantic-release/commit-analyzer", - "data": { - "version": "11.1.0", - "packageName": "@semantic-release/commit-analyzer", - "hash": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==" - } - }, - "npm:@semantic-release/error": { - "type": "npm", - "name": "npm:@semantic-release/error", - "data": { - "version": "3.0.0", - "packageName": "@semantic-release/error", - "hash": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==" - } - }, - "npm:@semantic-release/error@4.0.0": { - "type": "npm", - "name": "npm:@semantic-release/error@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "@semantic-release/error", - "hash": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==" - } - }, - "npm:@semantic-release/exec": { - "type": "npm", - "name": "npm:@semantic-release/exec", - "data": { - "version": "6.0.3", - "packageName": "@semantic-release/exec", - "hash": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==" - } - }, - "npm:@semantic-release/git": { - "type": "npm", - "name": "npm:@semantic-release/git", - "data": { - "version": "10.0.1", - "packageName": "@semantic-release/git", - "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" - } - }, - "npm:@semantic-release/github": { - "type": "npm", - "name": "npm:@semantic-release/github", - "data": { - "version": "9.2.5", - "packageName": "@semantic-release/github", - "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" - } - }, - "npm:aggregate-error@5.0.0": { - "type": "npm", - "name": "npm:aggregate-error@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "aggregate-error", - "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:aggregate-error@4.0.1": { - "type": "npm", - "name": "npm:aggregate-error@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "aggregate-error", - "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" - } - }, - "npm:clean-stack@5.2.0": { - "type": "npm", - "name": "npm:clean-stack@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "clean-stack", - "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:clean-stack@4.2.0": { - "type": "npm", - "name": "npm:clean-stack@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "clean-stack", - "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" - } - }, - "npm:indent-string@5.0.0": { - "type": "npm", - "name": "npm:indent-string@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "indent-string", - "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:mime@4.0.1": { - "type": "npm", - "name": "npm:mime@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "mime", - "hash": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==" - } - }, - "npm:mime@2.6.0": { - "type": "npm", - "name": "npm:mime@2.6.0", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@1.4.1": { - "type": "npm", - "name": "npm:mime@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "mime", - "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - } - }, - "npm:mime@3.0.0": { - "type": "npm", - "name": "npm:mime@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "mime", - "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - } - }, - "npm:path-type@5.0.0": { - "type": "npm", - "name": "npm:path-type@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-type", - "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:path-type@3.0.0": { - "type": "npm", - "name": "npm:path-type@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-type", - "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" - } - }, - "npm:url-join@5.0.0": { - "type": "npm", - "name": "npm:url-join@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "url-join", - "hash": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:@semantic-release/npm": { - "type": "npm", - "name": "npm:@semantic-release/npm", - "data": { - "version": "11.0.2", - "packageName": "@semantic-release/npm", - "hash": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==" - } - }, - "npm:execa@8.0.1": { - "type": "npm", - "name": "npm:execa@8.0.1", - "data": { - "version": "8.0.1", - "packageName": "execa", - "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" - } - }, - "npm:execa@0.7.0": { - "type": "npm", - "name": "npm:execa@0.7.0", - "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" - } - }, - "npm:execa@4.1.0": { - "type": "npm", - "name": "npm:execa@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:execa@7.2.0": { - "type": "npm", - "name": "npm:execa@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "execa", - "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" - } - }, - "npm:get-stream@8.0.1": { - "type": "npm", - "name": "npm:get-stream@8.0.1", - "data": { - "version": "8.0.1", - "packageName": "get-stream", - "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" - } - }, - "npm:get-stream@3.0.0": { - "type": "npm", - "name": "npm:get-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" - } - }, - "npm:get-stream@5.2.0": { - "type": "npm", - "name": "npm:get-stream@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - } - }, - "npm:get-stream@6.0.1": { - "type": "npm", - "name": "npm:get-stream@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "7.0.1", - "packageName": "get-stream", - "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" - } - }, - "npm:human-signals@5.0.0": { - "type": "npm", - "name": "npm:human-signals@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "human-signals", - "hash": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" - } - }, - "npm:human-signals@1.1.1": { - "type": "npm", - "name": "npm:human-signals@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:human-signals@4.3.1": { - "type": "npm", - "name": "npm:human-signals@4.3.1", - "data": { - "version": "4.3.1", - "packageName": "human-signals", - "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" - } - }, - "npm:is-stream@3.0.0": { - "type": "npm", - "name": "npm:is-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-stream", - "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" - } - }, - "npm:is-stream@1.1.0": { - "type": "npm", - "name": "npm:is-stream@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:mimic-fn@4.0.0": { - "type": "npm", - "name": "npm:mimic-fn@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "mimic-fn", - "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:normalize-url@8.0.0": { - "type": "npm", - "name": "npm:normalize-url@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "normalize-url", - "hash": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-run-path@5.1.0": { - "type": "npm", - "name": "npm:npm-run-path@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "npm-run-path", - "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:onetime@6.0.0": { - "type": "npm", - "name": "npm:onetime@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "onetime", - "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:parse-json@8.1.0": { - "type": "npm", - "name": "npm:parse-json@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "parse-json", - "hash": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==" - } - }, - "npm:parse-json@4.0.0": { - "type": "npm", - "name": "npm:parse-json@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse-json", - "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:path-key@4.0.0": { - "type": "npm", - "name": "npm:path-key@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-key", - "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" - } - }, - "npm:path-key@2.0.1": { - "type": "npm", - "name": "npm:path-key@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "15700571927724585982" - } - }, - "npm:read-pkg@9.0.1": { - "type": "npm", - "name": "npm:read-pkg@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "read-pkg", - "hash": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==" - } - }, - "npm:read-pkg": { - "type": "npm", - "name": "npm:read-pkg", - "data": { - "version": "3.0.0", - "packageName": "read-pkg", - "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" - } - }, - "npm:signal-exit@4.1.0": { - "type": "npm", - "name": "npm:signal-exit@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:strip-final-newline@3.0.0": { - "type": "npm", - "name": "npm:strip-final-newline@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:@semantic-release/release-notes-generator": { - "type": "npm", - "name": "npm:@semantic-release/release-notes-generator", - "data": { - "version": "12.1.0", - "packageName": "@semantic-release/release-notes-generator", - "hash": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "2.1.0", - "packageName": "@sigstore/bundle", - "hash": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==" - } - }, - "npm:@sigstore/protobuf-specs": { - "type": "npm", - "name": "npm:@sigstore/protobuf-specs", - "data": { - "version": "0.2.1", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==" - } - }, - "npm:@sigstore/sign": { - "type": "npm", - "name": "npm:@sigstore/sign", - "data": { - "version": "2.2.0", - "packageName": "@sigstore/sign", - "hash": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "2.2.0", - "packageName": "@sigstore/tuf", - "hash": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.6.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - } - }, - "npm:@sindresorhus/merge-streams": { - "type": "npm", - "name": "npm:@sindresorhus/merge-streams", - "data": { - "version": "1.0.0", - "packageName": "@sindresorhus/merge-streams", - "hash": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.0", - "packageName": "@sinonjs/commons", - "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.3.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" - } - }, - "npm:@socket.io/component-emitter": { - "type": "npm", - "name": "npm:@socket.io/component-emitter", - "data": { - "version": "3.1.0", - "packageName": "@socket.io/component-emitter", - "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" - } - }, - "npm:@swc-node/core": { - "type": "npm", - "name": "npm:@swc-node/core", - "data": { - "version": "1.10.6", - "packageName": "@swc-node/core", - "hash": "sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==" - } - }, - "npm:@swc-node/register": { - "type": "npm", - "name": "npm:@swc-node/register", - "data": { - "version": "1.6.8", - "packageName": "@swc-node/register", - "hash": "sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==" - } - }, - "npm:@swc-node/sourcemap-support": { - "type": "npm", - "name": "npm:@swc-node/sourcemap-support", - "data": { - "version": "0.3.0", - "packageName": "@swc-node/sourcemap-support", - "hash": "sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==" - } - }, - "npm:@swc/cli": { - "type": "npm", - "name": "npm:@swc/cli", - "data": { - "version": "0.1.63", - "packageName": "@swc/cli", - "hash": "sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==" - } - }, - "npm:@swc/core": { - "type": "npm", - "name": "npm:@swc/core", - "data": { - "version": "1.3.101", - "packageName": "@swc/core", - "hash": "sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==" - } - }, - "npm:@swc/core-darwin-arm64": { - "type": "npm", - "name": "npm:@swc/core-darwin-arm64", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==" - } - }, - "npm:@swc/core-darwin-x64": { - "type": "npm", - "name": "npm:@swc/core-darwin-x64", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-darwin-x64", - "hash": "sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==" - } - }, - "npm:@swc/core-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@swc/core-linux-arm-gnueabihf", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==" - } - }, - "npm:@swc/core-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-gnu", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==" - } - }, - "npm:@swc/core-linux-arm64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-musl", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==" - } - }, - "npm:@swc/core-linux-x64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-gnu", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==" - } - }, - "npm:@swc/core-linux-x64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-musl", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==" - } - }, - "npm:@swc/core-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-arm64-msvc", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==" - } - }, - "npm:@swc/core-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-ia32-msvc", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==" - } - }, - "npm:@swc/core-win32-x64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-x64-msvc", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==" - } - }, - "npm:@swc/counter": { - "type": "npm", - "name": "npm:@swc/counter", - "data": { - "version": "0.1.2", - "packageName": "@swc/counter", - "hash": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==" - } - }, - "npm:@swc/helpers": { - "type": "npm", - "name": "npm:@swc/helpers", - "data": { - "version": "0.5.3", - "packageName": "@swc/helpers", - "hash": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==" - } - }, - "npm:@swc/types": { - "type": "npm", - "name": "npm:@swc/types", - "data": { - "version": "0.1.5", - "packageName": "@swc/types", - "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.6", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" - } - }, - "npm:@tokenizer/token": { - "type": "npm", - "name": "npm:@tokenizer/token", - "data": { - "version": "0.3.0", - "packageName": "@tokenizer/token", - "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@tsconfig/node10": { - "type": "npm", - "name": "npm:@tsconfig/node10", - "data": { - "version": "1.0.9", - "packageName": "@tsconfig/node10", - "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - } - }, - "npm:@tsconfig/node12": { - "type": "npm", - "name": "npm:@tsconfig/node12", - "data": { - "version": "1.0.11", - "packageName": "@tsconfig/node12", - "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - } - }, - "npm:@tsconfig/node14": { - "type": "npm", - "name": "npm:@tsconfig/node14", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node14", - "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - } - }, - "npm:@tsconfig/node16": { - "type": "npm", - "name": "npm:@tsconfig/node16", - "data": { - "version": "1.0.4", - "packageName": "@tsconfig/node16", - "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" - } - }, - "npm:@tufjs/canonical-json": { - "type": "npm", - "name": "npm:@tufjs/canonical-json", - "data": { - "version": "2.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" - } - }, - "npm:@tufjs/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "2.0.0", - "packageName": "@tufjs/models", - "hash": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==" - } - }, - "npm:brace-expansion@2.0.1": { - "type": "npm", - "name": "npm:brace-expansion@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.8", - "packageName": "@types/babel__generator", - "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.4", - "packageName": "@types/babel__traverse", - "hash": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.5", - "packageName": "@types/body-parser", - "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.13", - "packageName": "@types/bonjour", - "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.3", - "packageName": "@types/cacheable-request", - "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.5.4", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/cors": { - "type": "npm", - "name": "npm:@types/cors", - "data": { - "version": "2.8.17", - "packageName": "@types/cors", - "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "8.56.0", - "packageName": "@types/eslint", - "hash": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.7", - "packageName": "@types/eslint-scope", - "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.5", - "packageName": "@types/estree", - "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.21", - "packageName": "@types/express", - "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.17.41", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.9", - "packageName": "@types/graceful-fs", - "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.4", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.4", - "packageName": "@types/http-errors", - "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.14", - "packageName": "@types/http-proxy", - "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" - } - }, - "npm:@types/inquirer": { - "type": "npm", - "name": "npm:@types/inquirer", - "data": { - "version": "9.0.7", - "packageName": "@types/inquirer", - "hash": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.6", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "3.0.3", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.4", - "packageName": "@types/istanbul-reports", - "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.11", - "packageName": "@types/jest", - "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.4", - "packageName": "@types/keyv", - "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.14.202", - "packageName": "@types/lodash", - "hash": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "1.3.5", - "packageName": "@types/mime", - "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.16.9", - "packageName": "@types/node", - "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" - } - }, - "npm:@types/node@16.18.68": { - "type": "npm", - "name": "npm:@types/node@16.18.68", - "data": { - "version": "16.18.68", - "packageName": "@types/node", - "hash": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==" - } - }, - "npm:@types/node-forge": { - "type": "npm", - "name": "npm:@types/node-forge", - "data": { - "version": "1.3.10", - "packageName": "@types/node-forge", - "hash": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==" - } - }, - "npm:@types/normalize-package-data": { - "type": "npm", - "name": "npm:@types/normalize-package-data", - "data": { - "version": "2.4.4", - "packageName": "@types/normalize-package-data", - "hash": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==" - } - }, - "npm:@types/parse-json": { - "type": "npm", - "name": "npm:@types/parse-json", - "data": { - "version": "4.0.2", - "packageName": "@types/parse-json", - "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.10", - "packageName": "@types/qs", - "hash": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.3", - "packageName": "@types/responselike", - "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "7.5.6", - "packageName": "@types/semver", - "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "0.17.4", - "packageName": "@types/send", - "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.4", - "packageName": "@types/serve-index", - "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.5", - "packageName": "@types/serve-static", - "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.1", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" - } - }, - "npm:@types/sizzle": { - "type": "npm", - "name": "npm:@types/sizzle", - "data": { - "version": "2.3.8", - "packageName": "@types/sizzle", - "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.36", - "packageName": "@types/sockjs", - "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/through": { - "type": "npm", - "name": "npm:@types/through", - "data": { - "version": "0.0.33", - "packageName": "@types/through", - "hash": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.5", - "packageName": "@types/tough-cookie", - "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.10", - "packageName": "@types/ws", - "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.32", - "packageName": "@types/yargs", - "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "21.0.3", - "packageName": "@types/yargs-parser", - "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.10.3", - "packageName": "@types/yauzl", - "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==" - } - }, - "npm:@typescript-eslint/type-utils@6.15.0": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils@6.15.0", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==" - } - }, - "npm:@typescript-eslint/utils@6.15.0": { - "type": "npm", - "name": "npm:@typescript-eslint/utils@6.15.0", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==" - } - }, - "npm:@typescript-eslint/scope-manager@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==" - } - }, - "npm:@typescript-eslint/types@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/types@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==" - } - }, - "npm:@typescript-eslint/typescript-estree@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==" - } - }, - "npm:@typescript-eslint/visitor-keys@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==" - } - }, - "npm:@verdaccio/commons-api": { - "type": "npm", - "name": "npm:@verdaccio/commons-api", - "data": { - "version": "10.2.0", - "packageName": "@verdaccio/commons-api", - "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" - } - }, - "npm:@verdaccio/config": { - "type": "npm", - "name": "npm:@verdaccio/config", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/config", - "hash": "sha512-bMQEL+ZGzoH8WIHEoC1HZon35QIWjY3KdYGyKc4eUKr6bUyQSRksmPQ40NQVgcUY0vlfkJMB+TCvgVXaf8kfBw==" - } - }, - "npm:@verdaccio/core": { - "type": "npm", - "name": "npm:@verdaccio/core", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/core", - "hash": "sha512-wbgFq7d2m/ijmusD6wPVxm6aCxvSLNcP/XagrNKahEbdcgMcDv+6Dm6ZBaKcVgtIMv++aZkc3F3mV4Scj3snSQ==" - } - }, - "npm:@verdaccio/file-locking": { - "type": "npm", - "name": "npm:@verdaccio/file-locking", - "data": { - "version": "10.3.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" - } - }, - "npm:@verdaccio/file-locking@12.0.0-next.1": { - "type": "npm", - "name": "npm:@verdaccio/file-locking@12.0.0-next.1", - "data": { - "version": "12.0.0-next.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" - } - }, - "npm:@verdaccio/local-storage": { - "type": "npm", - "name": "npm:@verdaccio/local-storage", - "data": { - "version": "10.3.3", - "packageName": "@verdaccio/local-storage", - "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" - } - }, - "npm:async@3.2.4": { - "type": "npm", - "name": "npm:async@3.2.4", - "data": { - "version": "3.2.4", - "packageName": "async", - "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.5", - "packageName": "async", - "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - } - }, - "npm:async@2.6.4": { - "type": "npm", - "name": "npm:async@2.6.4", - "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:@verdaccio/logger-7": { - "type": "npm", - "name": "npm:@verdaccio/logger-7", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/logger-7", - "hash": "sha512-kx+/vY9THFHXTxsQT/McbqG4psu6CmlkjnLvcrk0Gbyki3Uaquo79K/3rPokHWnS7Ur45gxYIukIAzVfcA0mKA==" - } - }, - "npm:@verdaccio/logger-commons": { - "type": "npm", - "name": "npm:@verdaccio/logger-commons", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/logger-commons", - "hash": "sha512-l7T3u8eW84UrQQHAOjqUw12t9q2IRleCnniQ9wV/KpBQNwuE3BPPy6t9/64QW9eXOzldJ8G3w7ttPCsK+cq8uw==" - } - }, - "npm:@verdaccio/logger-prettify": { - "type": "npm", - "name": "npm:@verdaccio/logger-prettify", - "data": { - "version": "7.0.0-next.1", - "packageName": "@verdaccio/logger-prettify", - "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" - } - }, - "npm:dayjs@1.11.7": { - "type": "npm", - "name": "npm:dayjs@1.11.7", - "data": { - "version": "1.11.7", - "packageName": "dayjs", - "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.10", - "packageName": "dayjs", - "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - } - }, - "npm:@verdaccio/middleware": { - "type": "npm", - "name": "npm:@verdaccio/middleware", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/middleware", - "hash": "sha512-EjRif42rbikn5WUB6+an9IX6zoAXiIG5jKOmzdOx6vIZ3iYg0HmgEFW5do2gVchFiox1+M2WMRTS55J0xG+dCA==" - } - }, - "npm:@verdaccio/search": { - "type": "npm", - "name": "npm:@verdaccio/search", - "data": { - "version": "7.0.0-next.2", - "packageName": "@verdaccio/search", - "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" - } - }, - "npm:@verdaccio/signature": { - "type": "npm", - "name": "npm:@verdaccio/signature", - "data": { - "version": "7.0.0-next.2", - "packageName": "@verdaccio/signature", - "hash": "sha512-rxoSmdKrSJZEoSsWKjgytpqf2Bltbs6sR5Hflu8xXfPZPmHpXkGgAdb8tuSlnmjzo6hXoKfje8b9BJoP2bDwbA==" - } - }, - "npm:@verdaccio/streams": { - "type": "npm", - "name": "npm:@verdaccio/streams", - "data": { - "version": "10.2.1", - "packageName": "@verdaccio/streams", - "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" - } - }, - "npm:@verdaccio/tarball": { - "type": "npm", - "name": "npm:@verdaccio/tarball", - "data": { - "version": "12.0.0-next.4", - "packageName": "@verdaccio/tarball", - "hash": "sha512-3GuyDaoshKOYdv+zTEKiyUO/0h3xGvr+RCJBkvMkPwIXfbkWDPyk00lxSXZDCqwFePZgcDaHOqS7krz2rMdsoQ==" - } - }, - "npm:@verdaccio/ui-theme": { - "type": "npm", - "name": "npm:@verdaccio/ui-theme", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/ui-theme", - "hash": "sha512-zvkAMyBmD0txGEpocdGQ9yRCvPYZEb0lH6lh0AAOcKwXg5SaY9yW/n2Rx3k6873xebA4bEMldWB3j+Uv8Jciqw==" - } - }, - "npm:@verdaccio/url": { - "type": "npm", - "name": "npm:@verdaccio/url", - "data": { - "version": "12.0.0-next.4", - "packageName": "@verdaccio/url", - "hash": "sha512-0SszVxX6VGgbrwPWU2WzvEbTUEZP4j6Krulb7Ju6hCVrV6A1/W/CGrztnRNcdE/avSZWZvvDpQ65NBRFE7pjtQ==" - } - }, - "npm:validator@13.9.0": { - "type": "npm", - "name": "npm:validator@13.9.0", - "data": { - "version": "13.9.0", - "packageName": "validator", - "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.11.0", - "packageName": "validator", - "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" - } - }, - "npm:@verdaccio/utils": { - "type": "npm", - "name": "npm:@verdaccio/utils", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/utils", - "hash": "sha512-hgGUkmxBl03TvXQSvgHeI9BU6JrCW/QQu7O3+9f1etvCz2EWQ81JvCv8qsY3bHCT/ggYapvr/8xcjtUtJ1/KgA==" - } - }, - "npm:@vitejs/plugin-basic-ssl": { - "type": "npm", - "name": "npm:@vitejs/plugin-basic-ssl", - "data": { - "version": "1.0.1", - "packageName": "@vitejs/plugin-basic-ssl", - "hash": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.6", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "2.0.0", - "packageName": "abbrev", - "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.11.2", - "packageName": "acorn", - "hash": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-assertions": { - "type": "npm", - "name": "npm:acorn-import-assertions", - "data": { - "version": "1.9.0", - "packageName": "acorn-import-assertions", - "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.1", - "packageName": "acorn-walk", - "hash": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==" - } - }, - "npm:address": { - "type": "npm", - "name": "npm:address", - "data": { - "version": "1.2.2", - "packageName": "address", - "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" - } - }, - "npm:adjust-sourcemap-loader": { - "type": "npm", - "name": "npm:adjust-sourcemap-loader", - "data": { - "version": "4.0.0", - "packageName": "adjust-sourcemap-loader", - "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "7.1.0", - "packageName": "agent-base", - "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" - } - }, - "npm:agent-base@6.0.2": { - "type": "npm", - "name": "npm:agent-base@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:ajv-formats": { - "type": "npm", - "name": "npm:ajv-formats", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv-keywords@3.5.2": { - "type": "npm", - "name": "npm:ajv-keywords@3.5.2", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "4.1.3", - "packageName": "ansi-colors", - "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.2", - "packageName": "ansi-escapes", - "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" - } - }, - "npm:ansi-escapes@5.0.0": { - "type": "npm", - "name": "npm:ansi-escapes@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "ansi-escapes", - "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" - } - }, - "npm:ansi-escapes@6.2.0": { - "type": "npm", - "name": "npm:ansi-escapes@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "ansi-escapes", - "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:ansi-red": { - "type": "npm", - "name": "npm:ansi-red", - "data": { - "version": "0.1.1", - "packageName": "ansi-red", - "hash": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==" - } - }, - "npm:ansi-wrap": { - "type": "npm", - "name": "npm:ansi-wrap", - "data": { - "version": "0.1.0", - "packageName": "ansi-wrap", - "hash": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==" - } - }, - "npm:ansicolors": { - "type": "npm", - "name": "npm:ansicolors", - "data": { - "version": "0.3.2", - "packageName": "ansicolors", - "hash": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:picomatch@2.3.1": { - "type": "npm", - "name": "npm:picomatch@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "3.0.1", - "packageName": "picomatch", - "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" - } - }, - "npm:apache-md5": { - "type": "npm", - "name": "npm:apache-md5", - "data": { - "version": "1.1.8", - "packageName": "apache-md5", - "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" - } - }, - "npm:arch": { - "type": "npm", - "name": "npm:arch", - "data": { - "version": "2.2.0", - "packageName": "arch", - "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:argv-formatter": { - "type": "npm", - "name": "npm:argv-formatter", - "data": { - "version": "1.0.0", - "packageName": "argv-formatter", - "hash": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==" - } - }, - "npm:aria-query": { - "type": "npm", - "name": "npm:aria-query", - "data": { - "version": "5.3.0", - "packageName": "aria-query", - "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.0", - "packageName": "array-buffer-byte-length", - "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - } - }, - "npm:array-flatten@2.1.2": { - "type": "npm", - "name": "npm:array-flatten@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "array-flatten", - "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - } - }, - "npm:array-ify": { - "type": "npm", - "name": "npm:array-ify", - "data": { - "version": "1.0.0", - "packageName": "array-ify", - "hash": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.2", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" - } - }, - "npm:asn1": { - "type": "npm", - "name": "npm:asn1", - "data": { - "version": "0.2.6", - "packageName": "asn1", - "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-each-series": { - "type": "npm", - "name": "npm:async-each-series", - "data": { - "version": "0.1.1", - "packageName": "async-each-series", - "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:atomic-sleep": { - "type": "npm", - "name": "npm:atomic-sleep", - "data": { - "version": "1.0.0", - "packageName": "atomic-sleep", - "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - } - }, - "npm:autolinker": { - "type": "npm", - "name": "npm:autolinker", - "data": { - "version": "0.28.1", - "packageName": "autolinker", - "hash": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.4.16", - "packageName": "autoprefixer", - "hash": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.5", - "packageName": "available-typed-arrays", - "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - } - }, - "npm:aws-sign2": { - "type": "npm", - "name": "npm:aws-sign2", - "data": { - "version": "0.7.0", - "packageName": "aws-sign2", - "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - } - }, - "npm:aws4": { - "type": "npm", - "name": "npm:aws4", - "data": { - "version": "1.12.0", - "packageName": "aws4", - "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "0.21.4", - "packageName": "axios", - "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" - } - }, - "npm:axios@1.6.2": { - "type": "npm", - "name": "npm:axios@1.6.2", - "data": { - "version": "1.6.2", - "packageName": "axios", - "hash": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==" - } - }, - "npm:axobject-query": { - "type": "npm", - "name": "npm:axobject-query", - "data": { - "version": "4.0.0", - "packageName": "axobject-query", - "hash": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "9.1.3", - "packageName": "babel-loader", - "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" - } - }, - "npm:find-cache-dir@4.0.0": { - "type": "npm", - "name": "npm:find-cache-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "find-cache-dir", - "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-up@5.0.0": { - "type": "npm", - "name": "npm:find-up@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:find-up@2.1.0": { - "type": "npm", - "name": "npm:find-up@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-up", - "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" - } - }, - "npm:locate-path@7.2.0": { - "type": "npm", - "name": "npm:locate-path@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "locate-path", - "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" - } - }, - "npm:locate-path@6.0.0": { - "type": "npm", - "name": "npm:locate-path@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:locate-path@2.0.0": { - "type": "npm", - "name": "npm:locate-path@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "locate-path", - "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@1.3.0": { - "type": "npm", - "name": "npm:p-limit@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "p-limit", - "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-locate@5.0.0": { - "type": "npm", - "name": "npm:p-locate@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:p-locate@2.0.0": { - "type": "npm", - "name": "npm:p-locate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "p-locate", - "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, - "npm:pkg-dir@7.0.0": { - "type": "npm", - "name": "npm:pkg-dir@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "pkg-dir", - "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:babel-plugin-const-enum": { - "type": "npm", - "name": "npm:babel-plugin-const-enum", - "data": { - "version": "1.2.0", - "packageName": "babel-plugin-const-enum", - "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:istanbul-lib-instrument@5.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "6.0.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-macros": { - "type": "npm", - "name": "npm:babel-plugin-macros", - "data": { - "version": "2.8.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" - } - }, - "npm:babel-plugin-macros@3.1.0": { - "type": "npm", - "name": "npm:babel-plugin-macros@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.7", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.8.7", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.5.4", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==" - } - }, - "npm:babel-plugin-transform-typescript-metadata": { - "type": "npm", - "name": "npm:babel-plugin-transform-typescript-metadata", - "data": { - "version": "0.3.2", - "packageName": "babel-plugin-transform-typescript-metadata", - "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:base64id": { - "type": "npm", - "name": "npm:base64id", - "data": { - "version": "2.0.0", - "packageName": "base64id", - "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" - } - }, - "npm:basic-auth": { - "type": "npm", - "name": "npm:basic-auth", - "data": { - "version": "2.0.1", - "packageName": "basic-auth", - "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "12153499668482607410" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - } - }, - "npm:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" - } - }, - "npm:bcryptjs": { - "type": "npm", - "name": "npm:bcryptjs", - "data": { - "version": "2.4.3", - "packageName": "bcryptjs", - "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" - } - }, - "npm:before-after-hook": { - "type": "npm", - "name": "npm:before-after-hook", - "data": { - "version": "2.2.3", - "packageName": "before-after-hook", - "hash": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:bin-check": { - "type": "npm", - "name": "npm:bin-check", - "data": { - "version": "4.1.0", - "packageName": "bin-check", - "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" - } - }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "341129833107810678" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "3348982168836855660" - } - }, - "npm:bin-version": { - "type": "npm", - "name": "npm:bin-version", - "data": { - "version": "6.0.0", - "packageName": "bin-version", - "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" - } - }, - "npm:bin-version-check": { - "type": "npm", - "name": "npm:bin-version-check", - "data": { - "version": "5.1.0", - "packageName": "bin-version-check", - "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.2.0", - "packageName": "binary-extensions", - "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:readable-stream@3.6.2": { - "type": "npm", - "name": "npm:readable-stream@3.6.2", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readable-stream@4.4.2": { - "type": "npm", - "name": "npm:readable-stream@4.4.2", - "data": { - "version": "4.4.2", - "packageName": "readable-stream", - "hash": "41880603492280987" - } - }, - "npm:readable-stream@4.5.1": { - "type": "npm", - "name": "npm:readable-stream@4.5.1", - "data": { - "version": "4.5.1", - "packageName": "readable-stream", - "hash": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:blob-util": { - "type": "npm", - "name": "npm:blob-util", - "data": { - "version": "2.0.2", - "packageName": "blob-util", - "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.7.2", - "packageName": "bluebird", - "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.20.2", - "packageName": "body-parser", - "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" - } - }, - "npm:body-parser@1.20.1": { - "type": "npm", - "name": "npm:body-parser@1.20.1", - "data": { - "version": "1.20.1", - "packageName": "body-parser", - "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - }, - "npm:ms@2.1.3": { - "type": "npm", - "name": "npm:ms@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:on-finished@2.4.1": { - "type": "npm", - "name": "npm:on-finished@2.4.1", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:qs@6.11.0": { - "type": "npm", - "name": "npm:qs@6.11.0", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.10.4", - "packageName": "qs", - "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" - } - }, - "npm:bonjour-service": { - "type": "npm", - "name": "npm:bonjour-service", - "data": { - "version": "1.1.1", - "packageName": "bonjour-service", - "hash": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:bottleneck": { - "type": "npm", - "name": "npm:bottleneck", - "data": { - "version": "2.19.5", - "packageName": "bottleneck", - "hash": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:browser-sync": { - "type": "npm", - "name": "npm:browser-sync", - "data": { - "version": "2.29.3", - "packageName": "browser-sync", - "hash": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==" - } - }, - "npm:browser-sync-client": { - "type": "npm", - "name": "npm:browser-sync-client", - "data": { - "version": "2.29.3", - "packageName": "browser-sync-client", - "hash": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==" - } - }, - "npm:browser-sync-ui": { - "type": "npm", - "name": "npm:browser-sync-ui", - "data": { - "version": "2.29.3", - "packageName": "browser-sync-ui", - "hash": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==" - } - }, - "npm:fs-extra@3.0.1": { - "type": "npm", - "name": "npm:fs-extra@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "fs-extra", - "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:jsonfile@3.0.1": { - "type": "npm", - "name": "npm:jsonfile@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "jsonfile", - "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonfile@5.0.0": { - "type": "npm", - "name": "npm:jsonfile@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "jsonfile", - "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.1", - "packageName": "universalify", - "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.22.2", - "packageName": "browserslist", - "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" - } - }, - "npm:bs-logger": { - "type": "npm", - "name": "npm:bs-logger", - "data": { - "version": "0.2.6", - "packageName": "bs-logger", - "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" - } - }, - "npm:bs-recipes": { - "type": "npm", - "name": "npm:bs-recipes", - "data": { - "version": "1.3.4", - "packageName": "bs-recipes", - "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.1", - "packageName": "bser", - "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" - } - }, - "npm:btoa": { - "type": "npm", - "name": "npm:btoa", - "data": { - "version": "1.2.1", - "packageName": "btoa", - "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffer@6.0.3": { - "type": "npm", - "name": "npm:buffer@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "buffer", - "hash": "9693504204722543652" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - } - }, - "npm:buffer-equal-constant-time": { - "type": "npm", - "name": "npm:buffer-equal-constant-time", - "data": { - "version": "1.0.1", - "packageName": "buffer-equal-constant-time", - "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.0.1", - "packageName": "builtins", - "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "18.0.1", - "packageName": "cacache", - "hash": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob@7.1.4": { - "type": "npm", - "name": "npm:glob@7.1.4", - "data": { - "version": "7.1.4", - "packageName": "glob", - "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.4.0", - "packageName": "cachedir", - "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.5", - "packageName": "call-bind", - "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001570", - "packageName": "caniuse-lite", - "hash": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==" - } - }, - "npm:cardinal": { - "type": "npm", - "name": "npm:cardinal", - "data": { - "version": "2.1.1", - "packageName": "cardinal", - "hash": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "0.7.0", - "packageName": "chardet", - "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - } - }, - "npm:check-more-types": { - "type": "npm", - "name": "npm:check-more-types", - "data": { - "version": "2.24.0", - "packageName": "check-more-types", - "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.5.3", - "packageName": "chokidar", - "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.3", - "packageName": "chrome-trace-event", - "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:ci-info@4.0.0": { - "type": "npm", - "name": "npm:ci-info@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "ci-info", - "hash": "8652404921969079036" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.3", - "packageName": "cjs-module-lexer", - "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-cursor@4.0.0": { - "type": "npm", - "name": "npm:cli-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-cursor", - "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:cli-table3": { - "type": "npm", - "name": "npm:cli-table3", - "data": { - "version": "0.6.3", - "packageName": "cli-table3", - "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "2.1.0", - "packageName": "cli-truncate", - "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" - } - }, - "npm:cli-truncate@3.1.0": { - "type": "npm", - "name": "npm:cli-truncate@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "cli-truncate", - "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" - } - }, - "npm:clipanion": { - "type": "npm", - "name": "npm:clipanion", - "data": { - "version": "3.2.1", - "packageName": "clipanion", - "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:cliui@7.0.4": { - "type": "npm", - "name": "npm:cliui@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "cliui", - "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:kind-of@6.0.3": { - "type": "npm", - "name": "npm:kind-of@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "3.2.2", - "packageName": "kind-of", - "hash": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.3", - "packageName": "clone-response", - "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "npm:coffee-script": { - "type": "npm", - "name": "npm:coffee-script", - "data": { - "version": "1.12.7", - "packageName": "coffee-script", - "hash": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.2", - "packageName": "collect-v8-coverage", - "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:columnify": { - "type": "npm", - "name": "npm:columnify", - "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:commander@6.2.1": { - "type": "npm", - "name": "npm:commander@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:commander@11.0.0": { - "type": "npm", - "name": "npm:commander@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "commander", - "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" - } - }, - "npm:commander@2.20.3": { - "type": "npm", - "name": "npm:commander@2.20.3", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:common-tags": { - "type": "npm", - "name": "npm:common-tags", - "data": { - "version": "1.8.2", - "packageName": "common-tags", - "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - } - }, - "npm:compare-func": { - "type": "npm", - "name": "npm:compare-func", - "data": { - "version": "2.0.0", - "packageName": "compare-func", - "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.18", - "packageName": "compressible", - "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:concat-stream": { - "type": "npm", - "name": "npm:concat-stream", - "data": { - "version": "1.6.2", - "packageName": "concat-stream", - "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" - } - }, - "npm:concat-with-sourcemaps": { - "type": "npm", - "name": "npm:concat-with-sourcemaps", - "data": { - "version": "1.1.0", - "packageName": "concat-with-sourcemaps", - "hash": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==" - } - }, - "npm:config-chain": { - "type": "npm", - "name": "npm:config-chain", - "data": { - "version": "1.1.13", - "packageName": "config-chain", - "hash": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==" - } - }, - "npm:ini@1.3.8": { - "type": "npm", - "name": "npm:ini@1.3.8", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:ini@2.0.0": { - "type": "npm", - "name": "npm:ini@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ini", - "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "4.1.1", - "packageName": "ini", - "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" - } - }, - "npm:confusing-browser-globals": { - "type": "npm", - "name": "npm:confusing-browser-globals", - "data": { - "version": "1.0.11", - "packageName": "confusing-browser-globals", - "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.6.6", - "packageName": "connect", - "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "1.6.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - } - }, - "npm:connect-history-api-fallback@2.0.0": { - "type": "npm", - "name": "npm:connect-history-api-fallback@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - } - }, - "npm:connect-pause": { - "type": "npm", - "name": "npm:connect-pause", - "data": { - "version": "0.1.1", - "packageName": "connect-pause", - "hash": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:conventional-changelog-angular": { - "type": "npm", - "name": "npm:conventional-changelog-angular", - "data": { - "version": "7.0.0", - "packageName": "conventional-changelog-angular", - "hash": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==" - } - }, - "npm:conventional-changelog-conventionalcommits": { - "type": "npm", - "name": "npm:conventional-changelog-conventionalcommits", - "data": { - "version": "7.0.2", - "packageName": "conventional-changelog-conventionalcommits", - "hash": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==" - } - }, - "npm:conventional-changelog-writer": { - "type": "npm", - "name": "npm:conventional-changelog-writer", - "data": { - "version": "7.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==" - } - }, - "npm:conventional-commits-filter": { - "type": "npm", - "name": "npm:conventional-commits-filter", - "data": { - "version": "4.0.0", - "packageName": "conventional-commits-filter", - "hash": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==" - } - }, - "npm:conventional-commits-parser": { - "type": "npm", - "name": "npm:conventional-commits-parser", - "data": { - "version": "5.0.0", - "packageName": "conventional-commits-parser", - "hash": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.5.0", - "packageName": "cookie", - "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - } - }, - "npm:cookie@0.4.2": { - "type": "npm", - "name": "npm:cookie@0.4.2", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - } - }, - "npm:cookies": { - "type": "npm", - "name": "npm:cookies", - "data": { - "version": "0.8.0", - "packageName": "cookies", - "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" - } - }, - "npm:copy-anything": { - "type": "npm", - "name": "npm:copy-anything", - "data": { - "version": "2.0.6", - "packageName": "copy-anything", - "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" - } - }, - "npm:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.30.2", - "packageName": "core-js", - "hash": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.34.0", - "packageName": "core-js-compat", - "hash": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.3", - "packageName": "core-util-is", - "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - } - }, - "npm:core-util-is@1.0.2": { - "type": "npm", - "name": "npm:core-util-is@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "core-util-is", - "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - } - }, - "npm:cors": { - "type": "npm", - "name": "npm:cors", - "data": { - "version": "2.8.5", - "packageName": "cors", - "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" - } - }, - "npm:corser": { - "type": "npm", - "name": "npm:corser", - "data": { - "version": "2.0.1", - "packageName": "corser", - "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:create-require": { - "type": "npm", - "name": "npm:create-require", - "data": { - "version": "1.1.1", - "packageName": "create-require", - "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - } - }, - "npm:critters": { - "type": "npm", - "name": "npm:critters", - "data": { - "version": "0.0.20", - "packageName": "critters", - "hash": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==" - } - }, - "npm:crypto-random-string": { - "type": "npm", - "name": "npm:crypto-random-string", - "data": { - "version": "4.0.0", - "packageName": "crypto-random-string", - "hash": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "7.1.1", - "packageName": "css-declaration-sorter", - "hash": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "6.8.1", - "packageName": "css-loader", - "hash": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==" - } - }, - "npm:css-minimizer-webpack-plugin": { - "type": "npm", - "name": "npm:css-minimizer-webpack-plugin", - "data": { - "version": "5.0.1", - "packageName": "css-minimizer-webpack-plugin", - "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "5.1.0", - "packageName": "css-select", - "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "2.3.1", - "packageName": "css-tree", - "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" - } - }, - "npm:css-tree@2.2.1": { - "type": "npm", - "name": "npm:css-tree@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "css-tree", - "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.1.0", - "packageName": "css-what", - "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano": { - "type": "npm", - "name": "npm:cssnano", - "data": { - "version": "6.0.2", - "packageName": "cssnano", - "hash": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "6.0.2", - "packageName": "cssnano-preset-default", - "hash": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "4.0.1", - "packageName": "cssnano-utils", - "hash": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==" - } - }, - "npm:csso": { - "type": "npm", - "name": "npm:csso", - "data": { - "version": "5.0.5", - "packageName": "csso", - "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" - } - }, - "npm:mdn-data@2.0.28": { - "type": "npm", - "name": "npm:mdn-data@2.0.28", - "data": { - "version": "2.0.28", - "packageName": "mdn-data", - "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.30", - "packageName": "mdn-data", - "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:cypress": { - "type": "npm", - "name": "npm:cypress", - "data": { - "version": "12.17.4", - "packageName": "cypress", - "hash": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==" - } - }, - "npm:dashdash": { - "type": "npm", - "name": "npm:dashdash", - "data": { - "version": "1.14.1", - "packageName": "dashdash", - "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:mimic-response@3.1.0": { - "type": "npm", - "name": "npm:mimic-response@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.3.1", - "packageName": "deepmerge", - "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.1", - "packageName": "define-data-property", - "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.2.1", - "packageName": "define-properties", - "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:depd@1.1.2": { - "type": "npm", - "name": "npm:depd@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - } - }, - "npm:deprecation": { - "type": "npm", - "name": "npm:deprecation", - "data": { - "version": "2.3.1", - "packageName": "deprecation", - "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - } - }, - "npm:dequal": { - "type": "npm", - "name": "npm:dequal", - "data": { - "version": "2.0.3", - "packageName": "dequal", - "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.2.0", - "packageName": "destroy", - "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - } - }, - "npm:destroy@1.0.4": { - "type": "npm", - "name": "npm:destroy@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "destroy", - "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.1.0", - "packageName": "detect-node", - "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - } - }, - "npm:detect-port": { - "type": "npm", - "name": "npm:detect-port", - "data": { - "version": "1.5.1", - "packageName": "detect-port", - "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" - } - }, - "npm:dev-ip": { - "type": "npm", - "name": "npm:dev-ip", - "data": { - "version": "1.0.1", - "packageName": "dev-ip", - "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" - } - }, - "npm:diacritics-map": { - "type": "npm", - "name": "npm:diacritics-map", - "data": { - "version": "0.1.0", - "packageName": "diacritics-map", - "hash": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:diff@5.1.0": { - "type": "npm", - "name": "npm:diff@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "diff", - "hash": "14595041656651737167" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:dns-equal": { - "type": "npm", - "name": "npm:dns-equal", - "data": { - "version": "1.0.0", - "packageName": "dns-equal", - "hash": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "5.6.1", - "packageName": "dns-packet", - "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "2.0.0", - "packageName": "dom-serializer", - "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "5.0.3", - "packageName": "domhandler", - "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "3.1.0", - "packageName": "domutils", - "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - } - }, - "npm:dot-prop": { - "type": "npm", - "name": "npm:dot-prop", - "data": { - "version": "5.3.0", - "packageName": "dot-prop", - "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "16.3.1", - "packageName": "dotenv", - "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "npm:duplexer2": { - "type": "npm", - "name": "npm:duplexer2", - "data": { - "version": "0.1.4", - "packageName": "duplexer2", - "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" - } - }, - "npm:duplexify": { - "type": "npm", - "name": "npm:duplexify", - "data": { - "version": "4.1.2", - "packageName": "duplexify", - "hash": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:easy-extender": { - "type": "npm", - "name": "npm:easy-extender", - "data": { - "version": "2.3.4", - "packageName": "easy-extender", - "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" - } - }, - "npm:eazy-logger": { - "type": "npm", - "name": "npm:eazy-logger", - "data": { - "version": "4.0.1", - "packageName": "eazy-logger", - "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" - } - }, - "npm:ecc-jsbn": { - "type": "npm", - "name": "npm:ecc-jsbn", - "data": { - "version": "0.1.2", - "packageName": "ecc-jsbn", - "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" - } - }, - "npm:ecdsa-sig-formatter": { - "type": "npm", - "name": "npm:ecdsa-sig-formatter", - "data": { - "version": "1.0.11", - "packageName": "ecdsa-sig-formatter", - "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.9", - "packageName": "ejs", - "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.4.615", - "packageName": "electron-to-chromium", - "hash": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emojilib": { - "type": "npm", - "name": "npm:emojilib", - "data": { - "version": "2.4.0", - "packageName": "emojilib", - "hash": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:engine.io": { - "type": "npm", - "name": "npm:engine.io", - "data": { - "version": "6.5.4", - "packageName": "engine.io", - "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" - } - }, - "npm:engine.io-client": { - "type": "npm", - "name": "npm:engine.io-client", - "data": { - "version": "6.5.3", - "packageName": "engine.io-client", - "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" - } - }, - "npm:ws@8.11.0": { - "type": "npm", - "name": "npm:ws@8.11.0", - "data": { - "version": "8.11.0", - "packageName": "ws", - "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.15.1", - "packageName": "ws", - "hash": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==" - } - }, - "npm:engine.io-parser": { - "type": "npm", - "name": "npm:engine.io-parser", - "data": { - "version": "5.2.1", - "packageName": "engine.io-parser", - "hash": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.15.0", - "packageName": "enhanced-resolve", - "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-ci": { - "type": "npm", - "name": "npm:env-ci", - "data": { - "version": "10.0.0", - "packageName": "env-ci", - "hash": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.1", - "packageName": "env-paths", - "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.11.0", - "packageName": "envinfo", - "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:errno": { - "type": "npm", - "name": "npm:errno", - "data": { - "version": "0.1.8", - "packageName": "errno", - "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:errorhandler": { - "type": "npm", - "name": "npm:errorhandler", - "data": { - "version": "1.5.1", - "packageName": "errorhandler", - "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.22.3", - "packageName": "es-abstract", - "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "es-module-lexer", - "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.0.2", - "packageName": "es-set-tostringtag", - "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.19.5", - "packageName": "esbuild", - "hash": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==" - } - }, - "npm:esbuild@0.18.20": { - "type": "npm", - "name": "npm:esbuild@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "esbuild", - "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" - } - }, - "npm:esbuild-wasm": { - "type": "npm", - "name": "npm:esbuild-wasm", - "data": { - "version": "0.19.5", - "packageName": "esbuild-wasm", - "hash": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.1", - "packageName": "escalade", - "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "8.48.0", - "packageName": "eslint", - "hash": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "9.1.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==" - } - }, - "npm:eslint-plugin-cypress": { - "type": "npm", - "name": "npm:eslint-plugin-cypress", - "data": { - "version": "2.15.1", - "packageName": "eslint-plugin-cypress", - "hash": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "7.2.2", - "packageName": "eslint-scope", - "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" - } - }, - "npm:eslint-scope@5.1.1": { - "type": "npm", - "name": "npm:eslint-scope@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter-asyncresource": { - "type": "npm", - "name": "npm:eventemitter-asyncresource", - "data": { - "version": "1.0.0", - "packageName": "eventemitter-asyncresource", - "hash": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==" - } - }, - "npm:eventemitter2": { - "type": "npm", - "name": "npm:eventemitter2", - "data": { - "version": "6.4.7", - "packageName": "eventemitter2", - "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:eventemitter3@5.0.1": { - "type": "npm", - "name": "npm:eventemitter3@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "eventemitter3", - "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:executable": { - "type": "npm", - "name": "npm:executable", - "data": { - "version": "4.1.1", - "packageName": "executable", - "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expand-range": { - "type": "npm", - "name": "npm:expand-range", - "data": { - "version": "1.8.2", - "packageName": "expand-range", - "hash": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==" - } - }, - "npm:fill-range@2.2.4": { - "type": "npm", - "name": "npm:fill-range@2.2.4", - "data": { - "version": "2.2.4", - "packageName": "fill-range", - "hash": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:isobject@2.1.0": { - "type": "npm", - "name": "npm:isobject@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "isobject", - "hash": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:exponential-backoff": { - "type": "npm", - "name": "npm:exponential-backoff", - "data": { - "version": "3.1.1", - "packageName": "exponential-backoff", - "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.18.2", - "packageName": "express", - "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" - } - }, - "npm:express-rate-limit": { - "type": "npm", - "name": "npm:express-rate-limit", - "data": { - "version": "5.5.1", - "packageName": "express-rate-limit", - "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" - } - }, - "npm:express-urlrewrite": { - "type": "npm", - "name": "npm:express-urlrewrite", - "data": { - "version": "1.4.0", - "packageName": "express-urlrewrite", - "hash": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==" - } - }, - "npm:isarray@0.0.1": { - "type": "npm", - "name": "npm:isarray@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "isarray", - "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isarray@2.0.5": { - "type": "npm", - "name": "npm:isarray@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:path-to-regexp@1.8.0": { - "type": "npm", - "name": "npm:path-to-regexp@1.8.0", - "data": { - "version": "1.8.0", - "packageName": "path-to-regexp", - "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - } - }, - "npm:finalhandler@1.2.0": { - "type": "npm", - "name": "npm:finalhandler@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.0", - "packageName": "finalhandler", - "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" - } - }, - "npm:raw-body@2.5.1": { - "type": "npm", - "name": "npm:raw-body@2.5.1", - "data": { - "version": "2.5.1", - "packageName": "raw-body", - "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.5.2", - "packageName": "raw-body", - "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" - } - }, - "npm:send@0.18.0": { - "type": "npm", - "name": "npm:send@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.16.2", - "packageName": "send", - "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" - } - }, - "npm:serve-static@1.15.0": { - "type": "npm", - "name": "npm:serve-static@1.15.0", - "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.13.2", - "packageName": "serve-static", - "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" - } - }, - "npm:statuses@2.0.1": { - "type": "npm", - "name": "npm:statuses@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - }, - "npm:statuses@1.4.0": { - "type": "npm", - "name": "npm:statuses@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "statuses", - "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "1.3.1", - "packageName": "statuses", - "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" - } - }, - "npm:ext-list": { - "type": "npm", - "name": "npm:ext-list", - "data": { - "version": "2.2.2", - "packageName": "ext-list", - "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" - } - }, - "npm:ext-name": { - "type": "npm", - "name": "npm:ext-name", - "data": { - "version": "5.0.0", - "packageName": "ext-name", - "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:extend-shallow": { - "type": "npm", - "name": "npm:extend-shallow", - "data": { - "version": "2.0.1", - "packageName": "extend-shallow", - "hash": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.1.0", - "packageName": "external-editor", - "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" - } - }, - "npm:tmp@0.0.33": { - "type": "npm", - "name": "npm:tmp@0.0.33", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.1", - "packageName": "tmp", - "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:extsprintf": { - "type": "npm", - "name": "npm:extsprintf", - "data": { - "version": "1.3.0", - "packageName": "extsprintf", - "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-redact": { - "type": "npm", - "name": "npm:fast-redact", - "data": { - "version": "3.3.0", - "packageName": "fast-redact", - "hash": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==" - } - }, - "npm:fast-safe-stringify": { - "type": "npm", - "name": "npm:fast-safe-stringify", - "data": { - "version": "2.1.1", - "packageName": "fast-safe-stringify", - "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.16.0", - "packageName": "fastq", - "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.4", - "packageName": "faye-websocket", - "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:file-type": { - "type": "npm", - "name": "npm:file-type", - "data": { - "version": "17.1.6", - "packageName": "file-type", - "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.4", - "packageName": "filelist", - "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" - } - }, - "npm:filename-reserved-regex": { - "type": "npm", - "name": "npm:filename-reserved-regex", - "data": { - "version": "3.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" - } - }, - "npm:filenamify": { - "type": "npm", - "name": "npm:filenamify", - "data": { - "version": "5.1.1", - "packageName": "filenamify", - "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" - } - }, - "npm:find-up-simple": { - "type": "npm", - "name": "npm:find-up-simple", - "data": { - "version": "1.0.0", - "packageName": "find-up-simple", - "hash": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==" - } - }, - "npm:find-versions": { - "type": "npm", - "name": "npm:find-versions", - "data": { - "version": "5.1.0", - "packageName": "find-versions", - "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.9", - "packageName": "flatted", - "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.3", - "packageName": "follow-redirects", - "hash": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.3", - "packageName": "for-each", - "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - } - }, - "npm:for-in": { - "type": "npm", - "name": "npm:for-in", - "data": { - "version": "1.0.2", - "packageName": "for-in", - "hash": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - } - }, - "npm:fork-ts-checker-webpack-plugin": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin", - "data": { - "version": "7.2.13", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" - } - }, - "npm:schema-utils@3.3.0": { - "type": "npm", - "name": "npm:schema-utils@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "4.2.0", - "packageName": "schema-utils", - "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:form-data@4.0.0": { - "type": "npm", - "name": "npm:form-data@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "4.3.7", - "packageName": "fraction.js", - "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - } - }, - "npm:from2": { - "type": "npm", - "name": "npm:from2", - "data": { - "version": "2.3.0", - "packageName": "from2", - "hash": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "npm:fs-minipass@2.1.0": { - "type": "npm", - "name": "npm:fs-minipass@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "11506148351665826113" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.5", - "packageName": "fs-monkey", - "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.6", - "packageName": "function.prototype.name", - "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" - } - }, - "npm:functions-have-names": { - "type": "npm", - "name": "npm:functions-have-names", - "data": { - "version": "1.2.3", - "packageName": "functions-have-names", - "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.2", - "packageName": "get-intrinsic", - "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.0", - "packageName": "get-symbol-description", - "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - } - }, - "npm:getos": { - "type": "npm", - "name": "npm:getos", - "data": { - "version": "3.2.1", - "packageName": "getos", - "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" - } - }, - "npm:git-log-parser": { - "type": "npm", - "name": "npm:git-log-parser", - "data": { - "version": "1.2.0", - "packageName": "git-log-parser", - "hash": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==" - } - }, - "npm:split2@1.0.0": { - "type": "npm", - "name": "npm:split2@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "split2", - "hash": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "4.2.0", - "packageName": "split2", - "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "3.0.1", - "packageName": "global-dirs", - "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.3", - "packageName": "globalthis", - "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.6", - "packageName": "got", - "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" - } - }, - "npm:graphemer": { - "type": "npm", - "name": "npm:graphemer", - "data": { - "version": "1.4.0", - "packageName": "graphemer", - "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - } - }, - "npm:gray-matter": { - "type": "npm", - "name": "npm:gray-matter", - "data": { - "version": "2.1.1", - "packageName": "gray-matter", - "hash": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==" - } - }, - "npm:gulp-header": { - "type": "npm", - "name": "npm:gulp-header", - "data": { - "version": "1.8.12", - "packageName": "gulp-header", - "hash": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==" - } - }, - "npm:gzip-size": { - "type": "npm", - "name": "npm:gzip-size", - "data": { - "version": "6.0.0", - "packageName": "gzip-size", - "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.1", - "packageName": "handle-thing", - "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.8", - "packageName": "handlebars", - "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" - } - }, - "npm:harmony-reflect": { - "type": "npm", - "name": "npm:harmony-reflect", - "data": { - "version": "1.6.2", - "packageName": "harmony-reflect", - "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.0.2", - "packageName": "has-bigints", - "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.1", - "packageName": "has-property-descriptors", - "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.1", - "packageName": "has-proto", - "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.3", - "packageName": "has-symbols", - "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.0", - "packageName": "has-tostringtag", - "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" - } - }, - "npm:hdr-histogram-js": { - "type": "npm", - "name": "npm:hdr-histogram-js", - "data": { - "version": "2.0.3", - "packageName": "hdr-histogram-js", - "hash": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==" - } - }, - "npm:hdr-histogram-percentiles-obj": { - "type": "npm", - "name": "npm:hdr-histogram-percentiles-obj", - "data": { - "version": "3.0.0", - "packageName": "hdr-histogram-percentiles-obj", - "hash": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:hook-std": { - "type": "npm", - "name": "npm:hook-std", - "data": { - "version": "3.0.0", - "packageName": "hook-std", - "hash": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" - } - }, - "npm:hosted-git-info@2.8.9": { - "type": "npm", - "name": "npm:hosted-git-info@2.8.9", - "data": { - "version": "2.8.9", - "packageName": "hosted-git-info", - "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.4.0", - "packageName": "html-entities", - "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.2", - "packageName": "html-escaper", - "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "8.0.2", - "packageName": "htmlparser2", - "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.1.1", - "packageName": "http-cache-semantics", - "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.0", - "packageName": "http-errors", - "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.8", - "packageName": "http-parser-js", - "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-server": { - "type": "npm", - "name": "npm:http-server", - "data": { - "version": "14.1.1", - "packageName": "http-server", - "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.3.6", - "packageName": "http-signature", - "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" - } - }, - "npm:http-status-codes": { - "type": "npm", - "name": "npm:http-status-codes", - "data": { - "version": "2.2.0", - "packageName": "http-status-codes", - "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.3", - "packageName": "http2-wrapper", - "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "7.0.2", - "packageName": "https-proxy-agent", - "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" - } - }, - "npm:https-proxy-agent@5.0.1": { - "type": "npm", - "name": "npm:https-proxy-agent@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:husky": { - "type": "npm", - "name": "npm:husky", - "data": { - "version": "8.0.3", - "packageName": "husky", - "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:identity-obj-proxy": { - "type": "npm", - "name": "npm:identity-obj-proxy", - "data": { - "version": "3.0.0", - "packageName": "identity-obj-proxy", - "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.0", - "packageName": "ignore", - "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "6.0.4", - "packageName": "ignore-walk", - "hash": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==" - } - }, - "npm:image-size": { - "type": "npm", - "name": "npm:image-size", - "data": { - "version": "0.5.5", - "packageName": "image-size", - "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "3.8.2", - "packageName": "immutable", - "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" - } - }, - "npm:immutable@4.3.4": { - "type": "npm", - "name": "npm:immutable@4.3.4", - "data": { - "version": "4.3.4", - "packageName": "immutable", - "hash": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:import-from-esm": { - "type": "npm", - "name": "npm:import-from-esm", - "data": { - "version": "1.3.3", - "packageName": "import-from-esm", - "hash": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:import-meta-resolve": { - "type": "npm", - "name": "npm:import-meta-resolve", - "data": { - "version": "4.0.0", - "packageName": "import-meta-resolve", - "hash": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:index-to-position": { - "type": "npm", - "name": "npm:index-to-position", - "data": { - "version": "0.1.2", - "packageName": "index-to-position", - "hash": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - }, - "npm:inquirer-autocomplete-prompt": { - "type": "npm", - "name": "npm:inquirer-autocomplete-prompt", - "data": { - "version": "2.0.1", - "packageName": "inquirer-autocomplete-prompt", - "hash": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.6", - "packageName": "internal-slot", - "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" - } - }, - "npm:into-stream": { - "type": "npm", - "name": "npm:into-stream", - "data": { - "version": "7.0.0", - "packageName": "into-stream", - "hash": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==" - } - }, - "npm:ip": { - "type": "npm", - "name": "npm:ip", - "data": { - "version": "2.0.0", - "packageName": "ip", - "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js@2.1.0": { - "type": "npm", - "name": "npm:ipaddr.js@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "ipaddr.js", - "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.2", - "packageName": "is-array-buffer", - "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.4", - "packageName": "is-bigint", - "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.1.2", - "packageName": "is-boolean-object", - "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" - } - }, - "npm:is-buffer": { - "type": "npm", - "name": "npm:is-buffer", - "data": { - "version": "1.1.6", - "packageName": "is-buffer", - "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.7", - "packageName": "is-callable", - "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - } - }, - "npm:is-ci": { - "type": "npm", - "name": "npm:is-ci", - "data": { - "version": "3.0.1", - "packageName": "is-ci", - "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.13.1", - "packageName": "is-core-module", - "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.0.5", - "packageName": "is-date-object", - "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-extendable": { - "type": "npm", - "name": "npm:is-extendable", - "data": { - "version": "0.1.1", - "packageName": "is-extendable", - "hash": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - } - }, - "npm:is-extendable@1.0.1": { - "type": "npm", - "name": "npm:is-extendable@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-extendable", - "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-fullwidth-code-point@4.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-installed-globally": { - "type": "npm", - "name": "npm:is-installed-globally", - "data": { - "version": "0.4.0", - "packageName": "is-installed-globally", - "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-lambda": { - "type": "npm", - "name": "npm:is-lambda", - "data": { - "version": "1.0.1", - "packageName": "is-lambda", - "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.2", - "packageName": "is-negative-zero", - "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "2.1.0", - "packageName": "is-number", - "hash": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==" - } - }, - "npm:is-number@4.0.0": { - "type": "npm", - "name": "npm:is-number@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-number", - "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } - }, - "npm:is-number@7.0.0": { - "type": "npm", - "name": "npm:is-number@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-number-like": { - "type": "npm", - "name": "npm:is-number-like", - "data": { - "version": "1.0.8", - "packageName": "is-number-like", - "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.0.7", - "packageName": "is-number-object", - "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" - } - }, - "npm:is-obj": { - "type": "npm", - "name": "npm:is-obj", - "data": { - "version": "2.0.0", - "packageName": "is-obj", - "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.3", - "packageName": "is-path-inside", - "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-obj@1.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "2.2.2", - "packageName": "is-promise", - "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.1.4", - "packageName": "is-regex", - "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.2", - "packageName": "is-shared-array-buffer", - "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.0.4", - "packageName": "is-symbol", - "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" - } - }, - "npm:is-text-path": { - "type": "npm", - "name": "npm:is-text-path", - "data": { - "version": "2.0.0", - "packageName": "is-text-path", - "hash": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.12", - "packageName": "is-typed-array", - "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" - } - }, - "npm:is-typedarray": { - "type": "npm", - "name": "npm:is-typedarray", - "data": { - "version": "1.0.0", - "packageName": "is-typedarray", - "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.0.2", - "packageName": "is-weakref", - "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" - } - }, - "npm:is-what": { - "type": "npm", - "name": "npm:is-what", - "data": { - "version": "3.14.1", - "packageName": "is-what", - "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - } - }, - "npm:issue-parser": { - "type": "npm", - "name": "npm:issue-parser", - "data": { - "version": "6.0.0", - "packageName": "issue-parser", - "hash": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.2", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.1", - "packageName": "istanbul-lib-report", - "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.6", - "packageName": "istanbul-reports", - "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.3.6", - "packageName": "jackspeak", - "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.7", - "packageName": "jake", - "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" - } - }, - "npm:java-properties": { - "type": "npm", - "name": "npm:java-properties", - "data": { - "version": "1.0.2", - "packageName": "java-properties", - "hash": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:dedent@1.5.1": { - "type": "npm", - "name": "npm:dedent@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.3", - "packageName": "jest-pnp-resolver", - "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" - } - }, - "npm:jest-preset-angular": { - "type": "npm", - "name": "npm:jest-preset-angular", - "data": { - "version": "13.1.4", - "packageName": "jest-preset-angular", - "hash": "sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:resolve.exports@2.0.2": { - "type": "npm", - "name": "npm:resolve.exports@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "1.1.0", - "packageName": "resolve.exports", - "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "1.21.0", - "packageName": "jiti", - "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" - } - }, - "npm:jju": { - "type": "npm", - "name": "npm:jju", - "data": { - "version": "1.4.0", - "packageName": "jju", - "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-parse-better-errors": { - "type": "npm", - "name": "npm:json-parse-better-errors", - "data": { - "version": "1.0.2", - "packageName": "json-parse-better-errors", - "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors@3.0.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "json-parse-even-better-errors", - "hash": "12902821898341430299" - } - }, - "npm:json-parse-helpfulerror": { - "type": "npm", - "name": "npm:json-parse-helpfulerror", - "data": { - "version": "1.0.3", - "packageName": "json-parse-helpfulerror", - "hash": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "npm:json-server": { - "type": "npm", - "name": "npm:json-server", - "data": { - "version": "0.17.4", - "packageName": "json-server", - "hash": "sha512-bGBb0WtFuAKbgI7JV3A864irWnMZSvBYRJbohaOuatHwKSRFUfqtQlrYMrB6WbalXy/cJabyjlb7JkHli6dYjQ==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json-stringify-safe": { - "type": "npm", - "name": "npm:json-stringify-safe", - "data": { - "version": "5.0.1", - "packageName": "json-stringify-safe", - "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-eslint-parser": { - "type": "npm", - "name": "npm:jsonc-eslint-parser", - "data": { - "version": "2.4.0", - "packageName": "jsonc-eslint-parser", - "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "npm:jsonwebtoken": { - "type": "npm", - "name": "npm:jsonwebtoken", - "data": { - "version": "9.0.2", - "packageName": "jsonwebtoken", - "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "2.0.2", - "packageName": "jsprim", - "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" - } - }, - "npm:jwa": { - "type": "npm", - "name": "npm:jwa", - "data": { - "version": "1.4.1", - "packageName": "jwa", - "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" - } - }, - "npm:jws": { - "type": "npm", - "name": "npm:jws", - "data": { - "version": "3.2.2", - "packageName": "jws", - "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" - } - }, - "npm:karma-source-map-support": { - "type": "npm", - "name": "npm:karma-source-map-support", - "data": { - "version": "1.4.0", - "packageName": "karma-source-map-support", - "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" - } - }, - "npm:keygrip": { - "type": "npm", - "name": "npm:keygrip", - "data": { - "version": "1.1.0", - "packageName": "keygrip", - "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:kleur@4.1.5": { - "type": "npm", - "name": "npm:kleur@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:klona": { - "type": "npm", - "name": "npm:klona", - "data": { - "version": "2.0.6", - "packageName": "klona", - "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" - } - }, - "npm:launch-editor": { - "type": "npm", - "name": "npm:launch-editor", - "data": { - "version": "2.6.1", - "packageName": "launch-editor", - "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" - } - }, - "npm:lazy-ass": { - "type": "npm", - "name": "npm:lazy-ass", - "data": { - "version": "1.6.0", - "packageName": "lazy-ass", - "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" - } - }, - "npm:lazy-cache": { - "type": "npm", - "name": "npm:lazy-cache", - "data": { - "version": "2.0.2", - "packageName": "lazy-cache", - "hash": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==" - } - }, - "npm:less-loader": { - "type": "npm", - "name": "npm:less-loader", - "data": { - "version": "11.1.0", - "packageName": "less-loader", - "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:license-webpack-plugin": { - "type": "npm", - "name": "npm:license-webpack-plugin", - "data": { - "version": "4.0.2", - "packageName": "license-webpack-plugin", - "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "3.0.0", - "packageName": "lilconfig", - "hash": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==" - } - }, - "npm:lilconfig@2.1.0": { - "type": "npm", - "name": "npm:lilconfig@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "lilconfig", - "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" - } - }, - "npm:limiter": { - "type": "npm", - "name": "npm:limiter", - "data": { - "version": "1.1.5", - "packageName": "limiter", - "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "2.0.4", - "packageName": "lines-and-columns", - "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" - } - }, - "npm:lines-and-columns@1.2.4": { - "type": "npm", - "name": "npm:lines-and-columns@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "13.3.0", - "packageName": "lint-staged", - "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" - } - }, - "npm:listr2@6.6.1": { - "type": "npm", - "name": "npm:listr2@6.6.1", - "data": { - "version": "6.6.1", - "packageName": "listr2", - "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:log-update@5.0.1": { - "type": "npm", - "name": "npm:log-update@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "log-update", - "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:restore-cursor@4.0.0": { - "type": "npm", - "name": "npm:restore-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "restore-cursor", - "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:slice-ansi@5.0.0": { - "type": "npm", - "name": "npm:slice-ansi@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" - } - }, - "npm:slice-ansi@4.0.0": { - "type": "npm", - "name": "npm:slice-ansi@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slice-ansi", - "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "3.0.0", - "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" - } - }, - "npm:yaml@2.3.1": { - "type": "npm", - "name": "npm:yaml@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "yaml", - "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:list-item": { - "type": "npm", - "name": "npm:list-item", - "data": { - "version": "1.1.1", - "packageName": "list-item", - "hash": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==" - } - }, - "npm:load-json-file": { - "type": "npm", - "name": "npm:load-json-file", - "data": { - "version": "4.0.0", - "packageName": "load-json-file", - "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" - } - }, - "npm:strip-bom@3.0.0": { - "type": "npm", - "name": "npm:strip-bom@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:localtunnel": { - "type": "npm", - "name": "npm:localtunnel", - "data": { - "version": "2.0.2", - "packageName": "localtunnel", - "hash": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==" - } - }, - "npm:yargs@17.1.1": { - "type": "npm", - "name": "npm:yargs@17.1.1", - "data": { - "version": "17.1.1", - "packageName": "yargs", - "hash": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==" - } - }, - "npm:yargs@16.2.0": { - "type": "npm", - "name": "npm:yargs@16.2.0", - "data": { - "version": "16.2.0", - "packageName": "yargs", - "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yargs-parser@20.2.9": { - "type": "npm", - "name": "npm:yargs-parser@20.2.9", - "data": { - "version": "20.2.9", - "packageName": "yargs-parser", - "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:lockfile": { - "type": "npm", - "name": "npm:lockfile", - "data": { - "version": "1.0.4", - "packageName": "lockfile", - "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:lodash-es": { - "type": "npm", - "name": "npm:lodash-es", - "data": { - "version": "4.17.21", - "packageName": "lodash-es", - "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - } - }, - "npm:lodash-id": { - "type": "npm", - "name": "npm:lodash-id", - "data": { - "version": "0.14.1", - "packageName": "lodash-id", - "hash": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==" - } - }, - "npm:lodash._reinterpolate": { - "type": "npm", - "name": "npm:lodash._reinterpolate", - "data": { - "version": "3.0.0", - "packageName": "lodash._reinterpolate", - "hash": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" - } - }, - "npm:lodash.capitalize": { - "type": "npm", - "name": "npm:lodash.capitalize", - "data": { - "version": "4.2.1", - "packageName": "lodash.capitalize", - "hash": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - } - }, - "npm:lodash.escaperegexp": { - "type": "npm", - "name": "npm:lodash.escaperegexp", - "data": { - "version": "4.1.2", - "packageName": "lodash.escaperegexp", - "hash": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" - } - }, - "npm:lodash.includes": { - "type": "npm", - "name": "npm:lodash.includes", - "data": { - "version": "4.3.0", - "packageName": "lodash.includes", - "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" - } - }, - "npm:lodash.isboolean": { - "type": "npm", - "name": "npm:lodash.isboolean", - "data": { - "version": "3.0.3", - "packageName": "lodash.isboolean", - "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - } - }, - "npm:lodash.isfinite": { - "type": "npm", - "name": "npm:lodash.isfinite", - "data": { - "version": "3.3.2", - "packageName": "lodash.isfinite", - "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" - } - }, - "npm:lodash.isinteger": { - "type": "npm", - "name": "npm:lodash.isinteger", - "data": { - "version": "4.0.4", - "packageName": "lodash.isinteger", - "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" - } - }, - "npm:lodash.isnumber": { - "type": "npm", - "name": "npm:lodash.isnumber", - "data": { - "version": "3.0.3", - "packageName": "lodash.isnumber", - "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - } - }, - "npm:lodash.isplainobject": { - "type": "npm", - "name": "npm:lodash.isplainobject", - "data": { - "version": "4.0.6", - "packageName": "lodash.isplainobject", - "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - } - }, - "npm:lodash.isstring": { - "type": "npm", - "name": "npm:lodash.isstring", - "data": { - "version": "4.0.1", - "packageName": "lodash.isstring", - "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.once": { - "type": "npm", - "name": "npm:lodash.once", - "data": { - "version": "4.1.1", - "packageName": "lodash.once", - "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" - } - }, - "npm:lodash.template": { - "type": "npm", - "name": "npm:lodash.template", - "data": { - "version": "4.5.0", - "packageName": "lodash.template", - "hash": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" - } - }, - "npm:lodash.templatesettings": { - "type": "npm", - "name": "npm:lodash.templatesettings", - "data": { - "version": "4.2.0", - "packageName": "lodash.templatesettings", - "hash": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash.uniqby": { - "type": "npm", - "name": "npm:lodash.uniqby", - "data": { - "version": "4.7.0", - "packageName": "lodash.uniqby", - "hash": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:lowdb": { - "type": "npm", - "name": "npm:lowdb", - "data": { - "version": "1.0.0", - "packageName": "lowdb", - "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:make-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.6", - "packageName": "make-error", - "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "13.0.0", - "packageName": "make-fetch-happen", - "hash": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:markdown-link": { - "type": "npm", - "name": "npm:markdown-link", - "data": { - "version": "0.1.1", - "packageName": "markdown-link", - "hash": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==" - } - }, - "npm:markdown-toc": { - "type": "npm", - "name": "npm:markdown-toc", - "data": { - "version": "1.2.0", - "packageName": "markdown-toc", - "hash": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==" - } - }, - "npm:marked": { - "type": "npm", - "name": "npm:marked", - "data": { - "version": "9.1.6", - "packageName": "marked", - "hash": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==" - } - }, - "npm:marked-terminal": { - "type": "npm", - "name": "npm:marked-terminal", - "data": { - "version": "6.2.0", - "packageName": "marked-terminal", - "hash": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==" - } - }, - "npm:math-random": { - "type": "npm", - "name": "npm:math-random", - "data": { - "version": "1.0.4", - "packageName": "math-random", - "hash": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.5.3", - "packageName": "memfs", - "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" - } - }, - "npm:memorystream": { - "type": "npm", - "name": "npm:memorystream", - "data": { - "version": "0.3.1", - "packageName": "memorystream", - "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" - } - }, - "npm:meow": { - "type": "npm", - "name": "npm:meow", - "data": { - "version": "12.1.1", - "packageName": "meow", - "hash": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:method-override": { - "type": "npm", - "name": "npm:method-override", - "data": { - "version": "3.0.0", - "packageName": "method-override", - "hash": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.5", - "packageName": "micromatch", - "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "7.0.4", - "packageName": "minipass", - "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" - } - }, - "npm:minipass@3.3.6": { - "type": "npm", - "name": "npm:minipass@3.3.6", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "967233070033727926" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "2.0.1", - "packageName": "minipass-collect", - "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "3.0.4", - "packageName": "minipass-fetch", - "hash": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-json-stream": { - "type": "npm", - "name": "npm:minipass-json-stream", - "data": { - "version": "1.0.1", - "packageName": "minipass-json-stream", - "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "1.2.0", - "packageName": "mitt", - "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" - } - }, - "npm:mixin-deep": { - "type": "npm", - "name": "npm:mixin-deep", - "data": { - "version": "1.3.2", - "packageName": "mixin-deep", - "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" - } - }, - "npm:morgan": { - "type": "npm", - "name": "npm:morgan", - "data": { - "version": "1.10.0", - "packageName": "morgan", - "hash": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "1.0.1", - "packageName": "mrmime", - "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "7.2.5", - "packageName": "multicast-dns", - "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - } - }, - "npm:mv": { - "type": "npm", - "name": "npm:mv", - "data": { - "version": "2.1.1", - "packageName": "mv", - "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" - } - }, - "npm:rimraf@2.4.5": { - "type": "npm", - "name": "npm:rimraf@2.4.5", - "data": { - "version": "2.4.5", - "packageName": "rimraf", - "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@2.6.3": { - "type": "npm", - "name": "npm:rimraf@2.6.3", - "data": { - "version": "2.6.3", - "packageName": "rimraf", - "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" - } - }, - "npm:nanoclone": { - "type": "npm", - "name": "npm:nanoclone", - "data": { - "version": "0.2.1", - "packageName": "nanoclone", - "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.7", - "packageName": "nanoid", - "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:ncp": { - "type": "npm", - "name": "npm:ncp", - "data": { - "version": "2.0.0", - "packageName": "ncp", - "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" - } - }, - "npm:needle": { - "type": "npm", - "name": "npm:needle", - "data": { - "version": "3.3.1", - "packageName": "needle", - "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:nerf-dart": { - "type": "npm", - "name": "npm:nerf-dart", - "data": { - "version": "1.0.0", - "packageName": "nerf-dart", - "hash": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==" - } - }, - "npm:nice-napi": { - "type": "npm", - "name": "npm:nice-napi", - "data": { - "version": "1.0.2", - "packageName": "nice-napi", - "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "npm:node-abort-controller": { - "type": "npm", - "name": "npm:node-abort-controller", - "data": { - "version": "3.1.1", - "packageName": "node-abort-controller", - "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - } - }, - "npm:node-addon-api": { - "type": "npm", - "name": "npm:node-addon-api", - "data": { - "version": "3.2.1", - "packageName": "node-addon-api", - "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" - } - }, - "npm:node-emoji": { - "type": "npm", - "name": "npm:node-emoji", - "data": { - "version": "2.1.3", - "packageName": "node-emoji", - "hash": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.6.7", - "packageName": "node-fetch", - "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "10.0.1", - "packageName": "node-gyp", - "hash": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.7.1", - "packageName": "node-gyp-build", - "hash": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - } - }, - "npm:node-machine-id": { - "type": "npm", - "name": "npm:node-machine-id", - "data": { - "version": "1.1.12", - "packageName": "node-machine-id", - "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.14", - "packageName": "node-releases", - "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "7.2.0", - "packageName": "nopt", - "hash": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==" - } - }, - "npm:normalize-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "6.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" - } - }, - "npm:normalize-package-data@2.5.0": { - "type": "npm", - "name": "npm:normalize-package-data@2.5.0", - "data": { - "version": "2.5.0", - "packageName": "normalize-package-data", - "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-range": { - "type": "npm", - "name": "npm:normalize-range", - "data": { - "version": "0.1.2", - "packageName": "normalize-range", - "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" - } - }, - "npm:npm": { - "type": "npm", - "name": "npm:npm", - "data": { - "version": "10.2.5", - "packageName": "npm", - "hash": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "3.0.0", - "packageName": "npm-bundled", - "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" - } - }, - "npm:npm-install-checks": { - "type": "npm", - "name": "npm:npm-install-checks", - "data": { - "version": "6.3.0", - "packageName": "npm-install-checks", - "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "11.0.1", - "packageName": "npm-package-arg", - "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "8.0.1", - "packageName": "npm-packlist", - "hash": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "9.0.0", - "packageName": "npm-pick-manifest", - "hash": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==" - } - }, - "npm:npm-registry-fetch": { - "type": "npm", - "name": "npm:npm-registry-fetch", - "data": { - "version": "16.1.0", - "packageName": "npm-registry-fetch", - "hash": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==" - } - }, - "npm:npm-run-all": { - "type": "npm", - "name": "npm:npm-run-all", - "data": { - "version": "4.1.5", - "packageName": "npm-run-all", - "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" - } - }, - "npm:pidtree@0.3.1": { - "type": "npm", - "name": "npm:pidtree@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "pidtree", - "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.6.0", - "packageName": "pidtree", - "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" - } - }, - "npm:@isaacs/string-locale-compare@1.1.0": { - "type": "npm", - "name": "npm:@isaacs/string-locale-compare@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "@isaacs/string-locale-compare", - "hash": "13187644880041451271" - } - }, - "npm:@npmcli/arborist@7.2.2": { - "type": "npm", - "name": "npm:@npmcli/arborist@7.2.2", - "data": { - "version": "7.2.2", - "packageName": "@npmcli/arborist", - "hash": "7182259164219824660" - } - }, - "npm:@npmcli/config@8.0.3": { - "type": "npm", - "name": "npm:@npmcli/config@8.0.3", - "data": { - "version": "8.0.3", - "packageName": "@npmcli/config", - "hash": "8820709041531503664" - } - }, - "npm:@npmcli/disparity-colors@3.0.0": { - "type": "npm", - "name": "npm:@npmcli/disparity-colors@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/disparity-colors", - "hash": "14187036782924450815" - } - }, - "npm:@npmcli/map-workspaces@3.0.4": { - "type": "npm", - "name": "npm:@npmcli/map-workspaces@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "@npmcli/map-workspaces", - "hash": "13154714750762064630" - } - }, - "npm:@npmcli/metavuln-calculator@7.0.0": { - "type": "npm", - "name": "npm:@npmcli/metavuln-calculator@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "@npmcli/metavuln-calculator", - "hash": "2521549270537825900" - } - }, - "npm:@npmcli/name-from-folder@2.0.0": { - "type": "npm", - "name": "npm:@npmcli/name-from-folder@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "@npmcli/name-from-folder", - "hash": "14253416717500769425" - } - }, - "npm:@npmcli/package-json@5.0.0": { - "type": "npm", - "name": "npm:@npmcli/package-json@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "@npmcli/package-json", - "hash": "15072336541895224028" - } - }, - "npm:@npmcli/query@3.0.1": { - "type": "npm", - "name": "npm:@npmcli/query@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@npmcli/query", - "hash": "2838677265610359007" - } - }, - "npm:aproba@2.0.0": { - "type": "npm", - "name": "npm:aproba@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "aproba", - "hash": "17279615999774402081" - } - }, - "npm:archy@1.0.0": { - "type": "npm", - "name": "npm:archy@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "archy", - "hash": "7927190020983769851" - } - }, - "npm:are-we-there-yet@4.0.1": { - "type": "npm", - "name": "npm:are-we-there-yet@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "are-we-there-yet", - "hash": "2067525616894023226" - } - }, - "npm:bin-links@4.0.3": { - "type": "npm", - "name": "npm:bin-links@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "bin-links", - "hash": "6676388443930273422" - } - }, - "npm:cidr-regex@4.0.3": { - "type": "npm", - "name": "npm:cidr-regex@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "cidr-regex", - "hash": "6423967580007982965" - } - }, - "npm:cli-columns@4.0.0": { - "type": "npm", - "name": "npm:cli-columns@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-columns", - "hash": "11864858422112434879" - } - }, - "npm:cmd-shim@6.0.2": { - "type": "npm", - "name": "npm:cmd-shim@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "cmd-shim", - "hash": "11797498964257484434" - } - }, - "npm:color-support@1.1.3": { - "type": "npm", - "name": "npm:color-support@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "3393818179792164157" - } - }, - "npm:common-ancestor-path@1.0.1": { - "type": "npm", - "name": "npm:common-ancestor-path@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "common-ancestor-path", - "hash": "6661427358504839173" - } - }, - "npm:console-control-strings@1.1.0": { - "type": "npm", - "name": "npm:console-control-strings@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "15599562434471903839" - } - }, - "npm:delegates@1.0.0": { - "type": "npm", - "name": "npm:delegates@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "8733352999539432694" - } - }, - "npm:fastest-levenshtein@1.0.16": { - "type": "npm", - "name": "npm:fastest-levenshtein@1.0.16", - "data": { - "version": "1.0.16", - "packageName": "fastest-levenshtein", - "hash": "8701148827062880145" - } - }, - "npm:gauge@5.0.1": { - "type": "npm", - "name": "npm:gauge@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "gauge", - "hash": "11205983861061131040" - } - }, - "npm:has-unicode@2.0.1": { - "type": "npm", - "name": "npm:has-unicode@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "13943981828416008621" - } - }, - "npm:init-package-json@6.0.0": { - "type": "npm", - "name": "npm:init-package-json@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "init-package-json", - "hash": "12382910830993440062" - } - }, - "npm:ip-regex@5.0.0": { - "type": "npm", - "name": "npm:ip-regex@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "ip-regex", - "hash": "6181509096878655535" - } - }, - "npm:is-cidr@5.0.3": { - "type": "npm", - "name": "npm:is-cidr@5.0.3", - "data": { - "version": "5.0.3", - "packageName": "is-cidr", - "hash": "9300924457576055299" - } - }, - "npm:json-stringify-nice@1.1.4": { - "type": "npm", - "name": "npm:json-stringify-nice@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "json-stringify-nice", - "hash": "1591436175625616703" - } - }, - "npm:just-diff@6.0.2": { - "type": "npm", - "name": "npm:just-diff@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "just-diff", - "hash": "8534278321911344784" - } - }, - "npm:just-diff-apply@5.5.0": { - "type": "npm", - "name": "npm:just-diff-apply@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "just-diff-apply", - "hash": "12715064950501085530" - } - }, - "npm:libnpmaccess@8.0.2": { - "type": "npm", - "name": "npm:libnpmaccess@8.0.2", - "data": { - "version": "8.0.2", - "packageName": "libnpmaccess", - "hash": "16421526142808800212" - } - }, - "npm:libnpmdiff@6.0.4": { - "type": "npm", - "name": "npm:libnpmdiff@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "libnpmdiff", - "hash": "3820498454041815106" - } - }, - "npm:libnpmexec@7.0.5": { - "type": "npm", - "name": "npm:libnpmexec@7.0.5", - "data": { - "version": "7.0.5", - "packageName": "libnpmexec", - "hash": "17794617723037587231" - } - }, - "npm:libnpmfund@5.0.2": { - "type": "npm", - "name": "npm:libnpmfund@5.0.2", - "data": { - "version": "5.0.2", - "packageName": "libnpmfund", - "hash": "12305598745182060946" - } - }, - "npm:libnpmhook@10.0.1": { - "type": "npm", - "name": "npm:libnpmhook@10.0.1", - "data": { - "version": "10.0.1", - "packageName": "libnpmhook", - "hash": "8875117050333550796" - } - }, - "npm:libnpmorg@6.0.2": { - "type": "npm", - "name": "npm:libnpmorg@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "libnpmorg", - "hash": "10290805547791020319" - } - }, - "npm:libnpmpack@6.0.4": { - "type": "npm", - "name": "npm:libnpmpack@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "libnpmpack", - "hash": "5406464303373104244" - } - }, - "npm:libnpmpublish@9.0.3": { - "type": "npm", - "name": "npm:libnpmpublish@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "libnpmpublish", - "hash": "8046954149526535727" - } - }, - "npm:libnpmsearch@7.0.1": { - "type": "npm", - "name": "npm:libnpmsearch@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "libnpmsearch", - "hash": "15325769825788437107" - } - }, - "npm:libnpmteam@6.0.1": { - "type": "npm", - "name": "npm:libnpmteam@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "libnpmteam", - "hash": "1683769112741320527" - } - }, - "npm:libnpmversion@5.0.2": { - "type": "npm", - "name": "npm:libnpmversion@5.0.2", - "data": { - "version": "5.0.2", - "packageName": "libnpmversion", - "hash": "17375154425837329637" - } - }, - "npm:npm-audit-report@5.0.0": { - "type": "npm", - "name": "npm:npm-audit-report@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "npm-audit-report", - "hash": "6354832541033058707" - } - }, - "npm:npm-profile@9.0.0": { - "type": "npm", - "name": "npm:npm-profile@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "npm-profile", - "hash": "11172665038688662263" - } - }, - "npm:npm-user-validate@2.0.0": { - "type": "npm", - "name": "npm:npm-user-validate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "npm-user-validate", - "hash": "7397416590274487050" - } - }, - "npm:npmlog@7.0.1": { - "type": "npm", - "name": "npm:npmlog@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "npmlog", - "hash": "17299148607020464567" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "17854661287334559550" - } - }, - "npm:p-map@5.5.0": { - "type": "npm", - "name": "npm:p-map@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "p-map", - "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" - } - }, - "npm:pacote@17.0.5": { - "type": "npm", - "name": "npm:pacote@17.0.5", - "data": { - "version": "17.0.5", - "packageName": "pacote", - "hash": "18157225445049205745" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "17.0.4", - "packageName": "pacote", - "hash": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==" - } - }, - "npm:parse-conflict-json@3.0.1": { - "type": "npm", - "name": "npm:parse-conflict-json@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "parse-conflict-json", - "hash": "4836433519110231199" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "12011382365270888598" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.13", - "packageName": "postcss-selector-parser", - "hash": "18317171813795956011" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "15686043515984890271" - } - }, - "npm:process": { - "type": "npm", - "name": "npm:process", - "data": { - "version": "0.11.10", - "packageName": "process", - "hash": "5899774364612678558" - } - }, - "npm:promise-all-reject-late@1.0.1": { - "type": "npm", - "name": "npm:promise-all-reject-late@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "promise-all-reject-late", - "hash": "8115079043743132112" - } - }, - "npm:promise-call-limit@1.0.2": { - "type": "npm", - "name": "npm:promise-call-limit@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "promise-call-limit", - "hash": "15188836213578786777" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "17505959410500941643" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "6430051236100879397" - } - }, - "npm:promzard@1.0.0": { - "type": "npm", - "name": "npm:promzard@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "promzard", - "hash": "1630102348184705762" - } - }, - "npm:qrcode-terminal@0.12.0": { - "type": "npm", - "name": "npm:qrcode-terminal@0.12.0", - "data": { - "version": "0.12.0", - "packageName": "qrcode-terminal", - "hash": "8604977206135799318" - } - }, - "npm:read@2.1.0": { - "type": "npm", - "name": "npm:read@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "read", - "hash": "15091997822902067721" - } - }, - "npm:read-cmd-shim@4.0.0": { - "type": "npm", - "name": "npm:read-cmd-shim@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "read-cmd-shim", - "hash": "8789385965959140586" - } - }, - "npm:read-package-json": { - "type": "npm", - "name": "npm:read-package-json", - "data": { - "version": "7.0.0", - "packageName": "read-package-json", - "hash": "2832168133989722474" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "3.0.2", - "packageName": "read-package-json-fast", - "hash": "15039476735012127087" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "577959566566698873" - } - }, - "npm:retry@0.13.1": { - "type": "npm", - "name": "npm:retry@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "16796670911009069817" - } - }, - "npm:set-blocking@2.0.0": { - "type": "npm", - "name": "npm:set-blocking@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "7925479020392693302" - } - }, - "npm:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "2.1.0", - "packageName": "sigstore", - "hash": "1779417821879983691" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "9325347317011058594" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.7.1", - "packageName": "socks", - "hash": "10075606660716242987" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "8.0.2", - "packageName": "socks-proxy-agent", - "hash": "16729279058560436716" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.2.0", - "packageName": "spdx-correct", - "hash": "5441723641692029835" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.3.0", - "packageName": "spdx-exceptions", - "hash": "7642298428353548034" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "1415946028849809017" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.16", - "packageName": "spdx-license-ids", - "hash": "14586284776616244379" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "10.0.5", - "packageName": "ssri", - "hash": "3448831591758618758" - } - }, - "npm:string_decoder@1.3.0": { - "type": "npm", - "name": "npm:string_decoder@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "7047277384104003716" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "16568546503867287883" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "17289454424302757271" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "6383215585396908452" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "18257468142112457810" - } - }, - "npm:tiny-relative-date@1.3.0": { - "type": "npm", - "name": "npm:tiny-relative-date@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "tiny-relative-date", - "hash": "13109578067881593908" - } - }, - "npm:treeverse@3.0.0": { - "type": "npm", - "name": "npm:treeverse@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "treeverse", - "hash": "6817532506522309275" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "2.1.0", - "packageName": "tuf-js", - "hash": "3979877721881428053" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "7886949599248485097" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "15025672285505434477" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "17916194938027055625" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "14893158163252173577" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "2171344116929511877" - } - }, - "npm:walk-up-path@3.0.1": { - "type": "npm", - "name": "npm:walk-up-path@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "walk-up-path", - "hash": "10198965256615950216" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "10410747907664628096" - } - }, - "npm:wide-align@1.1.5": { - "type": "npm", - "name": "npm:wide-align@1.1.5", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "9514910874233485267" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "13425223611772983678" - } - }, - "npm:write-file-atomic@5.0.1": { - "type": "npm", - "name": "npm:write-file-atomic@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "write-file-atomic", - "hash": "9705229754480736912" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.7", - "packageName": "nwsapi", - "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "17.2.6", - "packageName": "nx", - "hash": "sha512-lBHp0e0AMBwYwpT44a8b0j29szspmYUhY1okqNctz/3ifuonNFG9WGfbzRO4YKOrVkfNsuaomHVAE6gtqo55ng==" - } - }, - "npm:nx-release": { - "type": "npm", - "name": "npm:nx-release", - "data": { - "version": "3.1.6", - "packageName": "nx-release", - "hash": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==" - } - }, - "npm:proxy-from-env@1.1.0": { - "type": "npm", - "name": "npm:proxy-from-env@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.1", - "packageName": "object-inspect", - "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.5", - "packageName": "object.assign", - "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" - } - }, - "npm:object.pick": { - "type": "npm", - "name": "npm:object.pick", - "data": { - "version": "1.3.0", - "packageName": "object.pick", - "hash": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:on-exit-leak-free": { - "type": "npm", - "name": "npm:on-exit-leak-free", - "data": { - "version": "0.2.0", - "packageName": "on-exit-leak-free", - "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:open@7.4.2": { - "type": "npm", - "name": "npm:open@7.4.2", - "data": { - "version": "7.4.2", - "packageName": "open", - "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:openurl": { - "type": "npm", - "name": "npm:openurl", - "data": { - "version": "1.1.1", - "packageName": "openurl", - "hash": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" - } - }, - "npm:opn": { - "type": "npm", - "name": "npm:opn", - "data": { - "version": "5.3.0", - "packageName": "opn", - "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.3", - "packageName": "optionator", - "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" - } - }, - "npm:os-filter-obj": { - "type": "npm", - "name": "npm:os-filter-obj", - "data": { - "version": "2.0.0", - "packageName": "os-filter-obj", - "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:ospath": { - "type": "npm", - "name": "npm:ospath", - "data": { - "version": "1.2.2", - "packageName": "ospath", - "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.1.1", - "packageName": "p-cancelable", - "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - } - }, - "npm:p-each-series": { - "type": "npm", - "name": "npm:p-each-series", - "data": { - "version": "3.0.0", - "packageName": "p-each-series", - "hash": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==" - } - }, - "npm:p-filter": { - "type": "npm", - "name": "npm:p-filter", - "data": { - "version": "3.0.0", - "packageName": "p-filter", - "hash": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "npm:p-is-promise": { - "type": "npm", - "name": "npm:p-is-promise", - "data": { - "version": "3.0.0", - "packageName": "p-is-promise", - "hash": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" - } - }, - "npm:p-reduce": { - "type": "npm", - "name": "npm:p-reduce", - "data": { - "version": "2.1.0", - "packageName": "p-reduce", - "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - } - }, - "npm:p-reduce@3.0.0": { - "type": "npm", - "name": "npm:p-reduce@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-reduce", - "hash": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:p-try@1.0.0": { - "type": "npm", - "name": "npm:p-try@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "p-try", - "hash": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" - } - }, - "npm:pako": { - "type": "npm", - "name": "npm:pako", - "data": { - "version": "1.0.11", - "packageName": "pako", - "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-node-version": { - "type": "npm", - "name": "npm:parse-node-version", - "data": { - "version": "1.0.1", - "packageName": "parse-node-version", - "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - } - }, - "npm:parse5-html-rewriting-stream": { - "type": "npm", - "name": "npm:parse5-html-rewriting-stream", - "data": { - "version": "7.0.0", - "packageName": "parse5-html-rewriting-stream", - "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" - } - }, - "npm:parse5-sax-parser": { - "type": "npm", - "name": "npm:parse5-sax-parser", - "data": { - "version": "7.0.0", - "packageName": "parse5-sax-parser", - "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:peek-readable": { - "type": "npm", - "name": "npm:peek-readable", - "data": { - "version": "5.0.0", - "packageName": "peek-readable", - "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - } - }, - "npm:performance-now": { - "type": "npm", - "name": "npm:performance-now", - "data": { - "version": "2.1.0", - "packageName": "performance-now", - "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.0", - "packageName": "picocolors", - "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - } - }, - "npm:pino": { - "type": "npm", - "name": "npm:pino", - "data": { - "version": "7.11.0", - "packageName": "pino", - "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" - } - }, - "npm:pino-abstract-transport": { - "type": "npm", - "name": "npm:pino-abstract-transport", - "data": { - "version": "1.0.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" - } - }, - "npm:pino-abstract-transport@0.5.0": { - "type": "npm", - "name": "npm:pino-abstract-transport@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" - } - }, - "npm:pino-std-serializers": { - "type": "npm", - "name": "npm:pino-std-serializers", - "data": { - "version": "4.0.0", - "packageName": "pino-std-serializers", - "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" - } - }, - "npm:sonic-boom@2.8.0": { - "type": "npm", - "name": "npm:sonic-boom@2.8.0", - "data": { - "version": "2.8.0", - "packageName": "sonic-boom", - "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" - } - }, - "npm:sonic-boom": { - "type": "npm", - "name": "npm:sonic-boom", - "data": { - "version": "3.3.0", - "packageName": "sonic-boom", - "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "npm:piscina": { - "type": "npm", - "name": "npm:piscina", - "data": { - "version": "4.1.0", - "packageName": "piscina", - "hash": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==" - } - }, - "npm:pkg-conf": { - "type": "npm", - "name": "npm:pkg-conf", - "data": { - "version": "2.1.0", - "packageName": "pkg-conf", - "hash": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==" - } - }, - "npm:pkginfo": { - "type": "npm", - "name": "npm:pkginfo", - "data": { - "version": "0.4.1", - "packageName": "pkginfo", - "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" - } - }, - "npm:please-upgrade-node": { - "type": "npm", - "name": "npm:please-upgrade-node", - "data": { - "version": "3.2.0", - "packageName": "please-upgrade-node", - "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" - } - }, - "npm:pluralize": { - "type": "npm", - "name": "npm:pluralize", - "data": { - "version": "8.0.0", - "packageName": "pluralize", - "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.32", - "packageName": "portfinder", - "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" - } - }, - "npm:portscanner": { - "type": "npm", - "name": "npm:portscanner", - "data": { - "version": "2.2.0", - "packageName": "portscanner", - "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.31", - "packageName": "postcss", - "hash": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "9.0.1", - "packageName": "postcss-calc", - "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "6.0.1", - "packageName": "postcss-colormin", - "hash": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-convert-values", - "hash": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-comments", - "hash": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-empty", - "hash": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-overridden", - "hash": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==" - } - }, - "npm:postcss-import": { - "type": "npm", - "name": "npm:postcss-import", - "data": { - "version": "14.1.0", - "packageName": "postcss-import", - "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "6.0.1", - "packageName": "postcss-merge-longhand", - "hash": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "6.0.2", - "packageName": "postcss-merge-rules", - "hash": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-font-values", - "hash": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-gradients", - "hash": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-params", - "hash": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-selectors", - "hash": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.3", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-charset", - "hash": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-positions", - "hash": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-string", - "hash": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-url", - "hash": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-ordered-values", - "hash": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "6.0.1", - "packageName": "postcss-reduce-initial", - "hash": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "6.0.1", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "6.0.1", - "packageName": "postcss-svgo", - "hash": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "6.0.1", - "packageName": "postcss-unique-selectors", - "hash": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.8.8", - "packageName": "prettier", - "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:process-warning": { - "type": "npm", - "name": "npm:process-warning", - "data": { - "version": "1.0.0", - "packageName": "process-warning", - "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:property-expr": { - "type": "npm", - "name": "npm:property-expr", - "data": { - "version": "2.0.6", - "packageName": "property-expr", - "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" - } - }, - "npm:proto-list": { - "type": "npm", - "name": "npm:proto-list", - "data": { - "version": "1.2.4", - "packageName": "proto-list", - "hash": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:prr": { - "type": "npm", - "name": "npm:prr", - "data": { - "version": "1.0.1", - "packageName": "prr", - "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - } - }, - "npm:pseudomap": { - "type": "npm", - "name": "npm:pseudomap", - "data": { - "version": "1.0.2", - "packageName": "pseudomap", - "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.9.0", - "packageName": "psl", - "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.4", - "packageName": "pure-rand", - "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:quick-format-unescaped": { - "type": "npm", - "name": "npm:quick-format-unescaped", - "data": { - "version": "4.0.4", - "packageName": "quick-format-unescaped", - "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:randomatic": { - "type": "npm", - "name": "npm:randomatic", - "data": { - "version": "3.1.1", - "packageName": "randomatic", - "hash": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:read-cache": { - "type": "npm", - "name": "npm:read-cache", - "data": { - "version": "1.0.0", - "packageName": "read-cache", - "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" - } - }, - "npm:read-pkg-up": { - "type": "npm", - "name": "npm:read-pkg-up", - "data": { - "version": "11.0.0", - "packageName": "read-pkg-up", - "hash": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==" - } - }, - "npm:readable-web-to-node-stream": { - "type": "npm", - "name": "npm:readable-web-to-node-stream", - "data": { - "version": "3.0.2", - "packageName": "readable-web-to-node-stream", - "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:real-require": { - "type": "npm", - "name": "npm:real-require", - "data": { - "version": "0.1.0", - "packageName": "real-require", - "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" - } - }, - "npm:redeyed": { - "type": "npm", - "name": "npm:redeyed", - "data": { - "version": "2.1.1", - "packageName": "redeyed", - "hash": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==" - } - }, - "npm:reflect-metadata": { - "type": "npm", - "name": "npm:reflect-metadata", - "data": { - "version": "0.1.14", - "packageName": "reflect-metadata", - "hash": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.1", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regex-parser": { - "type": "npm", - "name": "npm:regex-parser", - "data": { - "version": "2.2.11", - "packageName": "regex-parser", - "hash": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.1", - "packageName": "regexp.prototype.flags", - "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:registry-auth-token": { - "type": "npm", - "name": "npm:registry-auth-token", - "data": { - "version": "5.0.2", - "packageName": "registry-auth-token", - "hash": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:remarkable": { - "type": "npm", - "name": "npm:remarkable", - "data": { - "version": "1.7.4", - "packageName": "remarkable", - "hash": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==" - } - }, - "npm:repeat-element": { - "type": "npm", - "name": "npm:repeat-element", - "data": { - "version": "1.1.4", - "packageName": "repeat-element", - "hash": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" - } - }, - "npm:repeat-string": { - "type": "npm", - "name": "npm:repeat-string", - "data": { - "version": "1.6.1", - "packageName": "repeat-string", - "hash": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" - } - }, - "npm:replace-json-property": { - "type": "npm", - "name": "npm:replace-json-property", - "data": { - "version": "1.9.0", - "packageName": "replace-json-property", - "hash": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==" - } - }, - "npm:request-progress": { - "type": "npm", - "name": "npm:request-progress", - "data": { - "version": "3.0.0", - "packageName": "request-progress", - "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-url-loader": { - "type": "npm", - "name": "npm:resolve-url-loader", - "data": { - "version": "5.0.0", - "packageName": "resolve-url-loader", - "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" - } - }, - "npm:resp-modifier": { - "type": "npm", - "name": "npm:resp-modifier", - "data": { - "version": "6.0.2", - "packageName": "resp-modifier", - "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.1", - "packageName": "responselike", - "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.3.0", - "packageName": "rfdc", - "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" - } - }, - "npm:rollup": { - "type": "npm", - "name": "npm:rollup", - "data": { - "version": "3.29.4", - "packageName": "rollup", - "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:rx": { - "type": "npm", - "name": "npm:rx", - "data": { - "version": "4.1.0", - "packageName": "rx", - "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" - } - }, - "npm:rxjs": { - "type": "npm", - "name": "npm:rxjs", - "data": { - "version": "7.8.1", - "packageName": "rxjs", - "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" - } - }, - "npm:safe-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.0.1", - "packageName": "safe-array-concat", - "hash": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.0.0", - "packageName": "safe-regex-test", - "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" - } - }, - "npm:safe-stable-stringify": { - "type": "npm", - "name": "npm:safe-stable-stringify", - "data": { - "version": "2.4.3", - "packageName": "safe-stable-stringify", - "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.69.5", - "packageName": "sass", - "hash": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:sax@1.2.4": { - "type": "npm", - "name": "npm:sax@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "sax", - "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:secure-compare": { - "type": "npm", - "name": "npm:secure-compare", - "data": { - "version": "3.0.1", - "packageName": "secure-compare", - "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.4.1", - "packageName": "selfsigned", - "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" - } - }, - "npm:semantic-release": { - "type": "npm", - "name": "npm:semantic-release", - "data": { - "version": "22.0.12", - "packageName": "semantic-release", - "hash": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==" - } - }, - "npm:semver-compare": { - "type": "npm", - "name": "npm:semver-compare", - "data": { - "version": "1.0.0", - "packageName": "semver-compare", - "hash": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==" - } - }, - "npm:semver-diff": { - "type": "npm", - "name": "npm:semver-diff", - "data": { - "version": "4.0.0", - "packageName": "semver-diff", - "hash": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==" - } - }, - "npm:semver-regex": { - "type": "npm", - "name": "npm:semver-regex", - "data": { - "version": "4.0.5", - "packageName": "semver-regex", - "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" - } - }, - "npm:semver-truncate": { - "type": "npm", - "name": "npm:semver-truncate", - "data": { - "version": "3.0.0", - "packageName": "semver-truncate", - "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, - "npm:server-destroy": { - "type": "npm", - "name": "npm:server-destroy", - "data": { - "version": "1.0.1", - "packageName": "server-destroy", - "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.1.1", - "packageName": "set-function-length", - "hash": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.1", - "packageName": "set-function-name", - "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" - } - }, - "npm:set-getter": { - "type": "npm", - "name": "npm:set-getter", - "data": { - "version": "0.1.1", - "packageName": "set-getter", - "hash": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.4", - "packageName": "side-channel", - "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - } - }, - "npm:signale": { - "type": "npm", - "name": "npm:signale", - "data": { - "version": "1.4.0", - "packageName": "signale", - "hash": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:skin-tone": { - "type": "npm", - "name": "npm:skin-tone", - "data": { - "version": "2.0.0", - "packageName": "skin-tone", - "hash": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==" - } - }, - "npm:socket.io": { - "type": "npm", - "name": "npm:socket.io", - "data": { - "version": "4.7.2", - "packageName": "socket.io", - "hash": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==" - } - }, - "npm:socket.io-adapter": { - "type": "npm", - "name": "npm:socket.io-adapter", - "data": { - "version": "2.5.2", - "packageName": "socket.io-adapter", - "hash": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==" - } - }, - "npm:socket.io-client": { - "type": "npm", - "name": "npm:socket.io-client", - "data": { - "version": "4.7.2", - "packageName": "socket.io-client", - "hash": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==" - } - }, - "npm:socket.io-parser": { - "type": "npm", - "name": "npm:socket.io-parser", - "data": { - "version": "4.2.4", - "packageName": "socket.io-parser", - "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "1.1.2", - "packageName": "sort-keys", - "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" - } - }, - "npm:sort-keys-length": { - "type": "npm", - "name": "npm:sort-keys-length", - "data": { - "version": "1.0.1", - "packageName": "sort-keys-length", - "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" - } - }, - "npm:source-map-explorer": { - "type": "npm", - "name": "npm:source-map-explorer", - "data": { - "version": "2.5.3", - "packageName": "source-map-explorer", - "hash": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.0.2", - "packageName": "source-map-js", - "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - } - }, - "npm:spawn-error-forwarder": { - "type": "npm", - "name": "npm:spawn-error-forwarder", - "data": { - "version": "1.0.0", - "packageName": "spawn-error-forwarder", - "hash": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.18.0", - "packageName": "sshpk", - "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:steno": { - "type": "npm", - "name": "npm:steno", - "data": { - "version": "0.4.4", - "packageName": "steno", - "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" - } - }, - "npm:stream-combiner2": { - "type": "npm", - "name": "npm:stream-combiner2", - "data": { - "version": "1.1.1", - "packageName": "stream-combiner2", - "hash": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==" - } - }, - "npm:stream-shift": { - "type": "npm", - "name": "npm:stream-shift", - "data": { - "version": "1.0.1", - "packageName": "stream-shift", - "hash": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" - } - }, - "npm:stream-throttle": { - "type": "npm", - "name": "npm:stream-throttle", - "data": { - "version": "0.1.3", - "packageName": "stream-throttle", - "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.2", - "packageName": "string-argv", - "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string.prototype.padend": { - "type": "npm", - "name": "npm:string.prototype.padend", - "data": { - "version": "3.1.5", - "packageName": "string.prototype.padend", - "hash": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.8", - "packageName": "string.prototype.trim", - "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimend", - "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimstart", - "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" - } - }, - "npm:strip-color": { - "type": "npm", - "name": "npm:strip-color", - "data": { - "version": "0.1.0", - "packageName": "strip-color", - "hash": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - } - }, - "npm:strip-outer": { - "type": "npm", - "name": "npm:strip-outer", - "data": { - "version": "2.0.0", - "packageName": "strip-outer", - "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" - } - }, - "npm:strong-log-transformer": { - "type": "npm", - "name": "npm:strong-log-transformer", - "data": { - "version": "2.1.0", - "packageName": "strong-log-transformer", - "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" - } - }, - "npm:strtok3": { - "type": "npm", - "name": "npm:strtok3", - "data": { - "version": "7.0.0", - "packageName": "strtok3", - "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "3.3.3", - "packageName": "style-loader", - "hash": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "6.0.1", - "packageName": "stylehacks", - "hash": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==" - } - }, - "npm:stylus": { - "type": "npm", - "name": "npm:stylus", - "data": { - "version": "0.59.0", - "packageName": "stylus", - "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" - } - }, - "npm:stylus-loader": { - "type": "npm", - "name": "npm:stylus-loader", - "data": { - "version": "7.1.3", - "packageName": "stylus-loader", - "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" - } - }, - "npm:supports-hyperlinks": { - "type": "npm", - "name": "npm:supports-hyperlinks", - "data": { - "version": "3.0.0", - "packageName": "supports-hyperlinks", - "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svgo": { - "type": "npm", - "name": "npm:svgo", - "data": { - "version": "3.1.0", - "packageName": "svgo", - "hash": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==" - } - }, - "npm:symbol-observable": { - "type": "npm", - "name": "npm:symbol-observable", - "data": { - "version": "4.0.0", - "packageName": "symbol-observable", - "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:temp": { - "type": "npm", - "name": "npm:temp", - "data": { - "version": "0.9.4", - "packageName": "temp", - "hash": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "3.0.0", - "packageName": "temp-dir", - "hash": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==" - } - }, - "npm:tempy": { - "type": "npm", - "name": "npm:tempy", - "data": { - "version": "3.1.0", - "packageName": "tempy", - "hash": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.24.0", - "packageName": "terser", - "hash": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.9", - "packageName": "terser-webpack-plugin", - "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-extensions": { - "type": "npm", - "name": "npm:text-extensions", - "data": { - "version": "2.4.0", - "packageName": "text-extensions", - "hash": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==" - } - }, - "npm:thread-stream": { - "type": "npm", - "name": "npm:thread-stream", - "data": { - "version": "0.15.2", - "packageName": "thread-stream", - "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" - } - }, - "npm:throttleit": { - "type": "npm", - "name": "npm:throttleit", - "data": { - "version": "1.0.1", - "packageName": "throttleit", - "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.1.0", - "packageName": "thunky", - "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - } - }, - "npm:to-object-path": { - "type": "npm", - "name": "npm:to-object-path", - "data": { - "version": "0.3.0", - "packageName": "to-object-path", - "hash": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:token-types": { - "type": "npm", - "name": "npm:token-types", - "data": { - "version": "5.0.1", - "packageName": "token-types", - "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" - } - }, - "npm:toml": { - "type": "npm", - "name": "npm:toml", - "data": { - "version": "2.3.6", - "packageName": "toml", - "hash": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" - } - }, - "npm:toposort": { - "type": "npm", - "name": "npm:toposort", - "data": { - "version": "2.0.2", - "packageName": "toposort", - "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.6.7", - "packageName": "traverse", - "hash": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==" - } - }, - "npm:tree-kill": { - "type": "npm", - "name": "npm:tree-kill", - "data": { - "version": "1.2.2", - "packageName": "tree-kill", - "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" - } - }, - "npm:trim-repeated": { - "type": "npm", - "name": "npm:trim-repeated", - "data": { - "version": "2.0.0", - "packageName": "trim-repeated", - "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "1.0.3", - "packageName": "ts-api-utils", - "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.1.1", - "packageName": "ts-jest", - "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" - } - }, - "npm:ts-loader": { - "type": "npm", - "name": "npm:ts-loader", - "data": { - "version": "9.5.1", - "packageName": "ts-loader", - "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "10.9.1", - "packageName": "ts-node", - "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tsconfig-paths-webpack-plugin": { - "type": "npm", - "name": "npm:tsconfig-paths-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "tsconfig-paths-webpack-plugin", - "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.6.2", - "packageName": "tslib", - "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - } - }, - "npm:tsscmp": { - "type": "npm", - "name": "npm:tsscmp", - "data": { - "version": "1.0.6", - "packageName": "tsscmp", - "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" - } - }, - "npm:tweetnacl": { - "type": "npm", - "name": "npm:tweetnacl", - "data": { - "version": "0.14.5", - "packageName": "tweetnacl", - "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - } - }, - "npm:typanion": { - "type": "npm", - "name": "npm:typanion", - "data": { - "version": "3.14.0", - "packageName": "typanion", - "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.0", - "packageName": "typed-array-buffer", - "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-length", - "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-offset", - "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.4", - "packageName": "typed-array-length", - "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" - } - }, - "npm:typed-assert": { - "type": "npm", - "name": "npm:typed-assert", - "data": { - "version": "1.0.9", - "packageName": "typed-assert", - "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" - } - }, - "npm:typedarray": { - "type": "npm", - "name": "npm:typedarray", - "data": { - "version": "0.0.6", - "packageName": "typedarray", - "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.2.2", - "packageName": "typescript", - "hash": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "1.0.37", - "packageName": "ua-parser-js", - "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.17.4", - "packageName": "uglify-js", - "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.2", - "packageName": "unbox-primitive", - "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" - } - }, - "npm:undici": { - "type": "npm", - "name": "npm:undici", - "data": { - "version": "5.27.2", - "packageName": "undici", - "hash": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-emoji-modifier-base": { - "type": "npm", - "name": "npm:unicode-emoji-modifier-base", - "data": { - "version": "1.0.0", - "packageName": "unicode-emoji-modifier-base", - "hash": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unicorn-magic": { - "type": "npm", - "name": "npm:unicorn-magic", - "data": { - "version": "0.1.0", - "packageName": "unicorn-magic", - "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" - } - }, - "npm:union": { - "type": "npm", - "name": "npm:union", - "data": { - "version": "0.5.0", - "packageName": "union", - "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" - } - }, - "npm:unique-string": { - "type": "npm", - "name": "npm:unique-string", - "data": { - "version": "3.0.0", - "packageName": "unique-string", - "hash": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==" - } - }, - "npm:universal-user-agent": { - "type": "npm", - "name": "npm:universal-user-agent", - "data": { - "version": "6.0.1", - "packageName": "universal-user-agent", - "hash": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" - } - }, - "npm:unix-crypt-td-js": { - "type": "npm", - "name": "npm:unix-crypt-td-js", - "data": { - "version": "1.1.4", - "packageName": "unix-crypt-td-js", - "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:untildify": { - "type": "npm", - "name": "npm:untildify", - "data": { - "version": "4.0.0", - "packageName": "untildify", - "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.0.13", - "packageName": "update-browserslist-db", - "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:v8-compile-cache-lib": { - "type": "npm", - "name": "npm:v8-compile-cache-lib", - "data": { - "version": "3.0.1", - "packageName": "v8-compile-cache-lib", - "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.2.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:verdaccio": { - "type": "npm", - "name": "npm:verdaccio", - "data": { - "version": "5.29.0", - "packageName": "verdaccio", - "hash": "sha512-Le3MhojXDCoXIDFNp5VaAalu8FtoZAJo6YTWxEAKCOO4MFN19XzwZsu4FkLrPHc5fPhyhqerTHBsG2qtoutxQA==" - } - }, - "npm:verdaccio-audit": { - "type": "npm", - "name": "npm:verdaccio-audit", - "data": { - "version": "12.0.0-next.4", - "packageName": "verdaccio-audit", - "hash": "sha512-X8Qe8Qv/BZPng7dQCCdot8g53eU65zM6GfLw0P1A68Hf5dzv/GJgekiPnIAXgSw5KJMKE8loNzd6+FfFLnQUSA==" - } - }, - "npm:verdaccio-htpasswd": { - "type": "npm", - "name": "npm:verdaccio-htpasswd", - "data": { - "version": "12.0.0-next.4", - "packageName": "verdaccio-htpasswd", - "hash": "sha512-q4SxBIWMkVPUoKk2/JSPJjlTdC8treuLtVV/omRYjEgSbwJBhJlSeqwEiHlv0/idv/cfwXoDR3/WY9CWq8gieg==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" - } - }, - "npm:vite": { - "type": "npm", - "name": "npm:vite", - "data": { - "version": "4.5.1", - "packageName": "vite", - "hash": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.0", - "packageName": "watchpack", - "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.89.0", - "packageName": "webpack", - "hash": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "6.1.1", - "packageName": "webpack-dev-middleware", - "hash": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==" - } - }, - "npm:webpack-dev-middleware@5.3.3": { - "type": "npm", - "name": "npm:webpack-dev-middleware@5.3.3", - "data": { - "version": "5.3.3", - "packageName": "webpack-dev-middleware", - "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "4.15.1", - "packageName": "webpack-dev-server", - "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.10.0", - "packageName": "webpack-merge", - "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" - } - }, - "npm:webpack-node-externals": { - "type": "npm", - "name": "npm:webpack-node-externals", - "data": { - "version": "3.0.0", - "packageName": "webpack-node-externals", - "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack-subresource-integrity": { - "type": "npm", - "name": "npm:webpack-subresource-integrity", - "data": { - "version": "5.1.0", - "packageName": "webpack-subresource-integrity", - "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.0.2", - "packageName": "which-boxed-primitive", - "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.13", - "packageName": "which-typed-array", - "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" - } - }, - "npm:wildcard": { - "type": "npm", - "name": "npm:wildcard", - "data": { - "version": "2.0.1", - "packageName": "wildcard", - "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xmlhttprequest-ssl": { - "type": "npm", - "name": "npm:xmlhttprequest-ssl", - "data": { - "version": "2.0.0", - "packageName": "xmlhttprequest-ssl", - "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" - } - }, - "npm:xtend": { - "type": "npm", - "name": "npm:xtend", - "data": { - "version": "4.0.2", - "packageName": "xtend", - "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" - } - }, - "npm:yn": { - "type": "npm", - "name": "npm:yn", - "data": { - "version": "3.1.1", - "packageName": "yn", - "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" - } - }, - "npm:yup": { - "type": "npm", - "name": "npm:yup", - "data": { - "version": "0.32.11", - "packageName": "yup", - "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" - } - }, - "npm:zone.js": { - "type": "npm", - "name": "npm:zone.js", - "data": { - "version": "0.14.2", - "packageName": "zone.js", - "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" - } - } - }, - "dependencies": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@angular-devkit/architect", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/architect", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/build-webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ngtools/webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@vitejs/plugin-basic-ssl", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browser-sync", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:copy-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:critters", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:inquirer@9.2.11", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:karma-source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mini-css-extract-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:parse5-html-rewriting-stream", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:resolve-url-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-subresource-integrity", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:figures@5.0.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:figures@5.0.0", - "target": "npm:is-unicode-supported@1.3.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:@ljharb/through", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:cli-width@4.1.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:figures@5.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:run-async@3.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:axobject-query", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular/animations", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/animations", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@schematics/angular@17.0.7", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:inquirer@9.2.11", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:symbol-observable", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:@schematics/angular@17.0.7", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@schematics/angular@17.0.7", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@schematics/angular@17.0.7", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:figures@5.0.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:figures@5.0.0", - "target": "npm:is-unicode-supported@1.3.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:@ljharb/through", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:cli-width@4.1.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:figures@5.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:run-async@3.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:reflect-metadata", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/animations", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-hoist-variables", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator@7.23.6", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:@humanwhocodes/object-schema", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@ljharb/through", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-version-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:ext-name", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:file-type", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:filenamify", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:os-filter-obj", - "type": "static" - }, - { - "source": "npm:@ngrx/store", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@ngrx/store", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@ngrx/store", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent@7.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:@nrwl/angular", - "target": "npm:@nx/angular", - "type": "static" - }, - { - "source": "npm:@nrwl/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/cypress", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nrwl/eslint-plugin-nx", - "target": "npm:@nx/eslint-plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/web", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nrwl/webpack", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nrwl/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nrwl/cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nrwl/eslint-plugin-nx", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:jsonc-eslint-parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:verdaccio", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fast-glob@3.2.7", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ora@5.3.0", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nrwl/web", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:http-server", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nrwl/webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:copy-webpack-plugin@10.2.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-minimizer-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less@4.1.3", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:mini-css-extract-plugin@2.4.7", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:parse5@4.0.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-import", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-loader@6.2.1", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass-loader@12.6.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:source-map-loader@3.0.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:ts-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tsconfig-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-node-externals", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-subresource-integrity", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:globby@12.2.0", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:array-union@3.0.1", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:slash@4.0.0", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/auth-token", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/graphql", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:bottleneck", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-throttling", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-throttling", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-throttling", - "target": "npm:bottleneck", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/endpoint", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:@pnpm/network.ca-file", - "target": "npm:graceful-fs@4.2.10", - "type": "static" - }, - { - "source": "npm:@pnpm/npm-conf", - "target": "npm:@pnpm/config.env-replace", - "type": "static" - }, - { - "source": "npm:@pnpm/npm-conf", - "target": "npm:@pnpm/network.ca-file", - "type": "static" - }, - { - "source": "npm:@pnpm/npm-conf", - "target": "npm:config-chain", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/core@16.0.6", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/schematics@16.0.6", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:@angular-devkit/core@16.0.6", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:magic-string@0.30.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:magic-string@0.30.0", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:@semantic-release/error", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:import-from-esm", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:@semantic-release/error", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:@semantic-release/error", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/plugin-retry", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/plugin-throttling", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@semantic-release/error@4.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:aggregate-error@5.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:globby@14.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:http-proxy-agent@7.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:issue-parser", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:mime@4.0.1", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:p-filter", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:url-join@5.0.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:clean-stack@5.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:indent-string@5.0.0", - "type": "static" - }, - { - "source": "npm:clean-stack@5.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:fast-glob@3.3.2", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:path-type@5.0.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:unicorn-magic", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:@semantic-release/error@4.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:aggregate-error@5.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:execa@8.0.1", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:nerf-dart", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:normalize-url@8.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:npm", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:read-pkg@9.0.1", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:registry-auth-token", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:tempy", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:clean-stack@5.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:indent-string@5.0.0", - "type": "static" - }, - { - "source": "npm:clean-stack@5.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:get-stream@8.0.1", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:human-signals@5.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:npm-run-path@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - }, - { - "source": "npm:npm-run-path@5.1.0", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:index-to-position", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:type-fest@4.8.3", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:parse-json@8.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:type-fest@4.8.3", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:unicorn-magic", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-changelog-writer", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:import-from-esm", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:into-stream", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - }, - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - }, - { - "source": "npm:@swc-node/core", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/sourcemap-support", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@mole-inc/bin-wrapper", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/types", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-x64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cors", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - }, - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/inquirer", - "target": "npm:@types/through", - "type": "static" - }, - { - "source": "npm:@types/inquirer", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:@types/keyv", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/node-forge", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/responselike", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/through", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/ws", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils@6.15.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils@6.15.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:@typescript-eslint/utils@6.15.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:@typescript-eslint/visitor-keys@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@6.13.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@6.13.1", - "target": "npm:@typescript-eslint/visitor-keys@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:@typescript-eslint/visitor-keys@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@6.13.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:yup", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:minimatch@7.4.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@verdaccio/file-locking", - "target": "npm:lockfile", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/commons-api", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/file-locking", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:async@3.2.4", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lowdb", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:@verdaccio/logger-commons", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:pino", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/logger-prettify", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:dayjs@1.11.7", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:pino-abstract-transport", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:sonic-boom", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:validator@13.9.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:minimatch@7.4.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-basic-ssl", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:acorn-import-assertions", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:regex-parser", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-formats", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-formats", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-keywords", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-keywords", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:ansi-red", - "target": "npm:ansi-wrap", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:argparse", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:aria-query", - "target": "npm:dequal", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:asn1", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:autolinker", - "target": "npm:gulp-header", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axobject-query", - "target": "npm:dequal", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:pkg-dir@7.0.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.2.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@7.2.0", - "target": "npm:p-locate@6.0.0", - "type": "static" - }, - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - }, - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - }, - { - "source": "npm:pkg-dir@7.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument@5.2.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-transform-typescript-metadata", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:basic-auth", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:execa@0.7.0", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:get-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:strip-eof", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - }, - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key@2.0.1", - "type": "static" - }, - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - }, - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:find-versions", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:bin-version", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:array-flatten@2.1.2", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:dns-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:multicast-dns", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-client", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-ui", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:bs-recipes", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:dev-ip", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:easy-extender", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:eazy-logger", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fs-extra@3.0.1", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:localtunnel", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:opn", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:portscanner", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:resp-modifier", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:rx", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:socket.io", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:ua-parser-js", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:mitt", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:async-each-series", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:socket.io-client", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:stream-throttle", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:jsonfile@3.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:jsonfile@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:bs-logger", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:builtins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:cardinal", - "target": "npm:ansicolors", - "type": "static" - }, - { - "source": "npm:cardinal", - "target": "npm:redeyed", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:clipanion", - "target": "npm:typanion", - "type": "static" - }, - { - "source": "npm:clipanion", - "target": "npm:typanion", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of@6.0.3", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - }, - { - "source": "npm:clone-response", - "target": "npm:mimic-response", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:array-ify", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:dot-prop", - "type": "static" - }, - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - }, - { - "source": "npm:concat-with-sourcemaps", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:config-chain", - "target": "npm:ini@1.3.8", - "type": "static" - }, - { - "source": "npm:config-chain", - "target": "npm:proto-list", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:conventional-changelog-angular", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:keygrip", - "type": "static" - }, - { - "source": "npm:copy-anything", - "target": "npm:is-what", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby@13.2.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:slash@4.0.0", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:crypto-random-string", - "target": "npm:type-fest@1.4.0", - "type": "static" - }, - { - "source": "npm:css-declaration-sorter", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:cssnano", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-utils", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:csso", - "target": "npm:css-tree@2.2.1", - "type": "static" - }, - { - "source": "npm:css-tree@2.2.1", - "target": "npm:mdn-data@2.0.28", - "type": "static" - }, - { - "source": "npm:css-tree@2.2.1", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/xvfb", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/node@16.18.68", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sizzle", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:blob-util", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:common-tags", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:eventemitter2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:getos", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-installed-globally", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:ospath", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:request-progress", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:untildify", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:dashdash", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:decompress-response", - "target": "npm:mimic-response@3.1.0", - "type": "static" - }, - { - "source": "npm:default-gateway", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:dns-packet", - "target": "npm:@leichtgewicht/ip-codec", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dot-prop", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:duplexer2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:easy-extender", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:eazy-logger", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ecdsa-sig-formatter", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cookie@0.4.2", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:xmlhttprequest-ssl", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:env-ci", - "target": "npm:execa@8.0.1", - "type": "static" - }, - { - "source": "npm:env-ci", - "target": "npm:java-properties", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:get-stream@8.0.1", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:human-signals@5.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:npm-run-path@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - }, - { - "source": "npm:npm-run-path@5.1.0", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - }, - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:errorhandler", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:errorhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:arraybuffer.prototype.slice", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-loong64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-mips64el", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ppc64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-riscv64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-s390x", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/sunos-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-x64", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:find-up@5.0.0", - "target": "npm:locate-path@6.0.0", - "type": "static" - }, - { - "source": "npm:find-up@5.0.0", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:locate-path@6.0.0", - "target": "npm:p-locate@5.0.0", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:expand-range", - "target": "npm:fill-range@2.2.4", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:isobject@2.1.0", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:randomatic", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:repeat-element", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:isobject@2.1.0", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser@1.20.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static@1.15.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:express-urlrewrite", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:express-urlrewrite", - "target": "npm:path-to-regexp@1.8.0", - "type": "static" - }, - { - "source": "npm:path-to-regexp@1.8.0", - "target": "npm:isarray@0.0.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:raw-body@2.5.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:ext-list", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:ext-list", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:sort-keys-length", - "type": "static" - }, - { - "source": "npm:extend-shallow", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:tmp@0.0.33", - "type": "static" - }, - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - }, - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - }, - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:readable-web-to-node-stream", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:strtok3", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:token-types", - "type": "static" - }, - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:filename-reserved-regex", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:strip-outer", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:trim-repeated", - "type": "static" - }, - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-versions", - "target": "npm:semver-regex", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:for-each", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:node-abort-controller", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:from2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:from2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:getos", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:argv-formatter", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:spawn-error-forwarder", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:split2@1.0.0", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:stream-combiner2", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:traverse", - "type": "static" - }, - { - "source": "npm:split2@1.0.0", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:global-dirs", - "target": "npm:ini@2.0.0", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:gopd", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:ansi-red", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:coffee-script", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:toml", - "type": "static" - }, - { - "source": "npm:gulp-header", - "target": "npm:concat-with-sourcemaps", - "type": "static" - }, - { - "source": "npm:gulp-header", - "target": "npm:lodash.template", - "type": "static" - }, - { - "source": "npm:gulp-header", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:gzip-size", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - }, - { - "source": "npm:has-property-descriptors", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:hdr-histogram-js", - "target": "npm:@assemblyscript/loader", - "type": "static" - }, - { - "source": "npm:hdr-histogram-js", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:hdr-histogram-js", - "target": "npm:pako", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:corser", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:secure-compare", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:union", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:jsprim", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:sshpk", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:icss-utils", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:identity-obj-proxy", - "target": "npm:harmony-reflect", - "type": "static" - }, - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:import-from-esm", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:import-from-esm", - "target": "npm:import-meta-resolve", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:into-stream", - "target": "npm:from2", - "type": "static" - }, - { - "source": "npm:into-stream", - "target": "npm:p-is-promise", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:global-dirs", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:is-number", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:is-number-like", - "target": "npm:lodash.isfinite", - "type": "static" - }, - { - "source": "npm:is-number-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-shared-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-text-path", - "target": "npm:text-extensions", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:is-weakref", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.capitalize", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.escaperegexp", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.uniqby", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.1", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:dedent@1.5.1", - "target": "npm:babel-plugin-macros@3.1.0", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-pnp-resolver", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:json-parse-helpfulerror", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:connect-pause", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:errorhandler", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:express-urlrewrite", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:json-parse-helpfulerror", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:lodash-id", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:lowdb", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:method-override", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:morgan", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:please-upgrade-node", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:pluralize", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:verror", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:buffer-equal-constant-time", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:ecdsa-sig-formatter", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:karma-source-map-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:keygrip", - "target": "npm:tsscmp", - "type": "static" - }, - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - }, - { - "source": "npm:kind-of", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:lazy-cache", - "target": "npm:set-getter", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:license-webpack-plugin", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander@11.0.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@7.2.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:lilconfig@2.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2@6.6.1", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:pidtree", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:yaml@2.3.1", - "type": "static" - }, - { - "source": "npm:ansi-escapes@5.0.0", - "target": "npm:type-fest@1.4.0", - "type": "static" - }, - { - "source": "npm:cli-cursor@4.0.0", - "target": "npm:restore-cursor@4.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate@3.1.0", - "target": "npm:slice-ansi@5.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate@3.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:human-signals@4.3.1", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:npm-run-path@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:cli-truncate@3.1.0", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:eventemitter3@5.0.1", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:log-update@5.0.1", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:ansi-escapes@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:cli-cursor@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:slice-ansi@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:npm-run-path@5.1.0", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - }, - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:is-fullwidth-code-point@4.0.0", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:expand-range", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:strip-bom@3.0.0", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:debug@4.3.2", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:openurl", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:yargs@17.1.1", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - }, - { - "source": "npm:debug@4.3.2", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - }, - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - }, - { - "source": "npm:lockfile", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.templatesettings", - "type": "static" - }, - { - "source": "npm:lodash.templatesettings", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:steno", - "type": "static" - }, - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:diacritics-map", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:gray-matter", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:lazy-cache", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:list-item", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:markdown-link", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:mixin-deep", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:remarkable", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:strip-color", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:marked", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:ansi-escapes@6.2.0", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cardinal", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:node-emoji", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:supports-hyperlinks", - "type": "static" - }, - { - "source": "npm:ansi-escapes@6.2.0", - "target": "npm:type-fest@3.13.1", - "type": "static" - }, - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:debug@3.1.0", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:debug@3.1.0", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:mixin-deep", - "target": "npm:for-in", - "type": "static" - }, - { - "source": "npm:mixin-deep", - "target": "npm:is-extendable@1.0.1", - "type": "static" - }, - { - "source": "npm:is-extendable@1.0.1", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:ncp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:rimraf@2.4.5", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:rimraf@2.4.5", - "target": "npm:glob@6.0.4", - "type": "static" - }, - { - "source": "npm:needle", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:needle", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:nice-napi", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:nice-napi", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:emojilib", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:skin-tone", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@isaacs/string-locale-compare@1.1.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/config@8.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/map-workspaces@3.0.4", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/package-json@5.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:archy@1.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:cli-columns@4.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:fastest-levenshtein@1.0.16", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:init-package-json@6.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:is-cidr@5.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmaccess@8.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmdiff@6.0.4", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmexec@7.0.5", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmfund@5.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmhook@10.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmorg@6.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmpack@6.0.4", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmpublish@9.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmsearch@7.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmteam@6.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmversion@5.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-audit-report@5.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-profile@9.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-user-validate@2.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npmlog@7.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:parse-conflict-json@3.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:qrcode-terminal@0.12.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:supports-color@9.4.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:tiny-relative-date@1.3.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:treeverse@3.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:write-file-atomic@5.0.1", - "type": "static" - }, - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:memorystream", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:pidtree@0.3.1", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:string.prototype.padend", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key@2.0.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - }, - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent@7.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@isaacs/string-locale-compare@1.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/map-workspaces@3.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/metavuln-calculator@7.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/name-from-folder@2.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/package-json@5.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/query@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:bin-links@4.0.3", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:common-ancestor-path@1.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:json-stringify-nice@1.1.4", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npmlog@7.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:parse-conflict-json@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:promise-all-reject-late@1.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:promise-call-limit@1.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:treeverse@3.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:walk-up-path@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:@npmcli/map-workspaces@3.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:walk-up-path@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/disparity-colors@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:@npmcli/name-from-folder@2.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/query@3.0.1", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@4.0.1", - "target": "npm:delegates@1.0.0", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@4.0.1", - "target": "npm:readable-stream@4.4.2", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:cmd-shim@6.0.2", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:read-cmd-shim@4.0.0", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:write-file-atomic@5.0.1", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:builtins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:cidr-regex@4.0.3", - "target": "npm:ip-regex@5.0.0", - "type": "static" - }, - { - "source": "npm:cli-columns@4.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-columns@4.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:color-support@1.1.3", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:console-control-strings@1.1.0", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:has-unicode@2.0.1", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:wide-align@1.1.5", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:promzard@1.0.0", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:is-cidr@5.0.3", - "target": "npm:cidr-regex@4.0.3", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:libnpmaccess@8.0.2", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmaccess@8.0.2", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:@npmcli/disparity-colors@3.0.0", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:binary-extensions", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:diff@5.1.0", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:npmlog@7.0.1", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:walk-up-path@3.0.1", - "type": "static" - }, - { - "source": "npm:libnpmfund@5.0.2", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmhook@10.0.1", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:libnpmhook@10.0.1", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmorg@6.0.2", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:libnpmorg@6.0.2", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:libnpmsearch@7.0.1", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmteam@6.0.1", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:libnpmteam@6.0.1", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-profile@9.0.0", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:npm-profile@9.0.0", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:are-we-there-yet@4.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:console-control-strings@1.1.0", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:gauge@5.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:set-blocking@2.0.0", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:parse-conflict-json@3.0.1", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:parse-conflict-json@3.0.1", - "target": "npm:just-diff@6.0.2", - "type": "static" - }, - { - "source": "npm:parse-conflict-json@3.0.1", - "target": "npm:just-diff-apply@5.5.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:promzard@1.0.0", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:read@2.1.0", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:string_decoder@1.3.0", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/sign", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:string_decoder@1.3.0", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:wide-align@1.1.5", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@swc-node/register", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios@1.6.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:@nx/devkit@16.5.0", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit@16.5.0", - "target": "npm:@nx/devkit@16.5.0", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:@nrwl/devkit@16.5.0", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.6.2", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios@1.6.2", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.6.2", - "target": "npm:proxy-from-env@1.1.0", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.pick", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:opn", - "target": "npm:is-wsl@1.1.0", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:@aashutoshrathi/word-wrap", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:os-filter-obj", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:p-filter", - "target": "npm:p-map@5.5.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:clean-stack@4.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:indent-string@5.0.0", - "type": "static" - }, - { - "source": "npm:clean-stack@4.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:p-map@5.5.0", - "target": "npm:aggregate-error@4.0.1", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-locate", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry@0.13.1", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5-sax-parser", - "type": "static" - }, - { - "source": "npm:parse5-sax-parser", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:fast-redact", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:on-exit-leak-free", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-abstract-transport@0.5.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-std-serializers", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:quick-format-unescaped", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:sonic-boom@2.8.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:thread-stream", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:readable-stream@4.5.1", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:string_decoder@1.3.0", - "type": "static" - }, - { - "source": "npm:string_decoder@1.3.0", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:sonic-boom@2.8.0", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:eventemitter-asyncresource", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:hdr-histogram-js", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:hdr-histogram-percentiles-obj", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:nice-napi", - "type": "static" - }, - { - "source": "npm:pkg-conf", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:pkg-conf", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:p-locate@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - }, - { - "source": "npm:p-limit@1.3.0", - "target": "npm:p-try@1.0.0", - "type": "static" - }, - { - "source": "npm:p-locate@2.0.0", - "target": "npm:p-limit@1.3.0", - "type": "static" - }, - { - "source": "npm:pkg-dir", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:please-upgrade-node", - "target": "npm:semver-compare", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:async@2.6.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:portscanner", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portscanner", - "target": "npm:is-number-like", - "type": "static" - }, - { - "source": "npm:async@2.6.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-discard-comments", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-duplicates", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-empty", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-overridden", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:read-cache", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:cosmiconfig@8.3.6", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-extract-imports", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-normalize-charset", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:randomatic", - "target": "npm:is-number@4.0.0", - "type": "static" - }, - { - "source": "npm:randomatic", - "target": "npm:kind-of@6.0.3", - "type": "static" - }, - { - "source": "npm:randomatic", - "target": "npm:math-random", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini@1.3.8", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:read-cache", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:normalize-package-data@2.5.0", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:path-type@3.0.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:find-up-simple", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg@9.0.1", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:type-fest@4.8.3", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:index-to-position", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:type-fest@4.8.3", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:parse-json@8.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:type-fest@4.8.3", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:unicorn-magic", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:hosted-git-info@2.8.9", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:path-type@3.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-web-to-node-stream", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readdirp", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:redeyed", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:@pnpm/npm-conf", - "type": "static" - }, - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - }, - { - "source": "npm:remarkable", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:remarkable", - "target": "npm:autolinker", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:jsonfile@5.0.0", - "type": "static" - }, - { - "source": "npm:jsonfile@5.0.0", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:jsonfile@5.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:request-progress", - "target": "npm:throttleit", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:adjust-sourcemap-loader", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:resp-modifier", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:resp-modifier", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rollup", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - }, - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:isarray@2.0.5", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable@4.3.4", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:@types/node-forge", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/commit-analyzer", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/error@4.0.0", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/github", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/npm", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/release-notes-generator", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:aggregate-error@5.0.0", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:cosmiconfig@8.3.6", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:env-ci", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:execa@8.0.1", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:figures@6.0.1", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:find-versions", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:git-log-parser", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:hook-std", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:import-from-esm", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:marked", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:marked-terminal", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:p-each-series", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:p-reduce@3.0.0", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:semver-diff", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:signale", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:clean-stack@5.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:indent-string@5.0.0", - "type": "static" - }, - { - "source": "npm:clean-stack@5.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:get-stream@8.0.1", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:human-signals@5.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:npm-run-path@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - }, - { - "source": "npm:figures@6.0.1", - "target": "npm:is-unicode-supported@2.0.0", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:npm-run-path@5.1.0", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:semver-diff", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:semver-truncate", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy@1.0.4", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime@1.4.1", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses@1.4.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.4.0", - "type": "static" - }, - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:set-getter", - "target": "npm:to-object-path", - "type": "static" - }, - { - "source": "npm:shallow-clone", - "target": "npm:kind-of@6.0.3", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:signale", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:signale", - "target": "npm:figures@2.0.0", - "type": "static" - }, - { - "source": "npm:signale", - "target": "npm:pkg-conf", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:figures@2.0.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/sign", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:skin-tone", - "target": "npm:unicode-emoji-modifier-base", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:engine.io", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-adapter", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-parser", - "type": "static" - }, - { - "source": "npm:socket.io-adapter", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:engine.io-client", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:socket.io-parser", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj@1.1.0", - "type": "static" - }, - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:btoa", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:gzip-size", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:temp", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - }, - { - "source": "npm:steno", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:stream-combiner2", - "target": "npm:duplexer2", - "type": "static" - }, - { - "source": "npm:stream-combiner2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:stream-throttle", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:stream-throttle", - "target": "npm:limiter", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:peek-readable", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:sax@1.2.4", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:temp", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:temp", - "target": "npm:rimraf@2.6.3", - "type": "static" - }, - { - "source": "npm:rimraf@2.6.3", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:type-fest@2.19.0", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:unique-string", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:thread-stream", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:to-object-path", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:to-regex-range", - "target": "npm:is-number@7.0.0", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:url-parse", - "type": "static" - }, - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:trim-repeated", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:ts-api-utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node10", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node12", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node14", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node16", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:create-require", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:diff", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:v8-compile-cache-lib", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom@3.0.0", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:undici", - "target": "npm:@fastify/busboy", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - }, - { - "source": "npm:union", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unique-string", - "target": "npm:crypto-random-string", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@cypress/request@3.0.1", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/local-storage", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/logger-7", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/middleware", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/search", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/signature", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/tarball", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/ui-theme", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:clipanion", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cookies", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:fast-safe-stringify", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:kleur@4.1.5", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mime@3.0.0", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mv", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:pkginfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-audit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-htpasswd", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/file-locking@12.0.0-next.1", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:apache-md5", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:bcryptjs", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:unix-crypt-td-js", - "type": "static" - }, - { - "source": "npm:@verdaccio/file-locking@12.0.0-next.1", - "target": "npm:lockfile", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:core-util-is@1.0.2", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:esbuild@0.18.20", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-loong64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-mips64el@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ppc64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-riscv64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-s390x@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/netbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/openbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/sunos-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope@5.1.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback@2.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js@2.1.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware@5.3.3", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - }, - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:typed-assert", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:estraverse@4.3.0", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - }, - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:nanoclone", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:property-expr", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:toposort", - "type": "static" - }, - { - "source": "npm:zone.js", - "target": "npm:tslib", - "type": "static" - } - ] -} \ No newline at end of file diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json index db68903..3920dea 100644 --- a/.nx/cache/project-graph.json +++ b/.nx/cache/project-graph.json @@ -558,40787 +558,29 @@ } } }, - "externalNodes": { - "npm:@aashutoshrathi/word-wrap": { - "type": "npm", - "name": "npm:@aashutoshrathi/word-wrap", - "data": { - "version": "1.2.6", - "packageName": "@aashutoshrathi/word-wrap", - "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" - } - }, - "npm:@adobe/css-tools": { - "type": "npm", - "name": "npm:@adobe/css-tools", - "data": { - "version": "4.3.2", - "packageName": "@adobe/css-tools", - "hash": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.2.1", - "packageName": "@ampproject/remapping", - "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" - } - }, - "npm:@angular-devkit/architect": { - "type": "npm", - "name": "npm:@angular-devkit/architect", - "data": { - "version": "0.1700.7", - "packageName": "@angular-devkit/architect", - "hash": "sha512-32uitQKsYLGXAKoXBsmOnPsTt9pS+b9cnFI9ZvBFVhJ31I2EOM7vGcMFalhTxdB/DkVHk4TyO78efV0V26DwCA==" - } - }, - "npm:@angular-devkit/build-angular": { - "type": "npm", - "name": "npm:@angular-devkit/build-angular", - "data": { - "version": "17.0.7", - "packageName": "@angular-devkit/build-angular", - "hash": "sha512-AtEzLk6n6BXqQzk0Bsupe6GV0IgUe7RbpBfqROi+NZqMA7OUAHCX3xA6M68Qu+5KxBtW7T5lHeZZ7iP/y39wtQ==" - } - }, - "npm:chalk@5.3.0": { - "type": "npm", - "name": "npm:chalk@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:cli-width@4.1.0": { - "type": "npm", - "name": "npm:cli-width@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "cli-width", - "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - } - }, - "npm:escape-string-regexp@5.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:figures@5.0.0": { - "type": "npm", - "name": "npm:figures@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "figures", - "hash": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:figures@6.0.1": { - "type": "npm", - "name": "npm:figures@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "figures", - "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" - } - }, - "npm:figures@2.0.0": { - "type": "npm", - "name": "npm:figures@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "figures", - "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" - } - }, - "npm:inquirer@9.2.11": { - "type": "npm", - "name": "npm:inquirer@9.2.11", - "data": { - "version": "9.2.11", - "packageName": "inquirer", - "hash": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==" - } - }, - "npm:inquirer": { - "type": "npm", - "name": "npm:inquirer", - "data": { - "version": "8.2.6", - "packageName": "inquirer", - "hash": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==" - } - }, - "npm:is-unicode-supported@1.3.0": { - "type": "npm", - "name": "npm:is-unicode-supported@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "is-unicode-supported", - "hash": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-unicode-supported@2.0.0": { - "type": "npm", - "name": "npm:is-unicode-supported@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-unicode-supported", - "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" - } - }, - "npm:mute-stream@1.0.0": { - "type": "npm", - "name": "npm:mute-stream@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "0.0.8", - "packageName": "mute-stream", - "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - } - }, - "npm:run-async@3.0.0": { - "type": "npm", - "name": "npm:run-async@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "run-async", - "hash": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==" - } - }, - "npm:run-async": { - "type": "npm", - "name": "npm:run-async", - "data": { - "version": "2.4.1", - "packageName": "run-async", - "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" - } - }, - "npm:@angular-devkit/build-webpack": { - "type": "npm", - "name": "npm:@angular-devkit/build-webpack", - "data": { - "version": "0.1700.7", - "packageName": "@angular-devkit/build-webpack", - "hash": "sha512-B9Mg/qYDpE5my8PJ3VPQyRSUV0Oq1bFUzU8s0ZpqEZl1URKc04pm0LtLmebrMIcUZgDiGk0RHaD+O1E9IV/bdQ==" - } - }, - "npm:@angular-devkit/core": { - "type": "npm", - "name": "npm:@angular-devkit/core", - "data": { - "version": "17.0.7", - "packageName": "@angular-devkit/core", - "hash": "sha512-vATobHo5O5tJba424hJfQWLb40GzvZPNsI74dcgSUTgrDph8ksmk5xB9OvEvf0INorQZ2IMphj/VIWj4/+JqSA==" - } - }, - "npm:@angular-devkit/core@16.0.6": { - "type": "npm", - "name": "npm:@angular-devkit/core@16.0.6", - "data": { - "version": "16.0.6", - "packageName": "@angular-devkit/core", - "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" - } - }, - "npm:@angular-devkit/schematics": { - "type": "npm", - "name": "npm:@angular-devkit/schematics", - "data": { - "version": "17.0.7", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-BY11OkJkM3xyXcvyD7x5kGY/c8Ufd4AfPvI0D9imhVxbns45Q48b1DlvCQvSnCJ/s+OwnkrYb/Efa70ZiaGu8A==" - } - }, - "npm:@angular-devkit/schematics@16.0.6": { - "type": "npm", - "name": "npm:@angular-devkit/schematics@16.0.6", - "data": { - "version": "16.0.6", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" - } - }, - "npm:@angular-eslint/bundled-angular-compiler": { - "type": "npm", - "name": "npm:@angular-eslint/bundled-angular-compiler", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/bundled-angular-compiler", - "hash": "sha512-xRlSh9qjdUdUKAy/0UQsxX7wf1tHApAsHsfismebPriqfmVAPyEg4HBrM8ImWaZxiqaTGC1AyHsUBQD5FK8o6w==" - } - }, - "npm:@angular-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/eslint-plugin", - "hash": "sha512-fFOBlCOVObVu3gjLj+0BypqO1ZR/0bfJnDElqMdYwJG7zRaFT8NNQbrOo/q/GQoqOFoNna6mw3teTGsd5JnL2A==" - } - }, - "npm:@angular-eslint/eslint-plugin-template": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin-template", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/eslint-plugin-template", - "hash": "sha512-unZ6QNwtxuB8Eni7UPdw7uK6iZipZUXIsH+ZuLMOxwFgGMqeRnpv8SW0212rto3d/Ec0jESzVHKcwZ9pT+jxgw==" - } - }, - "npm:@angular-eslint/template-parser": { - "type": "npm", - "name": "npm:@angular-eslint/template-parser", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/template-parser", - "hash": "sha512-ofL46rNhRVeSxrSQF0vwhKMco+vJuo+ZGjSOzFmT9N3KAMB0j+WXTbpyGGMy0gQSBc4W6p+j+zxGa2CR2xb6wA==" - } - }, - "npm:@angular-eslint/utils": { - "type": "npm", - "name": "npm:@angular-eslint/utils", - "data": { - "version": "17.1.1", - "packageName": "@angular-eslint/utils", - "hash": "sha512-CTNPOb05S/DII/Fm8JYUvKo+B4u/ctHjGJ0X1YXUR0q31oaGqTE3KePGq76+Y6swRDf9NjUIcfcnZp3u3j4CBQ==" - } - }, - "npm:@angular/animations": { - "type": "npm", - "name": "npm:@angular/animations", - "data": { - "version": "17.0.7", - "packageName": "@angular/animations", - "hash": "sha512-IjZjPGMxvi2a9o7fzjwNO44FvhTZlVSgcPtqM6Glq0+WVeQcnZxf1Onj68M/FGx2AunS8elRbrgPxTexVeSo7A==" - } - }, - "npm:@angular/cdk": { - "type": "npm", - "name": "npm:@angular/cdk", - "data": { - "version": "17.0.4", - "packageName": "@angular/cdk", - "hash": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==" - } - }, - "npm:@angular/cli": { - "type": "npm", - "name": "npm:@angular/cli", - "data": { - "version": "17.0.7", - "packageName": "@angular/cli", - "hash": "sha512-oSa0GVAQNA7wFbLJYeaO3kV4iUcbKEqXDLxcIE8s1GfHddBOlXH2P1T4fXonCBl5qvV+joP0G0+fs7I0w2utZQ==" - } - }, - "npm:@schematics/angular@17.0.7": { - "type": "npm", - "name": "npm:@schematics/angular@17.0.7", - "data": { - "version": "17.0.7", - "packageName": "@schematics/angular", - "hash": "sha512-d7QKmcKrM4owb/2bR7Ipf23roiNbvbD/x7reNhQAtKAPLSHJ3Ulkf1+Yv+dj+9f+K7y9SBviEUSrD27BQ9WaxQ==" - } - }, - "npm:@schematics/angular": { - "type": "npm", - "name": "npm:@schematics/angular", - "data": { - "version": "16.0.6", - "packageName": "@schematics/angular", - "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" - } - }, - "npm:@angular/common": { - "type": "npm", - "name": "npm:@angular/common", - "data": { - "version": "17.0.7", - "packageName": "@angular/common", - "hash": "sha512-bPPL6x0KOAOTxKSE2j4EWmEUOnqZYzOYiHzroa5b9UEyA9NvGkd9bm3zIxw8xcndRj1Ehcmvpi6KBLcYBBbWfg==" - } - }, - "npm:@angular/compiler": { - "type": "npm", - "name": "npm:@angular/compiler", - "data": { - "version": "17.0.7", - "packageName": "@angular/compiler", - "hash": "sha512-QHPuLti2c2tGZmOGZ0cfCHo4LxiHUkC27I0aZFDyQSSQqEI5obQGVlEREHysw0nsS3sYIcLvqcwcKcRtXlXtxQ==" - } - }, - "npm:@angular/compiler-cli": { - "type": "npm", - "name": "npm:@angular/compiler-cli", - "data": { - "version": "17.0.7", - "packageName": "@angular/compiler-cli", - "hash": "sha512-YnL38idjIYtl3BXYpv+sVJKWGbUjHT6eyQSQVAfO/1AwWqVa21K9hnE+Q37VmUKEcKFMnQembeuErA+KVsGI6A==" - } - }, - "npm:@angular/core": { - "type": "npm", - "name": "npm:@angular/core", - "data": { - "version": "17.0.7", - "packageName": "@angular/core", - "hash": "sha512-mEkelXkzEi6+A9GjdKOSGGzQAfo1iAjVTn6YsplNUeGE5JgDZYZ7sXGQqs0Lin7dzJxnPAgGjCOl7SpWLXIPSQ==" - } - }, - "npm:@angular/forms": { - "type": "npm", - "name": "npm:@angular/forms", - "data": { - "version": "17.0.7", - "packageName": "@angular/forms", - "hash": "sha512-28BxRxEmgZIofGwVp6s2v3ri/kuWW+/EY/ZXhavlWKJEh4ATJl72k0RkRWNcQi4wnvn0Qb8tFdnVJnvRZvvKEw==" - } - }, - "npm:@angular/language-service": { - "type": "npm", - "name": "npm:@angular/language-service", - "data": { - "version": "17.0.7", - "packageName": "@angular/language-service", - "hash": "sha512-03EXeBZgyGNnEDLiABwEw0lpAcqLxSgl+bXQahOO4OnBSYQWGEiqfs3ymNbNj0chUfQVadG4FWghwGTGbj77Iw==" - } - }, - "npm:@angular/platform-browser": { - "type": "npm", - "name": "npm:@angular/platform-browser", - "data": { - "version": "17.0.7", - "packageName": "@angular/platform-browser", - "hash": "sha512-bm9/wt51nc/MPjft/FlRNIgFSeLjDtfJOT7M32Rt6kOHhNKSK7ZTPWdMe9ahuHSbAhLzd0G/4NsT5sKrWSeVZg==" - } - }, - "npm:@angular/platform-browser-dynamic": { - "type": "npm", - "name": "npm:@angular/platform-browser-dynamic", - "data": { - "version": "17.0.7", - "packageName": "@angular/platform-browser-dynamic", - "hash": "sha512-OquwUX9fLWA2JUZW5Jm6atk0CPt0sA7Tg24eGLsr6g1XfTS7jRZprlGaa72NgPLnQVV6m84o/ZiNYS6yPmq1Gg==" - } - }, - "npm:@angular/router": { - "type": "npm", - "name": "npm:@angular/router", - "data": { - "version": "17.0.7", - "packageName": "@angular/router", - "hash": "sha512-rUFPe1uDlYYw6+3Gq68czW7WxBH7zT/D3UsT1otqwUV4RnQQsVze4fIit9FqJh7tuP4y3WpB4XBNf7p7Oi6TJw==" - } - }, - "npm:@assemblyscript/loader": { - "type": "npm", - "name": "npm:@assemblyscript/loader", - "data": { - "version": "0.10.1", - "packageName": "@assemblyscript/loader", - "hash": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.23.5", - "packageName": "@babel/code-frame", - "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:color-convert@1.9.3": { - "type": "npm", - "name": "npm:color-convert@1.9.3", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name@1.1.3": { - "type": "npm", - "name": "npm:color-name@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:has-flag@3.0.0": { - "type": "npm", - "name": "npm:has-flag@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color@8.1.1": { - "type": "npm", - "name": "npm:supports-color@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:supports-color@9.4.0": { - "type": "npm", - "name": "npm:supports-color@9.4.0", - "data": { - "version": "9.4.0", - "packageName": "supports-color", - "hash": "4124946643497815937" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.23.5", - "packageName": "@babel/compat-data", - "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.23.2", - "packageName": "@babel/core", - "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.9.0", - "packageName": "convert-source-map", - "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - } - }, - "npm:semver@6.3.1": { - "type": "npm", - "name": "npm:semver@6.3.1", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@7.5.3": { - "type": "npm", - "name": "npm:semver@7.5.3", - "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" - } - }, - "npm:semver@5.7.2": { - "type": "npm", - "name": "npm:semver@5.7.2", - "data": { - "version": "5.7.2", - "packageName": "semver", - "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "3378029399647957957" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.23.0", - "packageName": "@babel/generator", - "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" - } - }, - "npm:@babel/generator@7.23.6": { - "type": "npm", - "name": "npm:@babel/generator@7.23.6", - "data": { - "version": "7.23.6", - "packageName": "@babel/generator", - "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.23.6", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.23.6", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.4.4", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" - } - }, - "npm:@babel/helper-function-name": { - "type": "npm", - "name": "npm:@babel/helper-function-name", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-function-name", - "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" - } - }, - "npm:@babel/helper-hoist-variables": { - "type": "npm", - "name": "npm:@babel/helper-hoist-variables", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-hoist-variables", - "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.23.3", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.22.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.23.4", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.23.5", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.23.6", - "packageName": "@babel/helpers", - "hash": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.23.4", - "packageName": "@babel/highlight", - "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.23.6", - "packageName": "@babel/parser", - "hash": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.23.5", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.23.2", - "packageName": "@babel/preset-env", - "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-typescript", - "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/runtime", - "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.22.15", - "packageName": "@babel/template", - "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.23.6", - "packageName": "@babel/traverse", - "hash": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.23.6", - "packageName": "@babel/types", - "hash": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.5.0", - "packageName": "@colors/colors", - "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.20", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==" - } - }, - "npm:@cypress/request": { - "type": "npm", - "name": "npm:@cypress/request", - "data": { - "version": "2.88.12", - "packageName": "@cypress/request", - "hash": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==" - } - }, - "npm:@cypress/request@3.0.1": { - "type": "npm", - "name": "npm:@cypress/request@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@cypress/request", - "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" - } - }, - "npm:@cypress/xvfb": { - "type": "npm", - "name": "npm:@cypress/xvfb", - "data": { - "version": "1.2.4", - "packageName": "@cypress/xvfb", - "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@4.3.2": { - "type": "npm", - "name": "npm:debug@4.3.2", - "data": { - "version": "4.3.2", - "packageName": "debug", - "hash": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==" - } - }, - "npm:debug@3.1.0": { - "type": "npm", - "name": "npm:debug@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "debug", - "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - }, - "npm:@discoveryjs/json-ext": { - "type": "npm", - "name": "npm:@discoveryjs/json-ext", - "data": { - "version": "0.5.7", - "packageName": "@discoveryjs/json-ext", - "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" - } - }, - "npm:@esbuild/android-arm": { - "type": "npm", - "name": "npm:@esbuild/android-arm", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/android-arm", - "hash": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==" - } - }, - "npm:@esbuild/android-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm", - "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" - } - }, - "npm:@esbuild/android-arm64": { - "type": "npm", - "name": "npm:@esbuild/android-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==" - } - }, - "npm:@esbuild/android-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" - } - }, - "npm:@esbuild/android-x64": { - "type": "npm", - "name": "npm:@esbuild/android-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/android-x64", - "hash": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==" - } - }, - "npm:@esbuild/android-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-x64", - "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" - } - }, - "npm:@esbuild/darwin-arm64": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==" - } - }, - "npm:@esbuild/darwin-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" - } - }, - "npm:@esbuild/darwin-x64": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==" - } - }, - "npm:@esbuild/darwin-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" - } - }, - "npm:@esbuild/freebsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==" - } - }, - "npm:@esbuild/freebsd-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" - } - }, - "npm:@esbuild/freebsd-x64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" - } - }, - "npm:@esbuild/linux-arm": { - "type": "npm", - "name": "npm:@esbuild/linux-arm", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==" - } - }, - "npm:@esbuild/linux-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" - } - }, - "npm:@esbuild/linux-arm64": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==" - } - }, - "npm:@esbuild/linux-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" - } - }, - "npm:@esbuild/linux-ia32": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==" - } - }, - "npm:@esbuild/linux-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" - } - }, - "npm:@esbuild/linux-loong64": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==" - } - }, - "npm:@esbuild/linux-loong64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" - } - }, - "npm:@esbuild/linux-mips64el": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==" - } - }, - "npm:@esbuild/linux-mips64el@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" - } - }, - "npm:@esbuild/linux-ppc64": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==" - } - }, - "npm:@esbuild/linux-ppc64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" - } - }, - "npm:@esbuild/linux-riscv64": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==" - } - }, - "npm:@esbuild/linux-riscv64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" - } - }, - "npm:@esbuild/linux-s390x": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==" - } - }, - "npm:@esbuild/linux-s390x@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==" - } - }, - "npm:@esbuild/linux-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" - } - }, - "npm:@esbuild/netbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==" - } - }, - "npm:@esbuild/netbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" - } - }, - "npm:@esbuild/openbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==" - } - }, - "npm:@esbuild/openbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" - } - }, - "npm:@esbuild/sunos-x64": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==" - } - }, - "npm:@esbuild/sunos-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" - } - }, - "npm:@esbuild/win32-arm64": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==" - } - }, - "npm:@esbuild/win32-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" - } - }, - "npm:@esbuild/win32-ia32": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==" - } - }, - "npm:@esbuild/win32-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.19.5", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==" - } - }, - "npm:@esbuild/win32-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.10.0", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "2.1.4", - "packageName": "@eslint/eslintrc", - "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" - } - }, - "npm:ajv@6.12.6": { - "type": "npm", - "name": "npm:ajv@6.12.6", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:argparse@2.0.1": { - "type": "npm", - "name": "npm:argparse@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:globals@13.24.0": { - "type": "npm", - "name": "npm:globals@13.24.0", - "data": { - "version": "13.24.0", - "packageName": "globals", - "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:js-yaml@4.1.0": { - "type": "npm", - "name": "npm:js-yaml@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "3.14.1", - "packageName": "js-yaml", - "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:minimatch@3.1.2": { - "type": "npm", - "name": "npm:minimatch@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "npm:minimatch@9.0.3": { - "type": "npm", - "name": "npm:minimatch@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" - } - }, - "npm:minimatch@7.4.6": { - "type": "npm", - "name": "npm:minimatch@7.4.6", - "data": { - "version": "7.4.6", - "packageName": "minimatch", - "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" - } - }, - "npm:minimatch@5.1.6": { - "type": "npm", - "name": "npm:minimatch@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "minimatch", - "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.0.5", - "packageName": "minimatch", - "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" - } - }, - "npm:type-fest@0.20.2": { - "type": "npm", - "name": "npm:type-fest@0.20.2", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest@4.8.3": { - "type": "npm", - "name": "npm:type-fest@4.8.3", - "data": { - "version": "4.8.3", - "packageName": "type-fest", - "hash": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==" - } - }, - "npm:type-fest@1.4.0": { - "type": "npm", - "name": "npm:type-fest@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "type-fest", - "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" - } - }, - "npm:type-fest@3.13.1": { - "type": "npm", - "name": "npm:type-fest@3.13.1", - "data": { - "version": "3.13.1", - "packageName": "type-fest", - "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" - } - }, - "npm:type-fest@2.19.0": { - "type": "npm", - "name": "npm:type-fest@2.19.0", - "data": { - "version": "2.19.0", - "packageName": "type-fest", - "hash": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "8.48.0", - "packageName": "@eslint/js", - "hash": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==" - } - }, - "npm:@fastify/busboy": { - "type": "npm", - "name": "npm:@fastify/busboy", - "data": { - "version": "2.1.0", - "packageName": "@fastify/busboy", - "hash": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==" - } - }, - "npm:@humanwhocodes/config-array": { - "type": "npm", - "name": "npm:@humanwhocodes/config-array", - "data": { - "version": "0.11.13", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/object-schema": { - "type": "npm", - "name": "npm:@humanwhocodes/object-schema", - "data": { - "version": "2.0.1", - "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "13543247940053143024" - } - }, - "npm:strip-ansi@7.1.0": { - "type": "npm", - "name": "npm:strip-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "strip-ansi", - "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "11479311392825997119" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrap-ansi@7.0.0": { - "type": "npm", - "name": "npm:wrap-ansi@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.3", - "packageName": "@istanbuljs/schema", - "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.3", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.1", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.1.2", - "packageName": "@jridgewell/set-array", - "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.5", - "packageName": "@jridgewell/source-map", - "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.15", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - } - }, - "npm:@leichtgewicht/ip-codec": { - "type": "npm", - "name": "npm:@leichtgewicht/ip-codec", - "data": { - "version": "2.0.4", - "packageName": "@leichtgewicht/ip-codec", - "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - } - }, - "npm:@ljharb/through": { - "type": "npm", - "name": "npm:@ljharb/through", - "data": { - "version": "2.3.11", - "packageName": "@ljharb/through", - "hash": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==" - } - }, - "npm:@mole-inc/bin-wrapper": { - "type": "npm", - "name": "npm:@mole-inc/bin-wrapper", - "data": { - "version": "8.0.1", - "packageName": "@mole-inc/bin-wrapper", - "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" - } - }, - "npm:@ngrx/store": { - "type": "npm", - "name": "npm:@ngrx/store", - "data": { - "version": "17.0.1", - "packageName": "@ngrx/store", - "hash": "sha512-BmVzN+fqyz0ZrVEmJ+jrNwePMKcpNL49vb8sbQ3yDDftxgZz2HqRKFMexqlXpz5ixwK5LqTOblHNQOgi9irsTw==" - } - }, - "npm:@ngtools/webpack": { - "type": "npm", - "name": "npm:@ngtools/webpack", - "data": { - "version": "17.0.7", - "packageName": "@ngtools/webpack", - "hash": "sha512-gwhUhpwXn0trwwKdSu9WlJbEcLt+s/2fPwoD9lZ0y3wXfrOogsfcNBJKeO5BZf1h+A3AWt7ePmgrZXSJM+865Q==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/agent": { - "type": "npm", - "name": "npm:@npmcli/agent", - "data": { - "version": "2.2.0", - "packageName": "@npmcli/agent", - "hash": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==" - } - }, - "npm:http-proxy-agent@7.0.0": { - "type": "npm", - "name": "npm:http-proxy-agent@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:lru-cache@10.1.0": { - "type": "npm", - "name": "npm:lru-cache@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "lru-cache", - "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" - } - }, - "npm:lru-cache@6.0.0": { - "type": "npm", - "name": "npm:lru-cache@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@7.18.3": { - "type": "npm", - "name": "npm:lru-cache@7.18.3", - "data": { - "version": "7.18.3", - "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - } - }, - "npm:lru-cache@4.1.5": { - "type": "npm", - "name": "npm:lru-cache@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "lru-cache", - "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" - } - }, - "npm:@npmcli/git": { - "type": "npm", - "name": "npm:@npmcli/git", - "data": { - "version": "5.0.3", - "packageName": "@npmcli/git", - "hash": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==" - } - }, - "npm:isexe@3.1.1": { - "type": "npm", - "name": "npm:isexe@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:which@4.0.0": { - "type": "npm", - "name": "npm:which@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "which", - "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" - } - }, - "npm:which@1.3.1": { - "type": "npm", - "name": "npm:which@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "228540766434988782" - } - }, - "npm:@npmcli/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.0.2", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" - } - }, - "npm:@npmcli/node-gyp": { - "type": "npm", - "name": "npm:@npmcli/node-gyp", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/node-gyp", - "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" - } - }, - "npm:@npmcli/promise-spawn": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "7.0.0", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==" - } - }, - "npm:@npmcli/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "7.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==" - } - }, - "npm:@nrwl/angular": { - "type": "npm", - "name": "npm:@nrwl/angular", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/angular", - "hash": "sha512-4f7o6dsoQwP8o8O57dT0fTNnKcRllsQVkYeZx2SR/I0Gs2I/UlaCQZ6GCjy+BXSJS3AXn7sz6a69vo0uGJPBFw==" - } - }, - "npm:@nrwl/cypress": { - "type": "npm", - "name": "npm:@nrwl/cypress", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/cypress", - "hash": "sha512-/cimurrZnHFX9o0Sb5cj7SskUtEgA2aYnpLuZuAWaazpQPd+72WXTXFVYN8dVd7wgTV96uTQUTkUGt9nzvNiTA==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/devkit", - "hash": "sha512-uZVqc2qhi+WdSqLV9aIcE+5ck+IUSQ47Cc5bslWrssQjBncqGavHYDuU4ZLuKK5HxCuZqlQjvo7TsF7LeOjNiA==" - } - }, - "npm:@nrwl/devkit@16.5.0": { - "type": "npm", - "name": "npm:@nrwl/devkit@16.5.0", - "data": { - "version": "16.5.0", - "packageName": "@nrwl/devkit", - "hash": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==" - } - }, - "npm:@nrwl/eslint-plugin-nx": { - "type": "npm", - "name": "npm:@nrwl/eslint-plugin-nx", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/eslint-plugin-nx", - "hash": "sha512-xQDmFeIc+VR3q6scSSciSNVSdcRI52FFTTlDw4/pZCJk59LJTt6GgnqeL0Aj4EIgELfZQLOsKrxIoup5gzKlrQ==" - } - }, - "npm:@nrwl/jest": { - "type": "npm", - "name": "npm:@nrwl/jest", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/jest", - "hash": "sha512-YZ6yFFw1lq7nSCZTkP8qMbIeYX/yJ6Ko6iXPECPQViy4W6E9WEVnWU52RkovoKSN+CuhienzJCxne7DALLLr3w==" - } - }, - "npm:@nrwl/js": { - "type": "npm", - "name": "npm:@nrwl/js", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/js", - "hash": "sha512-oFnyaVOpVG3XrkIXQMs5TM6hrRRBe38jRX79d51S41yLuiOrHgpJlMmii1wafevM1Dpk9UlAvPh7v8OffgDZtg==" - } - }, - "npm:@nrwl/nx-plugin": { - "type": "npm", - "name": "npm:@nrwl/nx-plugin", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/nx-plugin", - "hash": "sha512-sg8oOxs3abfNMOpWK8utqy2wIfihLnLAtWxBFoRb/R+Xwjc+vw/ibqGGvZm+jSlk5SQxit52RMMQtl5foI5HQw==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/tao", - "hash": "sha512-cgtUKTRSxDZ94S9IpC27/qYZJ1YttJDET+veKrtRYvwnHFgkq1peyeTTtnM25yJon7PRdm2lYrlIVdPm0vXupw==" - } - }, - "npm:@nrwl/web": { - "type": "npm", - "name": "npm:@nrwl/web", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/web", - "hash": "sha512-htiLKuLgWikZOf+gKzX4tkkcYV+94ZGYeBEHAZ8Agx4dyw7/8u1JStSAvrwZFAzw06KejGJy4NAh2ycCLJMwrA==" - } - }, - "npm:@nrwl/webpack": { - "type": "npm", - "name": "npm:@nrwl/webpack", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/webpack", - "hash": "sha512-cxBh3Aqg9nIR7be3y9pvss2x22Bp0iDmcvpj/L0fc/3PK9DpYK2Y2eDGvswsd5xZvLTu5BhQVji/io73JmmB4w==" - } - }, - "npm:@nrwl/workspace": { - "type": "npm", - "name": "npm:@nrwl/workspace", - "data": { - "version": "17.2.6", - "packageName": "@nrwl/workspace", - "hash": "sha512-ACMnIxblNEAsjFfkpNspENxlm/jMpF9hr3aKioyoFAUmATxO7lJt8VuA43slI1oVgtTfWpOcM0aSRP/07kVW6Q==" - } - }, - "npm:@nx/angular": { - "type": "npm", - "name": "npm:@nx/angular", - "data": { - "version": "17.2.6", - "packageName": "@nx/angular", - "hash": "sha512-e11FcG9SP8gR/nwfhvPnORfOee5zjUFkC1vLLY/JdJRV2jXE5qLtoTVq8lFqU6LjD21FoFCt5EMiceRj3WoEZQ==" - } - }, - "npm:yallist@4.0.0": { - "type": "npm", - "name": "npm:yallist@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yallist@2.1.2": { - "type": "npm", - "name": "npm:yallist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "yallist", - "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:@nx/cypress": { - "type": "npm", - "name": "npm:@nx/cypress", - "data": { - "version": "17.2.6", - "packageName": "@nx/cypress", - "hash": "sha512-C2TSLyV2Nm8zIM8aJJrRkv6RO4iqLRmO+XC0/Z58SF9cD3iF7HSKzGtj2iRshgI8Pac7WgvcZLYyiKQIAdJIUw==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "17.2.6", - "packageName": "@nx/devkit", - "hash": "sha512-a9GPw0KiLhvv2RBLPlWgaVDZRvgww4ANBwv7LuGvk8FNgxF5vkQMM5WyKpvxKJhmh1EZ+T9JsGWAFrK7skW9Bw==" - } - }, - "npm:@nx/devkit@16.5.0": { - "type": "npm", - "name": "npm:@nx/devkit@16.5.0", - "data": { - "version": "16.5.0", - "packageName": "@nx/devkit", - "hash": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==" - } - }, - "npm:@nx/eslint": { - "type": "npm", - "name": "npm:@nx/eslint", - "data": { - "version": "17.2.6", - "packageName": "@nx/eslint", - "hash": "sha512-gDtIf6T3vCf7XO2lWvVulFcNmx2l6kKGZypEpLMGtfdAUai/aaBbNHbbwcsOZiPvWtNo64mGBZX5Qv6aPb9oPg==" - } - }, - "npm:@nx/eslint-plugin": { - "type": "npm", - "name": "npm:@nx/eslint-plugin", - "data": { - "version": "17.2.6", - "packageName": "@nx/eslint-plugin", - "hash": "sha512-P9+G9r6fz0RP/muchPFHyicfA4o80kUD8oRmrJJAjI3KolpRk3Kld7GAbXPkunnGuMcf/nSJxaUkt+QCe5zOhQ==" - } - }, - "npm:@nx/jest": { - "type": "npm", - "name": "npm:@nx/jest", - "data": { - "version": "17.2.6", - "packageName": "@nx/jest", - "hash": "sha512-lWdzwkNfVQPCcr3gb3OrtUX/wjI9Oxm6Q9cKezPydCWtrZnEQii/aRi9/AncCGBf0Rx6hLT0yaiIAvJKlCk9qg==" - } - }, - "npm:@nx/js": { - "type": "npm", - "name": "npm:@nx/js", - "data": { - "version": "17.2.6", - "packageName": "@nx/js", - "hash": "sha512-jjWzEg63C7vBu6Lo890N8gIcEji+8/ggf5My2kCmAnJehqIg8/B0Bq0x9shIxAT7qZgyLxHbC3VWg5ictS6aEw==" - } - }, - "npm:fast-glob@3.2.7": { - "type": "npm", - "name": "npm:fast-glob@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:fast-glob@3.3.2": { - "type": "npm", - "name": "npm:fast-glob@3.3.2", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.1", - "packageName": "fast-glob", - "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" - } - }, - "npm:ora@5.3.0": { - "type": "npm", - "name": "npm:ora@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:source-map@0.6.1": { - "type": "npm", - "name": "npm:source-map@0.6.1", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:source-map-support@0.5.19": { - "type": "npm", - "name": "npm:source-map-support@0.5.19", - "data": { - "version": "0.5.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "17.2.6", - "packageName": "@nx/linter", - "hash": "sha512-TTS3WPZQNVdFgTykdX3jbELcN0IsYpKPv8TGOzqkJbRfvsF2jjZzQggWujg1iXBdWRKdaWYDi8SUi+4wocemIg==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-ezU5u7hkEwI2xzsFSjyr53uNURBvga40LQlpEnS/CbqRifHHhTKisCy+r2+kRhiOwTeR+I+/2D3zPyIyN3aEHQ==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-wUIwbM/7LMxlFkEOlbxR/s2qaRuD69yXc70f2rtxsskwJ4GOF5kfc1jk2YaDs9qswI+FgQVgbeZu8pgF+slY7Q==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-uBKEGqG4txVCpBirRzt1QwuOLzfA0s9dlUP7n5t4qJuaf9OXuVcDXay8g84WT1jx4PPtipyv/wyIFu3r7v8kZw==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-dSDVz2BktaPHMkrJojFCx+V+QFLDF0KzoHorESzZmHZTfumr0xtJ1COWCU+gYmLptc+8OgwCzCPWXHhcDgji/A==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-AD99Kk47Yxn3IJ89aCT1oVpNX1XNECAYay97yhqf2tiBsDv9hC43PppOdjI0dNP5VRBTrr6EsWdhvE0uNJ3RJw==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-MOX/EJyzseEnzbFxY7V6es/xta6WQ0cDDrl6i6qjCRnoRTFFVMsL0Fb4dtVbv7fd75O41P+OBGpG70MYx2SOxw==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-16xTSszGPY25INDUr4pzLXWcO3va1764iVFiHRTuJr5siDymY7zSj+DPKFmewzqF2358Y5m8AtMotY0FqKciYg==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-F/nIq8bcZd2cNuBiQbyJwur7CpeRBCt0qKDF38HQ2l3HhQv+jwk4T6115LMQqwZb9e6kt6BAFsY+6O7I6t3pCw==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-1lAKKKiH7eduzqcPDB03iPz38yNXn3Y4Q/3jULjaRc3EFAplfBsYVwJ9kGjXPZSrpt/AY7w5ATY55/r5B3gQnA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "17.2.6", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-LrJySMWrO5oWMrP4VOWM1hr3c4rtxHGCcRy19VwqvaAPDrnsg0qfPjv4q1C9YyIU8sj+T3oJs1yZdnNntlN8ew==" - } - }, - "npm:@nx/plugin": { - "type": "npm", - "name": "npm:@nx/plugin", - "data": { - "version": "17.2.6", - "packageName": "@nx/plugin", - "hash": "sha512-K9DZhFeqtmRSELwEbrK2zLOHhCf97glBjF2vRN24zb5k7tCAOtpsK7L6TD9Xl5OSx1e9ffi9emRJUjPli6XoRw==" - } - }, - "npm:@nx/web": { - "type": "npm", - "name": "npm:@nx/web", - "data": { - "version": "17.2.6", - "packageName": "@nx/web", - "hash": "sha512-6VkA19bFepNmrIISxXwYMo5nm/uUAPHQKNPfSHqxo9Ef57WS93dDMVRqc7641lRvT31Nc75Uu0NPYGo/B/s87A==" - } - }, - "npm:@nx/webpack": { - "type": "npm", - "name": "npm:@nx/webpack", - "data": { - "version": "17.2.6", - "packageName": "@nx/webpack", - "hash": "sha512-vODJosrOh5ru1Gy7rBp9yXVeeSF32bq1qTjOX3ez1OOXbw5fmJcxaOjOoh44ty0+d9wIB2YIl8lHsmmaCcmOnw==" - } - }, - "npm:array-union@3.0.1": { - "type": "npm", - "name": "npm:array-union@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "array-union", - "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:copy-webpack-plugin@10.2.4": { - "type": "npm", - "name": "npm:copy-webpack-plugin@10.2.4", - "data": { - "version": "10.2.4", - "packageName": "copy-webpack-plugin", - "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "11.0.0", - "packageName": "copy-webpack-plugin", - "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" - } - }, - "npm:cosmiconfig@7.1.0": { - "type": "npm", - "name": "npm:cosmiconfig@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "cosmiconfig", - "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "6.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - } - }, - "npm:cosmiconfig@8.3.6": { - "type": "npm", - "name": "npm:cosmiconfig@8.3.6", - "data": { - "version": "8.3.6", - "packageName": "cosmiconfig", - "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" - } - }, - "npm:glob-parent@6.0.2": { - "type": "npm", - "name": "npm:glob-parent@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:globby@12.2.0": { - "type": "npm", - "name": "npm:globby@12.2.0", - "data": { - "version": "12.2.0", - "packageName": "globby", - "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" - } - }, - "npm:globby@14.0.0": { - "type": "npm", - "name": "npm:globby@14.0.0", - "data": { - "version": "14.0.0", - "packageName": "globby", - "hash": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==" - } - }, - "npm:globby@13.2.2": { - "type": "npm", - "name": "npm:globby@13.2.2", - "data": { - "version": "13.2.2", - "packageName": "globby", - "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:iconv-lite@0.6.3": { - "type": "npm", - "name": "npm:iconv-lite@0.6.3", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:less@4.1.3": { - "type": "npm", - "name": "npm:less@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "less", - "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" - } - }, - "npm:less": { - "type": "npm", - "name": "npm:less", - "data": { - "version": "4.2.0", - "packageName": "less", - "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" - } - }, - "npm:loader-utils@2.0.4": { - "type": "npm", - "name": "npm:loader-utils@2.0.4", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "3.2.1", - "packageName": "loader-utils", - "hash": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" - } - }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir@4.0.0": { - "type": "npm", - "name": "npm:make-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:mini-css-extract-plugin@2.4.7": { - "type": "npm", - "name": "npm:mini-css-extract-plugin@2.4.7", - "data": { - "version": "2.4.7", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.7.6", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==" - } - }, - "npm:parse5@4.0.0": { - "type": "npm", - "name": "npm:parse5@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse5", - "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "npm:postcss-loader@6.2.1": { - "type": "npm", - "name": "npm:postcss-loader@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "postcss-loader", - "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" - } - }, - "npm:postcss-loader": { - "type": "npm", - "name": "npm:postcss-loader", - "data": { - "version": "7.3.3", - "packageName": "postcss-loader", - "hash": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==" - } - }, - "npm:sass-loader@12.6.0": { - "type": "npm", - "name": "npm:sass-loader@12.6.0", - "data": { - "version": "12.6.0", - "packageName": "sass-loader", - "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" - } - }, - "npm:sass-loader": { - "type": "npm", - "name": "npm:sass-loader", - "data": { - "version": "13.3.2", - "packageName": "sass-loader", - "hash": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:source-map-loader@3.0.2": { - "type": "npm", - "name": "npm:source-map-loader@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "source-map-loader", - "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "4.0.1", - "packageName": "source-map-loader", - "hash": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "17.2.6", - "packageName": "@nx/workspace", - "hash": "sha512-mss1RggPBWpggMJ7ok83iHx/PdlevhDqayLvjguRKjPwk0rTBRUuvY78AkKo2RbMOQyywNMt09MNz5FOmfCfqg==" - } - }, - "npm:@octokit/auth-token": { - "type": "npm", - "name": "npm:@octokit/auth-token", - "data": { - "version": "4.0.0", - "packageName": "@octokit/auth-token", - "hash": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==" - } - }, - "npm:@octokit/core": { - "type": "npm", - "name": "npm:@octokit/core", - "data": { - "version": "5.0.2", - "packageName": "@octokit/core", - "hash": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==" - } - }, - "npm:@octokit/endpoint": { - "type": "npm", - "name": "npm:@octokit/endpoint", - "data": { - "version": "9.0.4", - "packageName": "@octokit/endpoint", - "hash": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==" - } - }, - "npm:@octokit/graphql": { - "type": "npm", - "name": "npm:@octokit/graphql", - "data": { - "version": "7.0.2", - "packageName": "@octokit/graphql", - "hash": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==" - } - }, - "npm:@octokit/openapi-types": { - "type": "npm", - "name": "npm:@octokit/openapi-types", - "data": { - "version": "19.1.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" - } - }, - "npm:@octokit/plugin-paginate-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest", - "data": { - "version": "9.1.5", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==" - } - }, - "npm:@octokit/plugin-retry": { - "type": "npm", - "name": "npm:@octokit/plugin-retry", - "data": { - "version": "6.0.1", - "packageName": "@octokit/plugin-retry", - "hash": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==" - } - }, - "npm:@octokit/plugin-throttling": { - "type": "npm", - "name": "npm:@octokit/plugin-throttling", - "data": { - "version": "8.1.3", - "packageName": "@octokit/plugin-throttling", - "hash": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==" - } - }, - "npm:@octokit/request": { - "type": "npm", - "name": "npm:@octokit/request", - "data": { - "version": "8.1.6", - "packageName": "@octokit/request", - "hash": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==" - } - }, - "npm:@octokit/request-error": { - "type": "npm", - "name": "npm:@octokit/request-error", - "data": { - "version": "5.0.1", - "packageName": "@octokit/request-error", - "hash": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==" - } - }, - "npm:@octokit/types": { - "type": "npm", - "name": "npm:@octokit/types", - "data": { - "version": "12.4.0", - "packageName": "@octokit/types", - "hash": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==" - } - }, - "npm:@phenomnomnominal/tsquery": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery", - "data": { - "version": "5.0.1", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@pnpm/config.env-replace": { - "type": "npm", - "name": "npm:@pnpm/config.env-replace", - "data": { - "version": "1.1.0", - "packageName": "@pnpm/config.env-replace", - "hash": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==" - } - }, - "npm:@pnpm/network.ca-file": { - "type": "npm", - "name": "npm:@pnpm/network.ca-file", - "data": { - "version": "1.0.2", - "packageName": "@pnpm/network.ca-file", - "hash": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==" - } - }, - "npm:graceful-fs@4.2.10": { - "type": "npm", - "name": "npm:graceful-fs@4.2.10", - "data": { - "version": "4.2.10", - "packageName": "graceful-fs", - "hash": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:@pnpm/npm-conf": { - "type": "npm", - "name": "npm:@pnpm/npm-conf", - "data": { - "version": "2.2.2", - "packageName": "@pnpm/npm-conf", - "hash": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==" - } - }, - "npm:magic-string@0.30.0": { - "type": "npm", - "name": "npm:magic-string@0.30.0", - "data": { - "version": "0.30.0", - "packageName": "magic-string", - "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.5", - "packageName": "magic-string", - "hash": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==" - } - }, - "npm:@semantic-release/changelog": { - "type": "npm", - "name": "npm:@semantic-release/changelog", - "data": { - "version": "6.0.3", - "packageName": "@semantic-release/changelog", - "hash": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==" - } - }, - "npm:@semantic-release/commit-analyzer": { - "type": "npm", - "name": "npm:@semantic-release/commit-analyzer", - "data": { - "version": "11.1.0", - "packageName": "@semantic-release/commit-analyzer", - "hash": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==" - } - }, - "npm:@semantic-release/error": { - "type": "npm", - "name": "npm:@semantic-release/error", - "data": { - "version": "3.0.0", - "packageName": "@semantic-release/error", - "hash": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==" - } - }, - "npm:@semantic-release/error@4.0.0": { - "type": "npm", - "name": "npm:@semantic-release/error@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "@semantic-release/error", - "hash": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==" - } - }, - "npm:@semantic-release/exec": { - "type": "npm", - "name": "npm:@semantic-release/exec", - "data": { - "version": "6.0.3", - "packageName": "@semantic-release/exec", - "hash": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==" - } - }, - "npm:@semantic-release/git": { - "type": "npm", - "name": "npm:@semantic-release/git", - "data": { - "version": "10.0.1", - "packageName": "@semantic-release/git", - "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" - } - }, - "npm:@semantic-release/github": { - "type": "npm", - "name": "npm:@semantic-release/github", - "data": { - "version": "9.2.5", - "packageName": "@semantic-release/github", - "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" - } - }, - "npm:aggregate-error@5.0.0": { - "type": "npm", - "name": "npm:aggregate-error@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "aggregate-error", - "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:aggregate-error@4.0.1": { - "type": "npm", - "name": "npm:aggregate-error@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "aggregate-error", - "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" - } - }, - "npm:clean-stack@5.2.0": { - "type": "npm", - "name": "npm:clean-stack@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "clean-stack", - "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:clean-stack@4.2.0": { - "type": "npm", - "name": "npm:clean-stack@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "clean-stack", - "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" - } - }, - "npm:indent-string@5.0.0": { - "type": "npm", - "name": "npm:indent-string@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "indent-string", - "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:mime@4.0.1": { - "type": "npm", - "name": "npm:mime@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "mime", - "hash": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==" - } - }, - "npm:mime@2.6.0": { - "type": "npm", - "name": "npm:mime@2.6.0", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@1.4.1": { - "type": "npm", - "name": "npm:mime@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "mime", - "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - } - }, - "npm:mime@3.0.0": { - "type": "npm", - "name": "npm:mime@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "mime", - "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - } - }, - "npm:path-type@5.0.0": { - "type": "npm", - "name": "npm:path-type@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-type", - "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:path-type@3.0.0": { - "type": "npm", - "name": "npm:path-type@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-type", - "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" - } - }, - "npm:url-join@5.0.0": { - "type": "npm", - "name": "npm:url-join@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "url-join", - "hash": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:@semantic-release/npm": { - "type": "npm", - "name": "npm:@semantic-release/npm", - "data": { - "version": "11.0.2", - "packageName": "@semantic-release/npm", - "hash": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==" - } - }, - "npm:execa@8.0.1": { - "type": "npm", - "name": "npm:execa@8.0.1", - "data": { - "version": "8.0.1", - "packageName": "execa", - "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" - } - }, - "npm:execa@0.7.0": { - "type": "npm", - "name": "npm:execa@0.7.0", - "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" - } - }, - "npm:execa@4.1.0": { - "type": "npm", - "name": "npm:execa@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:execa@7.2.0": { - "type": "npm", - "name": "npm:execa@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "execa", - "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" - } - }, - "npm:get-stream@8.0.1": { - "type": "npm", - "name": "npm:get-stream@8.0.1", - "data": { - "version": "8.0.1", - "packageName": "get-stream", - "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" - } - }, - "npm:get-stream@3.0.0": { - "type": "npm", - "name": "npm:get-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" - } - }, - "npm:get-stream@5.2.0": { - "type": "npm", - "name": "npm:get-stream@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - } - }, - "npm:get-stream@6.0.1": { - "type": "npm", - "name": "npm:get-stream@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "7.0.1", - "packageName": "get-stream", - "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" - } - }, - "npm:human-signals@5.0.0": { - "type": "npm", - "name": "npm:human-signals@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "human-signals", - "hash": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" - } - }, - "npm:human-signals@1.1.1": { - "type": "npm", - "name": "npm:human-signals@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:human-signals@4.3.1": { - "type": "npm", - "name": "npm:human-signals@4.3.1", - "data": { - "version": "4.3.1", - "packageName": "human-signals", - "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" - } - }, - "npm:is-stream@3.0.0": { - "type": "npm", - "name": "npm:is-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-stream", - "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" - } - }, - "npm:is-stream@1.1.0": { - "type": "npm", - "name": "npm:is-stream@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:mimic-fn@4.0.0": { - "type": "npm", - "name": "npm:mimic-fn@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "mimic-fn", - "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:normalize-url@8.0.0": { - "type": "npm", - "name": "npm:normalize-url@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "normalize-url", - "hash": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-run-path@5.1.0": { - "type": "npm", - "name": "npm:npm-run-path@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "npm-run-path", - "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:onetime@6.0.0": { - "type": "npm", - "name": "npm:onetime@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "onetime", - "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:parse-json@8.1.0": { - "type": "npm", - "name": "npm:parse-json@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "parse-json", - "hash": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==" - } - }, - "npm:parse-json@4.0.0": { - "type": "npm", - "name": "npm:parse-json@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse-json", - "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:path-key@4.0.0": { - "type": "npm", - "name": "npm:path-key@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-key", - "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" - } - }, - "npm:path-key@2.0.1": { - "type": "npm", - "name": "npm:path-key@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "15700571927724585982" - } - }, - "npm:read-pkg@9.0.1": { - "type": "npm", - "name": "npm:read-pkg@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "read-pkg", - "hash": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==" - } - }, - "npm:read-pkg": { - "type": "npm", - "name": "npm:read-pkg", - "data": { - "version": "3.0.0", - "packageName": "read-pkg", - "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" - } - }, - "npm:signal-exit@4.1.0": { - "type": "npm", - "name": "npm:signal-exit@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:strip-final-newline@3.0.0": { - "type": "npm", - "name": "npm:strip-final-newline@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:@semantic-release/release-notes-generator": { - "type": "npm", - "name": "npm:@semantic-release/release-notes-generator", - "data": { - "version": "12.1.0", - "packageName": "@semantic-release/release-notes-generator", - "hash": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "2.1.0", - "packageName": "@sigstore/bundle", - "hash": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==" - } - }, - "npm:@sigstore/protobuf-specs": { - "type": "npm", - "name": "npm:@sigstore/protobuf-specs", - "data": { - "version": "0.2.1", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==" - } - }, - "npm:@sigstore/sign": { - "type": "npm", - "name": "npm:@sigstore/sign", - "data": { - "version": "2.2.0", - "packageName": "@sigstore/sign", - "hash": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "2.2.0", - "packageName": "@sigstore/tuf", - "hash": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.6.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - } - }, - "npm:@sindresorhus/merge-streams": { - "type": "npm", - "name": "npm:@sindresorhus/merge-streams", - "data": { - "version": "1.0.0", - "packageName": "@sindresorhus/merge-streams", - "hash": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.0", - "packageName": "@sinonjs/commons", - "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.3.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" - } - }, - "npm:@socket.io/component-emitter": { - "type": "npm", - "name": "npm:@socket.io/component-emitter", - "data": { - "version": "3.1.0", - "packageName": "@socket.io/component-emitter", - "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" - } - }, - "npm:@swc-node/core": { - "type": "npm", - "name": "npm:@swc-node/core", - "data": { - "version": "1.10.6", - "packageName": "@swc-node/core", - "hash": "sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==" - } - }, - "npm:@swc-node/register": { - "type": "npm", - "name": "npm:@swc-node/register", - "data": { - "version": "1.6.8", - "packageName": "@swc-node/register", - "hash": "sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==" - } - }, - "npm:@swc-node/sourcemap-support": { - "type": "npm", - "name": "npm:@swc-node/sourcemap-support", - "data": { - "version": "0.3.0", - "packageName": "@swc-node/sourcemap-support", - "hash": "sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==" - } - }, - "npm:@swc/cli": { - "type": "npm", - "name": "npm:@swc/cli", - "data": { - "version": "0.1.63", - "packageName": "@swc/cli", - "hash": "sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==" - } - }, - "npm:@swc/core": { - "type": "npm", - "name": "npm:@swc/core", - "data": { - "version": "1.3.101", - "packageName": "@swc/core", - "hash": "sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==" - } - }, - "npm:@swc/core-darwin-arm64": { - "type": "npm", - "name": "npm:@swc/core-darwin-arm64", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==" - } - }, - "npm:@swc/core-darwin-x64": { - "type": "npm", - "name": "npm:@swc/core-darwin-x64", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-darwin-x64", - "hash": "sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==" - } - }, - "npm:@swc/core-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@swc/core-linux-arm-gnueabihf", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==" - } - }, - "npm:@swc/core-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-gnu", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==" - } - }, - "npm:@swc/core-linux-arm64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-musl", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==" - } - }, - "npm:@swc/core-linux-x64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-gnu", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==" - } - }, - "npm:@swc/core-linux-x64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-musl", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==" - } - }, - "npm:@swc/core-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-arm64-msvc", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==" - } - }, - "npm:@swc/core-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-ia32-msvc", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==" - } - }, - "npm:@swc/core-win32-x64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-x64-msvc", - "data": { - "version": "1.3.101", - "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==" - } - }, - "npm:@swc/counter": { - "type": "npm", - "name": "npm:@swc/counter", - "data": { - "version": "0.1.2", - "packageName": "@swc/counter", - "hash": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==" - } - }, - "npm:@swc/helpers": { - "type": "npm", - "name": "npm:@swc/helpers", - "data": { - "version": "0.5.3", - "packageName": "@swc/helpers", - "hash": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==" - } - }, - "npm:@swc/types": { - "type": "npm", - "name": "npm:@swc/types", - "data": { - "version": "0.1.5", - "packageName": "@swc/types", - "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.6", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" - } - }, - "npm:@tokenizer/token": { - "type": "npm", - "name": "npm:@tokenizer/token", - "data": { - "version": "0.3.0", - "packageName": "@tokenizer/token", - "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@tsconfig/node10": { - "type": "npm", - "name": "npm:@tsconfig/node10", - "data": { - "version": "1.0.9", - "packageName": "@tsconfig/node10", - "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - } - }, - "npm:@tsconfig/node12": { - "type": "npm", - "name": "npm:@tsconfig/node12", - "data": { - "version": "1.0.11", - "packageName": "@tsconfig/node12", - "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - } - }, - "npm:@tsconfig/node14": { - "type": "npm", - "name": "npm:@tsconfig/node14", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node14", - "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - } - }, - "npm:@tsconfig/node16": { - "type": "npm", - "name": "npm:@tsconfig/node16", - "data": { - "version": "1.0.4", - "packageName": "@tsconfig/node16", - "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" - } - }, - "npm:@tufjs/canonical-json": { - "type": "npm", - "name": "npm:@tufjs/canonical-json", - "data": { - "version": "2.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" - } - }, - "npm:@tufjs/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "2.0.0", - "packageName": "@tufjs/models", - "hash": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==" - } - }, - "npm:brace-expansion@2.0.1": { - "type": "npm", - "name": "npm:brace-expansion@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.8", - "packageName": "@types/babel__generator", - "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.4", - "packageName": "@types/babel__traverse", - "hash": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.5", - "packageName": "@types/body-parser", - "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.13", - "packageName": "@types/bonjour", - "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.3", - "packageName": "@types/cacheable-request", - "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.5.4", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/cors": { - "type": "npm", - "name": "npm:@types/cors", - "data": { - "version": "2.8.17", - "packageName": "@types/cors", - "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "8.56.0", - "packageName": "@types/eslint", - "hash": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.7", - "packageName": "@types/eslint-scope", - "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.5", - "packageName": "@types/estree", - "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.21", - "packageName": "@types/express", - "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.17.41", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.9", - "packageName": "@types/graceful-fs", - "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.4", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.4", - "packageName": "@types/http-errors", - "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.14", - "packageName": "@types/http-proxy", - "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" - } - }, - "npm:@types/inquirer": { - "type": "npm", - "name": "npm:@types/inquirer", - "data": { - "version": "9.0.7", - "packageName": "@types/inquirer", - "hash": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.6", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "3.0.3", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.4", - "packageName": "@types/istanbul-reports", - "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.11", - "packageName": "@types/jest", - "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.4", - "packageName": "@types/keyv", - "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.14.202", - "packageName": "@types/lodash", - "hash": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "1.3.5", - "packageName": "@types/mime", - "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.16.9", - "packageName": "@types/node", - "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" - } - }, - "npm:@types/node@16.18.68": { - "type": "npm", - "name": "npm:@types/node@16.18.68", - "data": { - "version": "16.18.68", - "packageName": "@types/node", - "hash": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==" - } - }, - "npm:@types/node-forge": { - "type": "npm", - "name": "npm:@types/node-forge", - "data": { - "version": "1.3.10", - "packageName": "@types/node-forge", - "hash": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==" - } - }, - "npm:@types/normalize-package-data": { - "type": "npm", - "name": "npm:@types/normalize-package-data", - "data": { - "version": "2.4.4", - "packageName": "@types/normalize-package-data", - "hash": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==" - } - }, - "npm:@types/parse-json": { - "type": "npm", - "name": "npm:@types/parse-json", - "data": { - "version": "4.0.2", - "packageName": "@types/parse-json", - "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.10", - "packageName": "@types/qs", - "hash": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.3", - "packageName": "@types/responselike", - "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "7.5.6", - "packageName": "@types/semver", - "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "0.17.4", - "packageName": "@types/send", - "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.4", - "packageName": "@types/serve-index", - "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.5", - "packageName": "@types/serve-static", - "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.1", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" - } - }, - "npm:@types/sizzle": { - "type": "npm", - "name": "npm:@types/sizzle", - "data": { - "version": "2.3.8", - "packageName": "@types/sizzle", - "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.36", - "packageName": "@types/sockjs", - "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/through": { - "type": "npm", - "name": "npm:@types/through", - "data": { - "version": "0.0.33", - "packageName": "@types/through", - "hash": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.5", - "packageName": "@types/tough-cookie", - "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.10", - "packageName": "@types/ws", - "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.32", - "packageName": "@types/yargs", - "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "21.0.3", - "packageName": "@types/yargs-parser", - "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.10.3", - "packageName": "@types/yauzl", - "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==" - } - }, - "npm:@typescript-eslint/type-utils@6.15.0": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils@6.15.0", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==" - } - }, - "npm:@typescript-eslint/utils@6.15.0": { - "type": "npm", - "name": "npm:@typescript-eslint/utils@6.15.0", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==" - } - }, - "npm:@typescript-eslint/scope-manager@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==" - } - }, - "npm:@typescript-eslint/types@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/types@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==" - } - }, - "npm:@typescript-eslint/typescript-estree@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==" - } - }, - "npm:@typescript-eslint/visitor-keys@6.13.1": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@6.13.1", - "data": { - "version": "6.13.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "6.15.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==" - } - }, - "npm:@verdaccio/commons-api": { - "type": "npm", - "name": "npm:@verdaccio/commons-api", - "data": { - "version": "10.2.0", - "packageName": "@verdaccio/commons-api", - "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" - } - }, - "npm:@verdaccio/config": { - "type": "npm", - "name": "npm:@verdaccio/config", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/config", - "hash": "sha512-bMQEL+ZGzoH8WIHEoC1HZon35QIWjY3KdYGyKc4eUKr6bUyQSRksmPQ40NQVgcUY0vlfkJMB+TCvgVXaf8kfBw==" - } - }, - "npm:@verdaccio/core": { - "type": "npm", - "name": "npm:@verdaccio/core", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/core", - "hash": "sha512-wbgFq7d2m/ijmusD6wPVxm6aCxvSLNcP/XagrNKahEbdcgMcDv+6Dm6ZBaKcVgtIMv++aZkc3F3mV4Scj3snSQ==" - } - }, - "npm:@verdaccio/file-locking": { - "type": "npm", - "name": "npm:@verdaccio/file-locking", - "data": { - "version": "10.3.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" - } - }, - "npm:@verdaccio/file-locking@12.0.0-next.1": { - "type": "npm", - "name": "npm:@verdaccio/file-locking@12.0.0-next.1", - "data": { - "version": "12.0.0-next.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" - } - }, - "npm:@verdaccio/local-storage": { - "type": "npm", - "name": "npm:@verdaccio/local-storage", - "data": { - "version": "10.3.3", - "packageName": "@verdaccio/local-storage", - "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" - } - }, - "npm:async@3.2.4": { - "type": "npm", - "name": "npm:async@3.2.4", - "data": { - "version": "3.2.4", - "packageName": "async", - "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.5", - "packageName": "async", - "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - } - }, - "npm:async@2.6.4": { - "type": "npm", - "name": "npm:async@2.6.4", - "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:@verdaccio/logger-7": { - "type": "npm", - "name": "npm:@verdaccio/logger-7", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/logger-7", - "hash": "sha512-kx+/vY9THFHXTxsQT/McbqG4psu6CmlkjnLvcrk0Gbyki3Uaquo79K/3rPokHWnS7Ur45gxYIukIAzVfcA0mKA==" - } - }, - "npm:@verdaccio/logger-commons": { - "type": "npm", - "name": "npm:@verdaccio/logger-commons", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/logger-commons", - "hash": "sha512-l7T3u8eW84UrQQHAOjqUw12t9q2IRleCnniQ9wV/KpBQNwuE3BPPy6t9/64QW9eXOzldJ8G3w7ttPCsK+cq8uw==" - } - }, - "npm:@verdaccio/logger-prettify": { - "type": "npm", - "name": "npm:@verdaccio/logger-prettify", - "data": { - "version": "7.0.0-next.1", - "packageName": "@verdaccio/logger-prettify", - "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" - } - }, - "npm:dayjs@1.11.7": { - "type": "npm", - "name": "npm:dayjs@1.11.7", - "data": { - "version": "1.11.7", - "packageName": "dayjs", - "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.10", - "packageName": "dayjs", - "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - } - }, - "npm:@verdaccio/middleware": { - "type": "npm", - "name": "npm:@verdaccio/middleware", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/middleware", - "hash": "sha512-EjRif42rbikn5WUB6+an9IX6zoAXiIG5jKOmzdOx6vIZ3iYg0HmgEFW5do2gVchFiox1+M2WMRTS55J0xG+dCA==" - } - }, - "npm:@verdaccio/search": { - "type": "npm", - "name": "npm:@verdaccio/search", - "data": { - "version": "7.0.0-next.2", - "packageName": "@verdaccio/search", - "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" - } - }, - "npm:@verdaccio/signature": { - "type": "npm", - "name": "npm:@verdaccio/signature", - "data": { - "version": "7.0.0-next.2", - "packageName": "@verdaccio/signature", - "hash": "sha512-rxoSmdKrSJZEoSsWKjgytpqf2Bltbs6sR5Hflu8xXfPZPmHpXkGgAdb8tuSlnmjzo6hXoKfje8b9BJoP2bDwbA==" - } - }, - "npm:@verdaccio/streams": { - "type": "npm", - "name": "npm:@verdaccio/streams", - "data": { - "version": "10.2.1", - "packageName": "@verdaccio/streams", - "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" - } - }, - "npm:@verdaccio/tarball": { - "type": "npm", - "name": "npm:@verdaccio/tarball", - "data": { - "version": "12.0.0-next.4", - "packageName": "@verdaccio/tarball", - "hash": "sha512-3GuyDaoshKOYdv+zTEKiyUO/0h3xGvr+RCJBkvMkPwIXfbkWDPyk00lxSXZDCqwFePZgcDaHOqS7krz2rMdsoQ==" - } - }, - "npm:@verdaccio/ui-theme": { - "type": "npm", - "name": "npm:@verdaccio/ui-theme", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/ui-theme", - "hash": "sha512-zvkAMyBmD0txGEpocdGQ9yRCvPYZEb0lH6lh0AAOcKwXg5SaY9yW/n2Rx3k6873xebA4bEMldWB3j+Uv8Jciqw==" - } - }, - "npm:@verdaccio/url": { - "type": "npm", - "name": "npm:@verdaccio/url", - "data": { - "version": "12.0.0-next.4", - "packageName": "@verdaccio/url", - "hash": "sha512-0SszVxX6VGgbrwPWU2WzvEbTUEZP4j6Krulb7Ju6hCVrV6A1/W/CGrztnRNcdE/avSZWZvvDpQ65NBRFE7pjtQ==" - } - }, - "npm:validator@13.9.0": { - "type": "npm", - "name": "npm:validator@13.9.0", - "data": { - "version": "13.9.0", - "packageName": "validator", - "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.11.0", - "packageName": "validator", - "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" - } - }, - "npm:@verdaccio/utils": { - "type": "npm", - "name": "npm:@verdaccio/utils", - "data": { - "version": "7.0.0-next.4", - "packageName": "@verdaccio/utils", - "hash": "sha512-hgGUkmxBl03TvXQSvgHeI9BU6JrCW/QQu7O3+9f1etvCz2EWQ81JvCv8qsY3bHCT/ggYapvr/8xcjtUtJ1/KgA==" - } - }, - "npm:@vitejs/plugin-basic-ssl": { - "type": "npm", - "name": "npm:@vitejs/plugin-basic-ssl", - "data": { - "version": "1.0.1", - "packageName": "@vitejs/plugin-basic-ssl", - "hash": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.6", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "2.0.0", - "packageName": "abbrev", - "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.11.2", - "packageName": "acorn", - "hash": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-assertions": { - "type": "npm", - "name": "npm:acorn-import-assertions", - "data": { - "version": "1.9.0", - "packageName": "acorn-import-assertions", - "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.1", - "packageName": "acorn-walk", - "hash": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==" - } - }, - "npm:address": { - "type": "npm", - "name": "npm:address", - "data": { - "version": "1.2.2", - "packageName": "address", - "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" - } - }, - "npm:adjust-sourcemap-loader": { - "type": "npm", - "name": "npm:adjust-sourcemap-loader", - "data": { - "version": "4.0.0", - "packageName": "adjust-sourcemap-loader", - "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "7.1.0", - "packageName": "agent-base", - "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" - } - }, - "npm:agent-base@6.0.2": { - "type": "npm", - "name": "npm:agent-base@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:ajv-formats": { - "type": "npm", - "name": "npm:ajv-formats", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv-keywords@3.5.2": { - "type": "npm", - "name": "npm:ajv-keywords@3.5.2", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "4.1.3", - "packageName": "ansi-colors", - "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.2", - "packageName": "ansi-escapes", - "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" - } - }, - "npm:ansi-escapes@5.0.0": { - "type": "npm", - "name": "npm:ansi-escapes@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "ansi-escapes", - "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" - } - }, - "npm:ansi-escapes@6.2.0": { - "type": "npm", - "name": "npm:ansi-escapes@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "ansi-escapes", - "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:ansi-red": { - "type": "npm", - "name": "npm:ansi-red", - "data": { - "version": "0.1.1", - "packageName": "ansi-red", - "hash": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==" - } - }, - "npm:ansi-wrap": { - "type": "npm", - "name": "npm:ansi-wrap", - "data": { - "version": "0.1.0", - "packageName": "ansi-wrap", - "hash": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==" - } - }, - "npm:ansicolors": { - "type": "npm", - "name": "npm:ansicolors", - "data": { - "version": "0.3.2", - "packageName": "ansicolors", - "hash": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:picomatch@2.3.1": { - "type": "npm", - "name": "npm:picomatch@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "3.0.1", - "packageName": "picomatch", - "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" - } - }, - "npm:apache-md5": { - "type": "npm", - "name": "npm:apache-md5", - "data": { - "version": "1.1.8", - "packageName": "apache-md5", - "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" - } - }, - "npm:arch": { - "type": "npm", - "name": "npm:arch", - "data": { - "version": "2.2.0", - "packageName": "arch", - "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:argv-formatter": { - "type": "npm", - "name": "npm:argv-formatter", - "data": { - "version": "1.0.0", - "packageName": "argv-formatter", - "hash": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==" - } - }, - "npm:aria-query": { - "type": "npm", - "name": "npm:aria-query", - "data": { - "version": "5.3.0", - "packageName": "aria-query", - "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.0", - "packageName": "array-buffer-byte-length", - "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - } - }, - "npm:array-flatten@2.1.2": { - "type": "npm", - "name": "npm:array-flatten@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "array-flatten", - "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - } - }, - "npm:array-ify": { - "type": "npm", - "name": "npm:array-ify", - "data": { - "version": "1.0.0", - "packageName": "array-ify", - "hash": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.2", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" - } - }, - "npm:asn1": { - "type": "npm", - "name": "npm:asn1", - "data": { - "version": "0.2.6", - "packageName": "asn1", - "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-each-series": { - "type": "npm", - "name": "npm:async-each-series", - "data": { - "version": "0.1.1", - "packageName": "async-each-series", - "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:atomic-sleep": { - "type": "npm", - "name": "npm:atomic-sleep", - "data": { - "version": "1.0.0", - "packageName": "atomic-sleep", - "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - } - }, - "npm:autolinker": { - "type": "npm", - "name": "npm:autolinker", - "data": { - "version": "0.28.1", - "packageName": "autolinker", - "hash": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.4.16", - "packageName": "autoprefixer", - "hash": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.5", - "packageName": "available-typed-arrays", - "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - } - }, - "npm:aws-sign2": { - "type": "npm", - "name": "npm:aws-sign2", - "data": { - "version": "0.7.0", - "packageName": "aws-sign2", - "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - } - }, - "npm:aws4": { - "type": "npm", - "name": "npm:aws4", - "data": { - "version": "1.12.0", - "packageName": "aws4", - "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "0.21.4", - "packageName": "axios", - "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" - } - }, - "npm:axios@1.6.2": { - "type": "npm", - "name": "npm:axios@1.6.2", - "data": { - "version": "1.6.2", - "packageName": "axios", - "hash": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==" - } - }, - "npm:axobject-query": { - "type": "npm", - "name": "npm:axobject-query", - "data": { - "version": "4.0.0", - "packageName": "axobject-query", - "hash": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "9.1.3", - "packageName": "babel-loader", - "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" - } - }, - "npm:find-cache-dir@4.0.0": { - "type": "npm", - "name": "npm:find-cache-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "find-cache-dir", - "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-up@5.0.0": { - "type": "npm", - "name": "npm:find-up@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:find-up@2.1.0": { - "type": "npm", - "name": "npm:find-up@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-up", - "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" - } - }, - "npm:locate-path@7.2.0": { - "type": "npm", - "name": "npm:locate-path@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "locate-path", - "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" - } - }, - "npm:locate-path@6.0.0": { - "type": "npm", - "name": "npm:locate-path@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:locate-path@2.0.0": { - "type": "npm", - "name": "npm:locate-path@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "locate-path", - "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@1.3.0": { - "type": "npm", - "name": "npm:p-limit@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "p-limit", - "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-locate@5.0.0": { - "type": "npm", - "name": "npm:p-locate@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:p-locate@2.0.0": { - "type": "npm", - "name": "npm:p-locate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "p-locate", - "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, - "npm:pkg-dir@7.0.0": { - "type": "npm", - "name": "npm:pkg-dir@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "pkg-dir", - "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:babel-plugin-const-enum": { - "type": "npm", - "name": "npm:babel-plugin-const-enum", - "data": { - "version": "1.2.0", - "packageName": "babel-plugin-const-enum", - "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:istanbul-lib-instrument@5.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "6.0.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-macros": { - "type": "npm", - "name": "npm:babel-plugin-macros", - "data": { - "version": "2.8.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" - } - }, - "npm:babel-plugin-macros@3.1.0": { - "type": "npm", - "name": "npm:babel-plugin-macros@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.7", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.8.7", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.5.4", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==" - } - }, - "npm:babel-plugin-transform-typescript-metadata": { - "type": "npm", - "name": "npm:babel-plugin-transform-typescript-metadata", - "data": { - "version": "0.3.2", - "packageName": "babel-plugin-transform-typescript-metadata", - "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:base64id": { - "type": "npm", - "name": "npm:base64id", - "data": { - "version": "2.0.0", - "packageName": "base64id", - "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" - } - }, - "npm:basic-auth": { - "type": "npm", - "name": "npm:basic-auth", - "data": { - "version": "2.0.1", - "packageName": "basic-auth", - "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "12153499668482607410" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - } - }, - "npm:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" - } - }, - "npm:bcryptjs": { - "type": "npm", - "name": "npm:bcryptjs", - "data": { - "version": "2.4.3", - "packageName": "bcryptjs", - "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" - } - }, - "npm:before-after-hook": { - "type": "npm", - "name": "npm:before-after-hook", - "data": { - "version": "2.2.3", - "packageName": "before-after-hook", - "hash": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:bin-check": { - "type": "npm", - "name": "npm:bin-check", - "data": { - "version": "4.1.0", - "packageName": "bin-check", - "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" - } - }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "341129833107810678" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "3348982168836855660" - } - }, - "npm:bin-version": { - "type": "npm", - "name": "npm:bin-version", - "data": { - "version": "6.0.0", - "packageName": "bin-version", - "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" - } - }, - "npm:bin-version-check": { - "type": "npm", - "name": "npm:bin-version-check", - "data": { - "version": "5.1.0", - "packageName": "bin-version-check", - "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.2.0", - "packageName": "binary-extensions", - "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:readable-stream@3.6.2": { - "type": "npm", - "name": "npm:readable-stream@3.6.2", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readable-stream@4.4.2": { - "type": "npm", - "name": "npm:readable-stream@4.4.2", - "data": { - "version": "4.4.2", - "packageName": "readable-stream", - "hash": "41880603492280987" - } - }, - "npm:readable-stream@4.5.1": { - "type": "npm", - "name": "npm:readable-stream@4.5.1", - "data": { - "version": "4.5.1", - "packageName": "readable-stream", - "hash": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:blob-util": { - "type": "npm", - "name": "npm:blob-util", - "data": { - "version": "2.0.2", - "packageName": "blob-util", - "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.7.2", - "packageName": "bluebird", - "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.20.2", - "packageName": "body-parser", - "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" - } - }, - "npm:body-parser@1.20.1": { - "type": "npm", - "name": "npm:body-parser@1.20.1", - "data": { - "version": "1.20.1", - "packageName": "body-parser", - "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - }, - "npm:ms@2.1.3": { - "type": "npm", - "name": "npm:ms@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:on-finished@2.4.1": { - "type": "npm", - "name": "npm:on-finished@2.4.1", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:qs@6.11.0": { - "type": "npm", - "name": "npm:qs@6.11.0", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.10.4", - "packageName": "qs", - "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" - } - }, - "npm:bonjour-service": { - "type": "npm", - "name": "npm:bonjour-service", - "data": { - "version": "1.1.1", - "packageName": "bonjour-service", - "hash": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:bottleneck": { - "type": "npm", - "name": "npm:bottleneck", - "data": { - "version": "2.19.5", - "packageName": "bottleneck", - "hash": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:browser-sync": { - "type": "npm", - "name": "npm:browser-sync", - "data": { - "version": "2.29.3", - "packageName": "browser-sync", - "hash": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==" - } - }, - "npm:browser-sync-client": { - "type": "npm", - "name": "npm:browser-sync-client", - "data": { - "version": "2.29.3", - "packageName": "browser-sync-client", - "hash": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==" - } - }, - "npm:browser-sync-ui": { - "type": "npm", - "name": "npm:browser-sync-ui", - "data": { - "version": "2.29.3", - "packageName": "browser-sync-ui", - "hash": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==" - } - }, - "npm:fs-extra@3.0.1": { - "type": "npm", - "name": "npm:fs-extra@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "fs-extra", - "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:jsonfile@3.0.1": { - "type": "npm", - "name": "npm:jsonfile@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "jsonfile", - "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonfile@5.0.0": { - "type": "npm", - "name": "npm:jsonfile@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "jsonfile", - "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.1", - "packageName": "universalify", - "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.22.2", - "packageName": "browserslist", - "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" - } - }, - "npm:bs-logger": { - "type": "npm", - "name": "npm:bs-logger", - "data": { - "version": "0.2.6", - "packageName": "bs-logger", - "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" - } - }, - "npm:bs-recipes": { - "type": "npm", - "name": "npm:bs-recipes", - "data": { - "version": "1.3.4", - "packageName": "bs-recipes", - "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.1", - "packageName": "bser", - "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" - } - }, - "npm:btoa": { - "type": "npm", - "name": "npm:btoa", - "data": { - "version": "1.2.1", - "packageName": "btoa", - "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffer@6.0.3": { - "type": "npm", - "name": "npm:buffer@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "buffer", - "hash": "9693504204722543652" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - } - }, - "npm:buffer-equal-constant-time": { - "type": "npm", - "name": "npm:buffer-equal-constant-time", - "data": { - "version": "1.0.1", - "packageName": "buffer-equal-constant-time", - "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.0.1", - "packageName": "builtins", - "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "18.0.1", - "packageName": "cacache", - "hash": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob@7.1.4": { - "type": "npm", - "name": "npm:glob@7.1.4", - "data": { - "version": "7.1.4", - "packageName": "glob", - "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.4.0", - "packageName": "cachedir", - "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.5", - "packageName": "call-bind", - "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001570", - "packageName": "caniuse-lite", - "hash": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==" - } - }, - "npm:cardinal": { - "type": "npm", - "name": "npm:cardinal", - "data": { - "version": "2.1.1", - "packageName": "cardinal", - "hash": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "0.7.0", - "packageName": "chardet", - "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - } - }, - "npm:check-more-types": { - "type": "npm", - "name": "npm:check-more-types", - "data": { - "version": "2.24.0", - "packageName": "check-more-types", - "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.5.3", - "packageName": "chokidar", - "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.3", - "packageName": "chrome-trace-event", - "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:ci-info@4.0.0": { - "type": "npm", - "name": "npm:ci-info@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "ci-info", - "hash": "8652404921969079036" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.3", - "packageName": "cjs-module-lexer", - "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-cursor@4.0.0": { - "type": "npm", - "name": "npm:cli-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-cursor", - "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:cli-table3": { - "type": "npm", - "name": "npm:cli-table3", - "data": { - "version": "0.6.3", - "packageName": "cli-table3", - "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "2.1.0", - "packageName": "cli-truncate", - "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" - } - }, - "npm:cli-truncate@3.1.0": { - "type": "npm", - "name": "npm:cli-truncate@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "cli-truncate", - "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" - } - }, - "npm:clipanion": { - "type": "npm", - "name": "npm:clipanion", - "data": { - "version": "3.2.1", - "packageName": "clipanion", - "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:cliui@7.0.4": { - "type": "npm", - "name": "npm:cliui@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "cliui", - "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:kind-of@6.0.3": { - "type": "npm", - "name": "npm:kind-of@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "3.2.2", - "packageName": "kind-of", - "hash": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.3", - "packageName": "clone-response", - "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "npm:coffee-script": { - "type": "npm", - "name": "npm:coffee-script", - "data": { - "version": "1.12.7", - "packageName": "coffee-script", - "hash": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.2", - "packageName": "collect-v8-coverage", - "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:columnify": { - "type": "npm", - "name": "npm:columnify", - "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:commander@6.2.1": { - "type": "npm", - "name": "npm:commander@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:commander@11.0.0": { - "type": "npm", - "name": "npm:commander@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "commander", - "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" - } - }, - "npm:commander@2.20.3": { - "type": "npm", - "name": "npm:commander@2.20.3", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:common-tags": { - "type": "npm", - "name": "npm:common-tags", - "data": { - "version": "1.8.2", - "packageName": "common-tags", - "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - } - }, - "npm:compare-func": { - "type": "npm", - "name": "npm:compare-func", - "data": { - "version": "2.0.0", - "packageName": "compare-func", - "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.18", - "packageName": "compressible", - "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:concat-stream": { - "type": "npm", - "name": "npm:concat-stream", - "data": { - "version": "1.6.2", - "packageName": "concat-stream", - "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" - } - }, - "npm:concat-with-sourcemaps": { - "type": "npm", - "name": "npm:concat-with-sourcemaps", - "data": { - "version": "1.1.0", - "packageName": "concat-with-sourcemaps", - "hash": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==" - } - }, - "npm:config-chain": { - "type": "npm", - "name": "npm:config-chain", - "data": { - "version": "1.1.13", - "packageName": "config-chain", - "hash": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==" - } - }, - "npm:ini@1.3.8": { - "type": "npm", - "name": "npm:ini@1.3.8", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:ini@2.0.0": { - "type": "npm", - "name": "npm:ini@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ini", - "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "4.1.1", - "packageName": "ini", - "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" - } - }, - "npm:confusing-browser-globals": { - "type": "npm", - "name": "npm:confusing-browser-globals", - "data": { - "version": "1.0.11", - "packageName": "confusing-browser-globals", - "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.6.6", - "packageName": "connect", - "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "1.6.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - } - }, - "npm:connect-history-api-fallback@2.0.0": { - "type": "npm", - "name": "npm:connect-history-api-fallback@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - } - }, - "npm:connect-pause": { - "type": "npm", - "name": "npm:connect-pause", - "data": { - "version": "0.1.1", - "packageName": "connect-pause", - "hash": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:conventional-changelog-angular": { - "type": "npm", - "name": "npm:conventional-changelog-angular", - "data": { - "version": "7.0.0", - "packageName": "conventional-changelog-angular", - "hash": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==" - } - }, - "npm:conventional-changelog-conventionalcommits": { - "type": "npm", - "name": "npm:conventional-changelog-conventionalcommits", - "data": { - "version": "7.0.2", - "packageName": "conventional-changelog-conventionalcommits", - "hash": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==" - } - }, - "npm:conventional-changelog-writer": { - "type": "npm", - "name": "npm:conventional-changelog-writer", - "data": { - "version": "7.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==" - } - }, - "npm:conventional-commits-filter": { - "type": "npm", - "name": "npm:conventional-commits-filter", - "data": { - "version": "4.0.0", - "packageName": "conventional-commits-filter", - "hash": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==" - } - }, - "npm:conventional-commits-parser": { - "type": "npm", - "name": "npm:conventional-commits-parser", - "data": { - "version": "5.0.0", - "packageName": "conventional-commits-parser", - "hash": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.5.0", - "packageName": "cookie", - "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - } - }, - "npm:cookie@0.4.2": { - "type": "npm", - "name": "npm:cookie@0.4.2", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - } - }, - "npm:cookies": { - "type": "npm", - "name": "npm:cookies", - "data": { - "version": "0.8.0", - "packageName": "cookies", - "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" - } - }, - "npm:copy-anything": { - "type": "npm", - "name": "npm:copy-anything", - "data": { - "version": "2.0.6", - "packageName": "copy-anything", - "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" - } - }, - "npm:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.30.2", - "packageName": "core-js", - "hash": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.34.0", - "packageName": "core-js-compat", - "hash": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.3", - "packageName": "core-util-is", - "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - } - }, - "npm:core-util-is@1.0.2": { - "type": "npm", - "name": "npm:core-util-is@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "core-util-is", - "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - } - }, - "npm:cors": { - "type": "npm", - "name": "npm:cors", - "data": { - "version": "2.8.5", - "packageName": "cors", - "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" - } - }, - "npm:corser": { - "type": "npm", - "name": "npm:corser", - "data": { - "version": "2.0.1", - "packageName": "corser", - "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:create-require": { - "type": "npm", - "name": "npm:create-require", - "data": { - "version": "1.1.1", - "packageName": "create-require", - "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - } - }, - "npm:critters": { - "type": "npm", - "name": "npm:critters", - "data": { - "version": "0.0.20", - "packageName": "critters", - "hash": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==" - } - }, - "npm:crypto-random-string": { - "type": "npm", - "name": "npm:crypto-random-string", - "data": { - "version": "4.0.0", - "packageName": "crypto-random-string", - "hash": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "7.1.1", - "packageName": "css-declaration-sorter", - "hash": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "6.8.1", - "packageName": "css-loader", - "hash": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==" - } - }, - "npm:css-minimizer-webpack-plugin": { - "type": "npm", - "name": "npm:css-minimizer-webpack-plugin", - "data": { - "version": "5.0.1", - "packageName": "css-minimizer-webpack-plugin", - "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "5.1.0", - "packageName": "css-select", - "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "2.3.1", - "packageName": "css-tree", - "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" - } - }, - "npm:css-tree@2.2.1": { - "type": "npm", - "name": "npm:css-tree@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "css-tree", - "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.1.0", - "packageName": "css-what", - "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano": { - "type": "npm", - "name": "npm:cssnano", - "data": { - "version": "6.0.2", - "packageName": "cssnano", - "hash": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "6.0.2", - "packageName": "cssnano-preset-default", - "hash": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "4.0.1", - "packageName": "cssnano-utils", - "hash": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==" - } - }, - "npm:csso": { - "type": "npm", - "name": "npm:csso", - "data": { - "version": "5.0.5", - "packageName": "csso", - "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" - } - }, - "npm:mdn-data@2.0.28": { - "type": "npm", - "name": "npm:mdn-data@2.0.28", - "data": { - "version": "2.0.28", - "packageName": "mdn-data", - "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.30", - "packageName": "mdn-data", - "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:cypress": { - "type": "npm", - "name": "npm:cypress", - "data": { - "version": "12.17.4", - "packageName": "cypress", - "hash": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==" - } - }, - "npm:dashdash": { - "type": "npm", - "name": "npm:dashdash", - "data": { - "version": "1.14.1", - "packageName": "dashdash", - "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:mimic-response@3.1.0": { - "type": "npm", - "name": "npm:mimic-response@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.3.1", - "packageName": "deepmerge", - "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.1", - "packageName": "define-data-property", - "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.2.1", - "packageName": "define-properties", - "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:depd@1.1.2": { - "type": "npm", - "name": "npm:depd@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - } - }, - "npm:deprecation": { - "type": "npm", - "name": "npm:deprecation", - "data": { - "version": "2.3.1", - "packageName": "deprecation", - "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - } - }, - "npm:dequal": { - "type": "npm", - "name": "npm:dequal", - "data": { - "version": "2.0.3", - "packageName": "dequal", - "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.2.0", - "packageName": "destroy", - "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - } - }, - "npm:destroy@1.0.4": { - "type": "npm", - "name": "npm:destroy@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "destroy", - "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.1.0", - "packageName": "detect-node", - "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - } - }, - "npm:detect-port": { - "type": "npm", - "name": "npm:detect-port", - "data": { - "version": "1.5.1", - "packageName": "detect-port", - "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" - } - }, - "npm:dev-ip": { - "type": "npm", - "name": "npm:dev-ip", - "data": { - "version": "1.0.1", - "packageName": "dev-ip", - "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" - } - }, - "npm:diacritics-map": { - "type": "npm", - "name": "npm:diacritics-map", - "data": { - "version": "0.1.0", - "packageName": "diacritics-map", - "hash": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:diff@5.1.0": { - "type": "npm", - "name": "npm:diff@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "diff", - "hash": "14595041656651737167" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:dns-equal": { - "type": "npm", - "name": "npm:dns-equal", - "data": { - "version": "1.0.0", - "packageName": "dns-equal", - "hash": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "5.6.1", - "packageName": "dns-packet", - "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "2.0.0", - "packageName": "dom-serializer", - "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "5.0.3", - "packageName": "domhandler", - "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "3.1.0", - "packageName": "domutils", - "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - } - }, - "npm:dot-prop": { - "type": "npm", - "name": "npm:dot-prop", - "data": { - "version": "5.3.0", - "packageName": "dot-prop", - "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "16.3.1", - "packageName": "dotenv", - "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "npm:duplexer2": { - "type": "npm", - "name": "npm:duplexer2", - "data": { - "version": "0.1.4", - "packageName": "duplexer2", - "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" - } - }, - "npm:duplexify": { - "type": "npm", - "name": "npm:duplexify", - "data": { - "version": "4.1.2", - "packageName": "duplexify", - "hash": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:easy-extender": { - "type": "npm", - "name": "npm:easy-extender", - "data": { - "version": "2.3.4", - "packageName": "easy-extender", - "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" - } - }, - "npm:eazy-logger": { - "type": "npm", - "name": "npm:eazy-logger", - "data": { - "version": "4.0.1", - "packageName": "eazy-logger", - "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" - } - }, - "npm:ecc-jsbn": { - "type": "npm", - "name": "npm:ecc-jsbn", - "data": { - "version": "0.1.2", - "packageName": "ecc-jsbn", - "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" - } - }, - "npm:ecdsa-sig-formatter": { - "type": "npm", - "name": "npm:ecdsa-sig-formatter", - "data": { - "version": "1.0.11", - "packageName": "ecdsa-sig-formatter", - "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.9", - "packageName": "ejs", - "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.4.615", - "packageName": "electron-to-chromium", - "hash": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emojilib": { - "type": "npm", - "name": "npm:emojilib", - "data": { - "version": "2.4.0", - "packageName": "emojilib", - "hash": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:engine.io": { - "type": "npm", - "name": "npm:engine.io", - "data": { - "version": "6.5.4", - "packageName": "engine.io", - "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" - } - }, - "npm:engine.io-client": { - "type": "npm", - "name": "npm:engine.io-client", - "data": { - "version": "6.5.3", - "packageName": "engine.io-client", - "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" - } - }, - "npm:ws@8.11.0": { - "type": "npm", - "name": "npm:ws@8.11.0", - "data": { - "version": "8.11.0", - "packageName": "ws", - "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.15.1", - "packageName": "ws", - "hash": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==" - } - }, - "npm:engine.io-parser": { - "type": "npm", - "name": "npm:engine.io-parser", - "data": { - "version": "5.2.1", - "packageName": "engine.io-parser", - "hash": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.15.0", - "packageName": "enhanced-resolve", - "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-ci": { - "type": "npm", - "name": "npm:env-ci", - "data": { - "version": "10.0.0", - "packageName": "env-ci", - "hash": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.1", - "packageName": "env-paths", - "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.11.0", - "packageName": "envinfo", - "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:errno": { - "type": "npm", - "name": "npm:errno", - "data": { - "version": "0.1.8", - "packageName": "errno", - "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:errorhandler": { - "type": "npm", - "name": "npm:errorhandler", - "data": { - "version": "1.5.1", - "packageName": "errorhandler", - "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.22.3", - "packageName": "es-abstract", - "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "es-module-lexer", - "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.0.2", - "packageName": "es-set-tostringtag", - "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.19.5", - "packageName": "esbuild", - "hash": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==" - } - }, - "npm:esbuild@0.18.20": { - "type": "npm", - "name": "npm:esbuild@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "esbuild", - "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" - } - }, - "npm:esbuild-wasm": { - "type": "npm", - "name": "npm:esbuild-wasm", - "data": { - "version": "0.19.5", - "packageName": "esbuild-wasm", - "hash": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.1", - "packageName": "escalade", - "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "8.48.0", - "packageName": "eslint", - "hash": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "9.1.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==" - } - }, - "npm:eslint-plugin-cypress": { - "type": "npm", - "name": "npm:eslint-plugin-cypress", - "data": { - "version": "2.15.1", - "packageName": "eslint-plugin-cypress", - "hash": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "7.2.2", - "packageName": "eslint-scope", - "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" - } - }, - "npm:eslint-scope@5.1.1": { - "type": "npm", - "name": "npm:eslint-scope@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter-asyncresource": { - "type": "npm", - "name": "npm:eventemitter-asyncresource", - "data": { - "version": "1.0.0", - "packageName": "eventemitter-asyncresource", - "hash": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==" - } - }, - "npm:eventemitter2": { - "type": "npm", - "name": "npm:eventemitter2", - "data": { - "version": "6.4.7", - "packageName": "eventemitter2", - "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:eventemitter3@5.0.1": { - "type": "npm", - "name": "npm:eventemitter3@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "eventemitter3", - "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:executable": { - "type": "npm", - "name": "npm:executable", - "data": { - "version": "4.1.1", - "packageName": "executable", - "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expand-range": { - "type": "npm", - "name": "npm:expand-range", - "data": { - "version": "1.8.2", - "packageName": "expand-range", - "hash": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==" - } - }, - "npm:fill-range@2.2.4": { - "type": "npm", - "name": "npm:fill-range@2.2.4", - "data": { - "version": "2.2.4", - "packageName": "fill-range", - "hash": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:isobject@2.1.0": { - "type": "npm", - "name": "npm:isobject@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "isobject", - "hash": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:exponential-backoff": { - "type": "npm", - "name": "npm:exponential-backoff", - "data": { - "version": "3.1.1", - "packageName": "exponential-backoff", - "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.18.2", - "packageName": "express", - "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" - } - }, - "npm:express-rate-limit": { - "type": "npm", - "name": "npm:express-rate-limit", - "data": { - "version": "5.5.1", - "packageName": "express-rate-limit", - "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" - } - }, - "npm:express-urlrewrite": { - "type": "npm", - "name": "npm:express-urlrewrite", - "data": { - "version": "1.4.0", - "packageName": "express-urlrewrite", - "hash": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==" - } - }, - "npm:isarray@0.0.1": { - "type": "npm", - "name": "npm:isarray@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "isarray", - "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isarray@2.0.5": { - "type": "npm", - "name": "npm:isarray@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:path-to-regexp@1.8.0": { - "type": "npm", - "name": "npm:path-to-regexp@1.8.0", - "data": { - "version": "1.8.0", - "packageName": "path-to-regexp", - "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - } - }, - "npm:finalhandler@1.2.0": { - "type": "npm", - "name": "npm:finalhandler@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.0", - "packageName": "finalhandler", - "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" - } - }, - "npm:raw-body@2.5.1": { - "type": "npm", - "name": "npm:raw-body@2.5.1", - "data": { - "version": "2.5.1", - "packageName": "raw-body", - "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.5.2", - "packageName": "raw-body", - "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" - } - }, - "npm:send@0.18.0": { - "type": "npm", - "name": "npm:send@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.16.2", - "packageName": "send", - "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" - } - }, - "npm:serve-static@1.15.0": { - "type": "npm", - "name": "npm:serve-static@1.15.0", - "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.13.2", - "packageName": "serve-static", - "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" - } - }, - "npm:statuses@2.0.1": { - "type": "npm", - "name": "npm:statuses@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - }, - "npm:statuses@1.4.0": { - "type": "npm", - "name": "npm:statuses@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "statuses", - "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "1.3.1", - "packageName": "statuses", - "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" - } - }, - "npm:ext-list": { - "type": "npm", - "name": "npm:ext-list", - "data": { - "version": "2.2.2", - "packageName": "ext-list", - "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" - } - }, - "npm:ext-name": { - "type": "npm", - "name": "npm:ext-name", - "data": { - "version": "5.0.0", - "packageName": "ext-name", - "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:extend-shallow": { - "type": "npm", - "name": "npm:extend-shallow", - "data": { - "version": "2.0.1", - "packageName": "extend-shallow", - "hash": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.1.0", - "packageName": "external-editor", - "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" - } - }, - "npm:tmp@0.0.33": { - "type": "npm", - "name": "npm:tmp@0.0.33", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.1", - "packageName": "tmp", - "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:extsprintf": { - "type": "npm", - "name": "npm:extsprintf", - "data": { - "version": "1.3.0", - "packageName": "extsprintf", - "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-redact": { - "type": "npm", - "name": "npm:fast-redact", - "data": { - "version": "3.3.0", - "packageName": "fast-redact", - "hash": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==" - } - }, - "npm:fast-safe-stringify": { - "type": "npm", - "name": "npm:fast-safe-stringify", - "data": { - "version": "2.1.1", - "packageName": "fast-safe-stringify", - "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.16.0", - "packageName": "fastq", - "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.4", - "packageName": "faye-websocket", - "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:file-type": { - "type": "npm", - "name": "npm:file-type", - "data": { - "version": "17.1.6", - "packageName": "file-type", - "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.4", - "packageName": "filelist", - "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" - } - }, - "npm:filename-reserved-regex": { - "type": "npm", - "name": "npm:filename-reserved-regex", - "data": { - "version": "3.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" - } - }, - "npm:filenamify": { - "type": "npm", - "name": "npm:filenamify", - "data": { - "version": "5.1.1", - "packageName": "filenamify", - "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" - } - }, - "npm:find-up-simple": { - "type": "npm", - "name": "npm:find-up-simple", - "data": { - "version": "1.0.0", - "packageName": "find-up-simple", - "hash": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==" - } - }, - "npm:find-versions": { - "type": "npm", - "name": "npm:find-versions", - "data": { - "version": "5.1.0", - "packageName": "find-versions", - "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.9", - "packageName": "flatted", - "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.3", - "packageName": "follow-redirects", - "hash": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.3", - "packageName": "for-each", - "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - } - }, - "npm:for-in": { - "type": "npm", - "name": "npm:for-in", - "data": { - "version": "1.0.2", - "packageName": "for-in", - "hash": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - } - }, - "npm:fork-ts-checker-webpack-plugin": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin", - "data": { - "version": "7.2.13", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" - } - }, - "npm:schema-utils@3.3.0": { - "type": "npm", - "name": "npm:schema-utils@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "4.2.0", - "packageName": "schema-utils", - "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:form-data@4.0.0": { - "type": "npm", - "name": "npm:form-data@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "4.3.7", - "packageName": "fraction.js", - "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - } - }, - "npm:from2": { - "type": "npm", - "name": "npm:from2", - "data": { - "version": "2.3.0", - "packageName": "from2", - "hash": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "npm:fs-minipass@2.1.0": { - "type": "npm", - "name": "npm:fs-minipass@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "11506148351665826113" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.5", - "packageName": "fs-monkey", - "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.6", - "packageName": "function.prototype.name", - "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" - } - }, - "npm:functions-have-names": { - "type": "npm", - "name": "npm:functions-have-names", - "data": { - "version": "1.2.3", - "packageName": "functions-have-names", - "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.2", - "packageName": "get-intrinsic", - "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.0", - "packageName": "get-symbol-description", - "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - } - }, - "npm:getos": { - "type": "npm", - "name": "npm:getos", - "data": { - "version": "3.2.1", - "packageName": "getos", - "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" - } - }, - "npm:git-log-parser": { - "type": "npm", - "name": "npm:git-log-parser", - "data": { - "version": "1.2.0", - "packageName": "git-log-parser", - "hash": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==" - } - }, - "npm:split2@1.0.0": { - "type": "npm", - "name": "npm:split2@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "split2", - "hash": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "4.2.0", - "packageName": "split2", - "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "3.0.1", - "packageName": "global-dirs", - "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.3", - "packageName": "globalthis", - "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.6", - "packageName": "got", - "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" - } - }, - "npm:graphemer": { - "type": "npm", - "name": "npm:graphemer", - "data": { - "version": "1.4.0", - "packageName": "graphemer", - "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - } - }, - "npm:gray-matter": { - "type": "npm", - "name": "npm:gray-matter", - "data": { - "version": "2.1.1", - "packageName": "gray-matter", - "hash": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==" - } - }, - "npm:gulp-header": { - "type": "npm", - "name": "npm:gulp-header", - "data": { - "version": "1.8.12", - "packageName": "gulp-header", - "hash": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==" - } - }, - "npm:gzip-size": { - "type": "npm", - "name": "npm:gzip-size", - "data": { - "version": "6.0.0", - "packageName": "gzip-size", - "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.1", - "packageName": "handle-thing", - "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.8", - "packageName": "handlebars", - "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" - } - }, - "npm:harmony-reflect": { - "type": "npm", - "name": "npm:harmony-reflect", - "data": { - "version": "1.6.2", - "packageName": "harmony-reflect", - "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.0.2", - "packageName": "has-bigints", - "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.1", - "packageName": "has-property-descriptors", - "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.1", - "packageName": "has-proto", - "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.3", - "packageName": "has-symbols", - "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.0", - "packageName": "has-tostringtag", - "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" - } - }, - "npm:hdr-histogram-js": { - "type": "npm", - "name": "npm:hdr-histogram-js", - "data": { - "version": "2.0.3", - "packageName": "hdr-histogram-js", - "hash": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==" - } - }, - "npm:hdr-histogram-percentiles-obj": { - "type": "npm", - "name": "npm:hdr-histogram-percentiles-obj", - "data": { - "version": "3.0.0", - "packageName": "hdr-histogram-percentiles-obj", - "hash": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:hook-std": { - "type": "npm", - "name": "npm:hook-std", - "data": { - "version": "3.0.0", - "packageName": "hook-std", - "hash": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" - } - }, - "npm:hosted-git-info@2.8.9": { - "type": "npm", - "name": "npm:hosted-git-info@2.8.9", - "data": { - "version": "2.8.9", - "packageName": "hosted-git-info", - "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.4.0", - "packageName": "html-entities", - "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.2", - "packageName": "html-escaper", - "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "8.0.2", - "packageName": "htmlparser2", - "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.1.1", - "packageName": "http-cache-semantics", - "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.0", - "packageName": "http-errors", - "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.8", - "packageName": "http-parser-js", - "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-server": { - "type": "npm", - "name": "npm:http-server", - "data": { - "version": "14.1.1", - "packageName": "http-server", - "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.3.6", - "packageName": "http-signature", - "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" - } - }, - "npm:http-status-codes": { - "type": "npm", - "name": "npm:http-status-codes", - "data": { - "version": "2.2.0", - "packageName": "http-status-codes", - "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.3", - "packageName": "http2-wrapper", - "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "7.0.2", - "packageName": "https-proxy-agent", - "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" - } - }, - "npm:https-proxy-agent@5.0.1": { - "type": "npm", - "name": "npm:https-proxy-agent@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:husky": { - "type": "npm", - "name": "npm:husky", - "data": { - "version": "8.0.3", - "packageName": "husky", - "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:identity-obj-proxy": { - "type": "npm", - "name": "npm:identity-obj-proxy", - "data": { - "version": "3.0.0", - "packageName": "identity-obj-proxy", - "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.0", - "packageName": "ignore", - "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "6.0.4", - "packageName": "ignore-walk", - "hash": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==" - } - }, - "npm:image-size": { - "type": "npm", - "name": "npm:image-size", - "data": { - "version": "0.5.5", - "packageName": "image-size", - "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "3.8.2", - "packageName": "immutable", - "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" - } - }, - "npm:immutable@4.3.4": { - "type": "npm", - "name": "npm:immutable@4.3.4", - "data": { - "version": "4.3.4", - "packageName": "immutable", - "hash": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:import-from-esm": { - "type": "npm", - "name": "npm:import-from-esm", - "data": { - "version": "1.3.3", - "packageName": "import-from-esm", - "hash": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:import-meta-resolve": { - "type": "npm", - "name": "npm:import-meta-resolve", - "data": { - "version": "4.0.0", - "packageName": "import-meta-resolve", - "hash": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:index-to-position": { - "type": "npm", - "name": "npm:index-to-position", - "data": { - "version": "0.1.2", - "packageName": "index-to-position", - "hash": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - }, - "npm:inquirer-autocomplete-prompt": { - "type": "npm", - "name": "npm:inquirer-autocomplete-prompt", - "data": { - "version": "2.0.1", - "packageName": "inquirer-autocomplete-prompt", - "hash": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.6", - "packageName": "internal-slot", - "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" - } - }, - "npm:into-stream": { - "type": "npm", - "name": "npm:into-stream", - "data": { - "version": "7.0.0", - "packageName": "into-stream", - "hash": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==" - } - }, - "npm:ip": { - "type": "npm", - "name": "npm:ip", - "data": { - "version": "2.0.0", - "packageName": "ip", - "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js@2.1.0": { - "type": "npm", - "name": "npm:ipaddr.js@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "ipaddr.js", - "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.2", - "packageName": "is-array-buffer", - "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.4", - "packageName": "is-bigint", - "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.1.2", - "packageName": "is-boolean-object", - "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" - } - }, - "npm:is-buffer": { - "type": "npm", - "name": "npm:is-buffer", - "data": { - "version": "1.1.6", - "packageName": "is-buffer", - "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.7", - "packageName": "is-callable", - "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - } - }, - "npm:is-ci": { - "type": "npm", - "name": "npm:is-ci", - "data": { - "version": "3.0.1", - "packageName": "is-ci", - "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.13.1", - "packageName": "is-core-module", - "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.0.5", - "packageName": "is-date-object", - "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-extendable": { - "type": "npm", - "name": "npm:is-extendable", - "data": { - "version": "0.1.1", - "packageName": "is-extendable", - "hash": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - } - }, - "npm:is-extendable@1.0.1": { - "type": "npm", - "name": "npm:is-extendable@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-extendable", - "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-fullwidth-code-point@4.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-installed-globally": { - "type": "npm", - "name": "npm:is-installed-globally", - "data": { - "version": "0.4.0", - "packageName": "is-installed-globally", - "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-lambda": { - "type": "npm", - "name": "npm:is-lambda", - "data": { - "version": "1.0.1", - "packageName": "is-lambda", - "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.2", - "packageName": "is-negative-zero", - "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "2.1.0", - "packageName": "is-number", - "hash": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==" - } - }, - "npm:is-number@4.0.0": { - "type": "npm", - "name": "npm:is-number@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-number", - "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } - }, - "npm:is-number@7.0.0": { - "type": "npm", - "name": "npm:is-number@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-number-like": { - "type": "npm", - "name": "npm:is-number-like", - "data": { - "version": "1.0.8", - "packageName": "is-number-like", - "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.0.7", - "packageName": "is-number-object", - "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" - } - }, - "npm:is-obj": { - "type": "npm", - "name": "npm:is-obj", - "data": { - "version": "2.0.0", - "packageName": "is-obj", - "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.3", - "packageName": "is-path-inside", - "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-obj@1.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "2.2.2", - "packageName": "is-promise", - "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.1.4", - "packageName": "is-regex", - "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.2", - "packageName": "is-shared-array-buffer", - "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.0.4", - "packageName": "is-symbol", - "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" - } - }, - "npm:is-text-path": { - "type": "npm", - "name": "npm:is-text-path", - "data": { - "version": "2.0.0", - "packageName": "is-text-path", - "hash": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.12", - "packageName": "is-typed-array", - "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" - } - }, - "npm:is-typedarray": { - "type": "npm", - "name": "npm:is-typedarray", - "data": { - "version": "1.0.0", - "packageName": "is-typedarray", - "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.0.2", - "packageName": "is-weakref", - "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" - } - }, - "npm:is-what": { - "type": "npm", - "name": "npm:is-what", - "data": { - "version": "3.14.1", - "packageName": "is-what", - "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - } - }, - "npm:issue-parser": { - "type": "npm", - "name": "npm:issue-parser", - "data": { - "version": "6.0.0", - "packageName": "issue-parser", - "hash": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.2", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.1", - "packageName": "istanbul-lib-report", - "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.6", - "packageName": "istanbul-reports", - "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.3.6", - "packageName": "jackspeak", - "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.7", - "packageName": "jake", - "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" - } - }, - "npm:java-properties": { - "type": "npm", - "name": "npm:java-properties", - "data": { - "version": "1.0.2", - "packageName": "java-properties", - "hash": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:dedent@1.5.1": { - "type": "npm", - "name": "npm:dedent@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.3", - "packageName": "jest-pnp-resolver", - "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" - } - }, - "npm:jest-preset-angular": { - "type": "npm", - "name": "npm:jest-preset-angular", - "data": { - "version": "13.1.4", - "packageName": "jest-preset-angular", - "hash": "sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:resolve.exports@2.0.2": { - "type": "npm", - "name": "npm:resolve.exports@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "1.1.0", - "packageName": "resolve.exports", - "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "1.21.0", - "packageName": "jiti", - "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" - } - }, - "npm:jju": { - "type": "npm", - "name": "npm:jju", - "data": { - "version": "1.4.0", - "packageName": "jju", - "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-parse-better-errors": { - "type": "npm", - "name": "npm:json-parse-better-errors", - "data": { - "version": "1.0.2", - "packageName": "json-parse-better-errors", - "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors@3.0.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "json-parse-even-better-errors", - "hash": "12902821898341430299" - } - }, - "npm:json-parse-helpfulerror": { - "type": "npm", - "name": "npm:json-parse-helpfulerror", - "data": { - "version": "1.0.3", - "packageName": "json-parse-helpfulerror", - "hash": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "npm:json-server": { - "type": "npm", - "name": "npm:json-server", - "data": { - "version": "0.17.4", - "packageName": "json-server", - "hash": "sha512-bGBb0WtFuAKbgI7JV3A864irWnMZSvBYRJbohaOuatHwKSRFUfqtQlrYMrB6WbalXy/cJabyjlb7JkHli6dYjQ==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json-stringify-safe": { - "type": "npm", - "name": "npm:json-stringify-safe", - "data": { - "version": "5.0.1", - "packageName": "json-stringify-safe", - "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-eslint-parser": { - "type": "npm", - "name": "npm:jsonc-eslint-parser", - "data": { - "version": "2.4.0", - "packageName": "jsonc-eslint-parser", - "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "npm:jsonwebtoken": { - "type": "npm", - "name": "npm:jsonwebtoken", - "data": { - "version": "9.0.2", - "packageName": "jsonwebtoken", - "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "2.0.2", - "packageName": "jsprim", - "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" - } - }, - "npm:jwa": { - "type": "npm", - "name": "npm:jwa", - "data": { - "version": "1.4.1", - "packageName": "jwa", - "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" - } - }, - "npm:jws": { - "type": "npm", - "name": "npm:jws", - "data": { - "version": "3.2.2", - "packageName": "jws", - "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" - } - }, - "npm:karma-source-map-support": { - "type": "npm", - "name": "npm:karma-source-map-support", - "data": { - "version": "1.4.0", - "packageName": "karma-source-map-support", - "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" - } - }, - "npm:keygrip": { - "type": "npm", - "name": "npm:keygrip", - "data": { - "version": "1.1.0", - "packageName": "keygrip", - "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:kleur@4.1.5": { - "type": "npm", - "name": "npm:kleur@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:klona": { - "type": "npm", - "name": "npm:klona", - "data": { - "version": "2.0.6", - "packageName": "klona", - "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" - } - }, - "npm:launch-editor": { - "type": "npm", - "name": "npm:launch-editor", - "data": { - "version": "2.6.1", - "packageName": "launch-editor", - "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" - } - }, - "npm:lazy-ass": { - "type": "npm", - "name": "npm:lazy-ass", - "data": { - "version": "1.6.0", - "packageName": "lazy-ass", - "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" - } - }, - "npm:lazy-cache": { - "type": "npm", - "name": "npm:lazy-cache", - "data": { - "version": "2.0.2", - "packageName": "lazy-cache", - "hash": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==" - } - }, - "npm:less-loader": { - "type": "npm", - "name": "npm:less-loader", - "data": { - "version": "11.1.0", - "packageName": "less-loader", - "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:license-webpack-plugin": { - "type": "npm", - "name": "npm:license-webpack-plugin", - "data": { - "version": "4.0.2", - "packageName": "license-webpack-plugin", - "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "3.0.0", - "packageName": "lilconfig", - "hash": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==" - } - }, - "npm:lilconfig@2.1.0": { - "type": "npm", - "name": "npm:lilconfig@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "lilconfig", - "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" - } - }, - "npm:limiter": { - "type": "npm", - "name": "npm:limiter", - "data": { - "version": "1.1.5", - "packageName": "limiter", - "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "2.0.4", - "packageName": "lines-and-columns", - "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" - } - }, - "npm:lines-and-columns@1.2.4": { - "type": "npm", - "name": "npm:lines-and-columns@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "13.3.0", - "packageName": "lint-staged", - "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" - } - }, - "npm:listr2@6.6.1": { - "type": "npm", - "name": "npm:listr2@6.6.1", - "data": { - "version": "6.6.1", - "packageName": "listr2", - "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:log-update@5.0.1": { - "type": "npm", - "name": "npm:log-update@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "log-update", - "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:restore-cursor@4.0.0": { - "type": "npm", - "name": "npm:restore-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "restore-cursor", - "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:slice-ansi@5.0.0": { - "type": "npm", - "name": "npm:slice-ansi@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" - } - }, - "npm:slice-ansi@4.0.0": { - "type": "npm", - "name": "npm:slice-ansi@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slice-ansi", - "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "3.0.0", - "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" - } - }, - "npm:yaml@2.3.1": { - "type": "npm", - "name": "npm:yaml@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "yaml", - "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:list-item": { - "type": "npm", - "name": "npm:list-item", - "data": { - "version": "1.1.1", - "packageName": "list-item", - "hash": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==" - } - }, - "npm:load-json-file": { - "type": "npm", - "name": "npm:load-json-file", - "data": { - "version": "4.0.0", - "packageName": "load-json-file", - "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" - } - }, - "npm:strip-bom@3.0.0": { - "type": "npm", - "name": "npm:strip-bom@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:localtunnel": { - "type": "npm", - "name": "npm:localtunnel", - "data": { - "version": "2.0.2", - "packageName": "localtunnel", - "hash": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==" - } - }, - "npm:yargs@17.1.1": { - "type": "npm", - "name": "npm:yargs@17.1.1", - "data": { - "version": "17.1.1", - "packageName": "yargs", - "hash": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==" - } - }, - "npm:yargs@16.2.0": { - "type": "npm", - "name": "npm:yargs@16.2.0", - "data": { - "version": "16.2.0", - "packageName": "yargs", - "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yargs-parser@20.2.9": { - "type": "npm", - "name": "npm:yargs-parser@20.2.9", - "data": { - "version": "20.2.9", - "packageName": "yargs-parser", - "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:lockfile": { - "type": "npm", - "name": "npm:lockfile", - "data": { - "version": "1.0.4", - "packageName": "lockfile", - "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:lodash-es": { - "type": "npm", - "name": "npm:lodash-es", - "data": { - "version": "4.17.21", - "packageName": "lodash-es", - "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - } - }, - "npm:lodash-id": { - "type": "npm", - "name": "npm:lodash-id", - "data": { - "version": "0.14.1", - "packageName": "lodash-id", - "hash": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==" - } - }, - "npm:lodash._reinterpolate": { - "type": "npm", - "name": "npm:lodash._reinterpolate", - "data": { - "version": "3.0.0", - "packageName": "lodash._reinterpolate", - "hash": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" - } - }, - "npm:lodash.capitalize": { - "type": "npm", - "name": "npm:lodash.capitalize", - "data": { - "version": "4.2.1", - "packageName": "lodash.capitalize", - "hash": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - } - }, - "npm:lodash.escaperegexp": { - "type": "npm", - "name": "npm:lodash.escaperegexp", - "data": { - "version": "4.1.2", - "packageName": "lodash.escaperegexp", - "hash": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" - } - }, - "npm:lodash.includes": { - "type": "npm", - "name": "npm:lodash.includes", - "data": { - "version": "4.3.0", - "packageName": "lodash.includes", - "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" - } - }, - "npm:lodash.isboolean": { - "type": "npm", - "name": "npm:lodash.isboolean", - "data": { - "version": "3.0.3", - "packageName": "lodash.isboolean", - "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - } - }, - "npm:lodash.isfinite": { - "type": "npm", - "name": "npm:lodash.isfinite", - "data": { - "version": "3.3.2", - "packageName": "lodash.isfinite", - "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" - } - }, - "npm:lodash.isinteger": { - "type": "npm", - "name": "npm:lodash.isinteger", - "data": { - "version": "4.0.4", - "packageName": "lodash.isinteger", - "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" - } - }, - "npm:lodash.isnumber": { - "type": "npm", - "name": "npm:lodash.isnumber", - "data": { - "version": "3.0.3", - "packageName": "lodash.isnumber", - "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - } - }, - "npm:lodash.isplainobject": { - "type": "npm", - "name": "npm:lodash.isplainobject", - "data": { - "version": "4.0.6", - "packageName": "lodash.isplainobject", - "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - } - }, - "npm:lodash.isstring": { - "type": "npm", - "name": "npm:lodash.isstring", - "data": { - "version": "4.0.1", - "packageName": "lodash.isstring", - "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.once": { - "type": "npm", - "name": "npm:lodash.once", - "data": { - "version": "4.1.1", - "packageName": "lodash.once", - "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" - } - }, - "npm:lodash.template": { - "type": "npm", - "name": "npm:lodash.template", - "data": { - "version": "4.5.0", - "packageName": "lodash.template", - "hash": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" - } - }, - "npm:lodash.templatesettings": { - "type": "npm", - "name": "npm:lodash.templatesettings", - "data": { - "version": "4.2.0", - "packageName": "lodash.templatesettings", - "hash": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash.uniqby": { - "type": "npm", - "name": "npm:lodash.uniqby", - "data": { - "version": "4.7.0", - "packageName": "lodash.uniqby", - "hash": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:lowdb": { - "type": "npm", - "name": "npm:lowdb", - "data": { - "version": "1.0.0", - "packageName": "lowdb", - "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:make-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.6", - "packageName": "make-error", - "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "13.0.0", - "packageName": "make-fetch-happen", - "hash": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:markdown-link": { - "type": "npm", - "name": "npm:markdown-link", - "data": { - "version": "0.1.1", - "packageName": "markdown-link", - "hash": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==" - } - }, - "npm:markdown-toc": { - "type": "npm", - "name": "npm:markdown-toc", - "data": { - "version": "1.2.0", - "packageName": "markdown-toc", - "hash": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==" - } - }, - "npm:marked": { - "type": "npm", - "name": "npm:marked", - "data": { - "version": "9.1.6", - "packageName": "marked", - "hash": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==" - } - }, - "npm:marked-terminal": { - "type": "npm", - "name": "npm:marked-terminal", - "data": { - "version": "6.2.0", - "packageName": "marked-terminal", - "hash": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==" - } - }, - "npm:math-random": { - "type": "npm", - "name": "npm:math-random", - "data": { - "version": "1.0.4", - "packageName": "math-random", - "hash": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.5.3", - "packageName": "memfs", - "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" - } - }, - "npm:memorystream": { - "type": "npm", - "name": "npm:memorystream", - "data": { - "version": "0.3.1", - "packageName": "memorystream", - "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" - } - }, - "npm:meow": { - "type": "npm", - "name": "npm:meow", - "data": { - "version": "12.1.1", - "packageName": "meow", - "hash": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:method-override": { - "type": "npm", - "name": "npm:method-override", - "data": { - "version": "3.0.0", - "packageName": "method-override", - "hash": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.5", - "packageName": "micromatch", - "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "7.0.4", - "packageName": "minipass", - "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" - } - }, - "npm:minipass@3.3.6": { - "type": "npm", - "name": "npm:minipass@3.3.6", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "967233070033727926" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "2.0.1", - "packageName": "minipass-collect", - "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "3.0.4", - "packageName": "minipass-fetch", - "hash": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-json-stream": { - "type": "npm", - "name": "npm:minipass-json-stream", - "data": { - "version": "1.0.1", - "packageName": "minipass-json-stream", - "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "1.2.0", - "packageName": "mitt", - "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" - } - }, - "npm:mixin-deep": { - "type": "npm", - "name": "npm:mixin-deep", - "data": { - "version": "1.3.2", - "packageName": "mixin-deep", - "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" - } - }, - "npm:morgan": { - "type": "npm", - "name": "npm:morgan", - "data": { - "version": "1.10.0", - "packageName": "morgan", - "hash": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "1.0.1", - "packageName": "mrmime", - "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "7.2.5", - "packageName": "multicast-dns", - "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - } - }, - "npm:mv": { - "type": "npm", - "name": "npm:mv", - "data": { - "version": "2.1.1", - "packageName": "mv", - "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" - } - }, - "npm:rimraf@2.4.5": { - "type": "npm", - "name": "npm:rimraf@2.4.5", - "data": { - "version": "2.4.5", - "packageName": "rimraf", - "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@2.6.3": { - "type": "npm", - "name": "npm:rimraf@2.6.3", - "data": { - "version": "2.6.3", - "packageName": "rimraf", - "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" - } - }, - "npm:nanoclone": { - "type": "npm", - "name": "npm:nanoclone", - "data": { - "version": "0.2.1", - "packageName": "nanoclone", - "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.7", - "packageName": "nanoid", - "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:ncp": { - "type": "npm", - "name": "npm:ncp", - "data": { - "version": "2.0.0", - "packageName": "ncp", - "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" - } - }, - "npm:needle": { - "type": "npm", - "name": "npm:needle", - "data": { - "version": "3.3.1", - "packageName": "needle", - "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:nerf-dart": { - "type": "npm", - "name": "npm:nerf-dart", - "data": { - "version": "1.0.0", - "packageName": "nerf-dart", - "hash": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==" - } - }, - "npm:nice-napi": { - "type": "npm", - "name": "npm:nice-napi", - "data": { - "version": "1.0.2", - "packageName": "nice-napi", - "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "npm:node-abort-controller": { - "type": "npm", - "name": "npm:node-abort-controller", - "data": { - "version": "3.1.1", - "packageName": "node-abort-controller", - "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - } - }, - "npm:node-addon-api": { - "type": "npm", - "name": "npm:node-addon-api", - "data": { - "version": "3.2.1", - "packageName": "node-addon-api", - "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" - } - }, - "npm:node-emoji": { - "type": "npm", - "name": "npm:node-emoji", - "data": { - "version": "2.1.3", - "packageName": "node-emoji", - "hash": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.6.7", - "packageName": "node-fetch", - "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "10.0.1", - "packageName": "node-gyp", - "hash": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.7.1", - "packageName": "node-gyp-build", - "hash": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - } - }, - "npm:node-machine-id": { - "type": "npm", - "name": "npm:node-machine-id", - "data": { - "version": "1.1.12", - "packageName": "node-machine-id", - "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.14", - "packageName": "node-releases", - "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "7.2.0", - "packageName": "nopt", - "hash": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==" - } - }, - "npm:normalize-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "6.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" - } - }, - "npm:normalize-package-data@2.5.0": { - "type": "npm", - "name": "npm:normalize-package-data@2.5.0", - "data": { - "version": "2.5.0", - "packageName": "normalize-package-data", - "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-range": { - "type": "npm", - "name": "npm:normalize-range", - "data": { - "version": "0.1.2", - "packageName": "normalize-range", - "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" - } - }, - "npm:npm": { - "type": "npm", - "name": "npm:npm", - "data": { - "version": "10.2.5", - "packageName": "npm", - "hash": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "3.0.0", - "packageName": "npm-bundled", - "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" - } - }, - "npm:npm-install-checks": { - "type": "npm", - "name": "npm:npm-install-checks", - "data": { - "version": "6.3.0", - "packageName": "npm-install-checks", - "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "11.0.1", - "packageName": "npm-package-arg", - "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "8.0.1", - "packageName": "npm-packlist", - "hash": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "9.0.0", - "packageName": "npm-pick-manifest", - "hash": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==" - } - }, - "npm:npm-registry-fetch": { - "type": "npm", - "name": "npm:npm-registry-fetch", - "data": { - "version": "16.1.0", - "packageName": "npm-registry-fetch", - "hash": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==" - } - }, - "npm:npm-run-all": { - "type": "npm", - "name": "npm:npm-run-all", - "data": { - "version": "4.1.5", - "packageName": "npm-run-all", - "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" - } - }, - "npm:pidtree@0.3.1": { - "type": "npm", - "name": "npm:pidtree@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "pidtree", - "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.6.0", - "packageName": "pidtree", - "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" - } - }, - "npm:@isaacs/string-locale-compare@1.1.0": { - "type": "npm", - "name": "npm:@isaacs/string-locale-compare@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "@isaacs/string-locale-compare", - "hash": "13187644880041451271" - } - }, - "npm:@npmcli/arborist@7.2.2": { - "type": "npm", - "name": "npm:@npmcli/arborist@7.2.2", - "data": { - "version": "7.2.2", - "packageName": "@npmcli/arborist", - "hash": "7182259164219824660" - } - }, - "npm:@npmcli/config@8.0.3": { - "type": "npm", - "name": "npm:@npmcli/config@8.0.3", - "data": { - "version": "8.0.3", - "packageName": "@npmcli/config", - "hash": "8820709041531503664" - } - }, - "npm:@npmcli/disparity-colors@3.0.0": { - "type": "npm", - "name": "npm:@npmcli/disparity-colors@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/disparity-colors", - "hash": "14187036782924450815" - } - }, - "npm:@npmcli/map-workspaces@3.0.4": { - "type": "npm", - "name": "npm:@npmcli/map-workspaces@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "@npmcli/map-workspaces", - "hash": "13154714750762064630" - } - }, - "npm:@npmcli/metavuln-calculator@7.0.0": { - "type": "npm", - "name": "npm:@npmcli/metavuln-calculator@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "@npmcli/metavuln-calculator", - "hash": "2521549270537825900" - } - }, - "npm:@npmcli/name-from-folder@2.0.0": { - "type": "npm", - "name": "npm:@npmcli/name-from-folder@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "@npmcli/name-from-folder", - "hash": "14253416717500769425" - } - }, - "npm:@npmcli/package-json@5.0.0": { - "type": "npm", - "name": "npm:@npmcli/package-json@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "@npmcli/package-json", - "hash": "15072336541895224028" - } - }, - "npm:@npmcli/query@3.0.1": { - "type": "npm", - "name": "npm:@npmcli/query@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@npmcli/query", - "hash": "2838677265610359007" - } - }, - "npm:aproba@2.0.0": { - "type": "npm", - "name": "npm:aproba@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "aproba", - "hash": "17279615999774402081" - } - }, - "npm:archy@1.0.0": { - "type": "npm", - "name": "npm:archy@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "archy", - "hash": "7927190020983769851" - } - }, - "npm:are-we-there-yet@4.0.1": { - "type": "npm", - "name": "npm:are-we-there-yet@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "are-we-there-yet", - "hash": "2067525616894023226" - } - }, - "npm:bin-links@4.0.3": { - "type": "npm", - "name": "npm:bin-links@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "bin-links", - "hash": "6676388443930273422" - } - }, - "npm:cidr-regex@4.0.3": { - "type": "npm", - "name": "npm:cidr-regex@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "cidr-regex", - "hash": "6423967580007982965" - } - }, - "npm:cli-columns@4.0.0": { - "type": "npm", - "name": "npm:cli-columns@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-columns", - "hash": "11864858422112434879" - } - }, - "npm:cmd-shim@6.0.2": { - "type": "npm", - "name": "npm:cmd-shim@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "cmd-shim", - "hash": "11797498964257484434" - } - }, - "npm:color-support@1.1.3": { - "type": "npm", - "name": "npm:color-support@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "3393818179792164157" - } - }, - "npm:common-ancestor-path@1.0.1": { - "type": "npm", - "name": "npm:common-ancestor-path@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "common-ancestor-path", - "hash": "6661427358504839173" - } - }, - "npm:console-control-strings@1.1.0": { - "type": "npm", - "name": "npm:console-control-strings@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "15599562434471903839" - } - }, - "npm:delegates@1.0.0": { - "type": "npm", - "name": "npm:delegates@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "8733352999539432694" - } - }, - "npm:fastest-levenshtein@1.0.16": { - "type": "npm", - "name": "npm:fastest-levenshtein@1.0.16", - "data": { - "version": "1.0.16", - "packageName": "fastest-levenshtein", - "hash": "8701148827062880145" - } - }, - "npm:gauge@5.0.1": { - "type": "npm", - "name": "npm:gauge@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "gauge", - "hash": "11205983861061131040" - } - }, - "npm:has-unicode@2.0.1": { - "type": "npm", - "name": "npm:has-unicode@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "13943981828416008621" - } - }, - "npm:init-package-json@6.0.0": { - "type": "npm", - "name": "npm:init-package-json@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "init-package-json", - "hash": "12382910830993440062" - } - }, - "npm:ip-regex@5.0.0": { - "type": "npm", - "name": "npm:ip-regex@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "ip-regex", - "hash": "6181509096878655535" - } - }, - "npm:is-cidr@5.0.3": { - "type": "npm", - "name": "npm:is-cidr@5.0.3", - "data": { - "version": "5.0.3", - "packageName": "is-cidr", - "hash": "9300924457576055299" - } - }, - "npm:json-stringify-nice@1.1.4": { - "type": "npm", - "name": "npm:json-stringify-nice@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "json-stringify-nice", - "hash": "1591436175625616703" - } - }, - "npm:just-diff@6.0.2": { - "type": "npm", - "name": "npm:just-diff@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "just-diff", - "hash": "8534278321911344784" - } - }, - "npm:just-diff-apply@5.5.0": { - "type": "npm", - "name": "npm:just-diff-apply@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "just-diff-apply", - "hash": "12715064950501085530" - } - }, - "npm:libnpmaccess@8.0.2": { - "type": "npm", - "name": "npm:libnpmaccess@8.0.2", - "data": { - "version": "8.0.2", - "packageName": "libnpmaccess", - "hash": "16421526142808800212" - } - }, - "npm:libnpmdiff@6.0.4": { - "type": "npm", - "name": "npm:libnpmdiff@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "libnpmdiff", - "hash": "3820498454041815106" - } - }, - "npm:libnpmexec@7.0.5": { - "type": "npm", - "name": "npm:libnpmexec@7.0.5", - "data": { - "version": "7.0.5", - "packageName": "libnpmexec", - "hash": "17794617723037587231" - } - }, - "npm:libnpmfund@5.0.2": { - "type": "npm", - "name": "npm:libnpmfund@5.0.2", - "data": { - "version": "5.0.2", - "packageName": "libnpmfund", - "hash": "12305598745182060946" - } - }, - "npm:libnpmhook@10.0.1": { - "type": "npm", - "name": "npm:libnpmhook@10.0.1", - "data": { - "version": "10.0.1", - "packageName": "libnpmhook", - "hash": "8875117050333550796" - } - }, - "npm:libnpmorg@6.0.2": { - "type": "npm", - "name": "npm:libnpmorg@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "libnpmorg", - "hash": "10290805547791020319" - } - }, - "npm:libnpmpack@6.0.4": { - "type": "npm", - "name": "npm:libnpmpack@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "libnpmpack", - "hash": "5406464303373104244" - } - }, - "npm:libnpmpublish@9.0.3": { - "type": "npm", - "name": "npm:libnpmpublish@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "libnpmpublish", - "hash": "8046954149526535727" - } - }, - "npm:libnpmsearch@7.0.1": { - "type": "npm", - "name": "npm:libnpmsearch@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "libnpmsearch", - "hash": "15325769825788437107" - } - }, - "npm:libnpmteam@6.0.1": { - "type": "npm", - "name": "npm:libnpmteam@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "libnpmteam", - "hash": "1683769112741320527" - } - }, - "npm:libnpmversion@5.0.2": { - "type": "npm", - "name": "npm:libnpmversion@5.0.2", - "data": { - "version": "5.0.2", - "packageName": "libnpmversion", - "hash": "17375154425837329637" - } - }, - "npm:npm-audit-report@5.0.0": { - "type": "npm", - "name": "npm:npm-audit-report@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "npm-audit-report", - "hash": "6354832541033058707" - } - }, - "npm:npm-profile@9.0.0": { - "type": "npm", - "name": "npm:npm-profile@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "npm-profile", - "hash": "11172665038688662263" - } - }, - "npm:npm-user-validate@2.0.0": { - "type": "npm", - "name": "npm:npm-user-validate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "npm-user-validate", - "hash": "7397416590274487050" - } - }, - "npm:npmlog@7.0.1": { - "type": "npm", - "name": "npm:npmlog@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "npmlog", - "hash": "17299148607020464567" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "17854661287334559550" - } - }, - "npm:p-map@5.5.0": { - "type": "npm", - "name": "npm:p-map@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "p-map", - "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" - } - }, - "npm:pacote@17.0.5": { - "type": "npm", - "name": "npm:pacote@17.0.5", - "data": { - "version": "17.0.5", - "packageName": "pacote", - "hash": "18157225445049205745" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "17.0.4", - "packageName": "pacote", - "hash": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==" - } - }, - "npm:parse-conflict-json@3.0.1": { - "type": "npm", - "name": "npm:parse-conflict-json@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "parse-conflict-json", - "hash": "4836433519110231199" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "12011382365270888598" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.13", - "packageName": "postcss-selector-parser", - "hash": "18317171813795956011" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "15686043515984890271" - } - }, - "npm:process": { - "type": "npm", - "name": "npm:process", - "data": { - "version": "0.11.10", - "packageName": "process", - "hash": "5899774364612678558" - } - }, - "npm:promise-all-reject-late@1.0.1": { - "type": "npm", - "name": "npm:promise-all-reject-late@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "promise-all-reject-late", - "hash": "8115079043743132112" - } - }, - "npm:promise-call-limit@1.0.2": { - "type": "npm", - "name": "npm:promise-call-limit@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "promise-call-limit", - "hash": "15188836213578786777" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "17505959410500941643" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "6430051236100879397" - } - }, - "npm:promzard@1.0.0": { - "type": "npm", - "name": "npm:promzard@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "promzard", - "hash": "1630102348184705762" - } - }, - "npm:qrcode-terminal@0.12.0": { - "type": "npm", - "name": "npm:qrcode-terminal@0.12.0", - "data": { - "version": "0.12.0", - "packageName": "qrcode-terminal", - "hash": "8604977206135799318" - } - }, - "npm:read@2.1.0": { - "type": "npm", - "name": "npm:read@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "read", - "hash": "15091997822902067721" - } - }, - "npm:read-cmd-shim@4.0.0": { - "type": "npm", - "name": "npm:read-cmd-shim@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "read-cmd-shim", - "hash": "8789385965959140586" - } - }, - "npm:read-package-json": { - "type": "npm", - "name": "npm:read-package-json", - "data": { - "version": "7.0.0", - "packageName": "read-package-json", - "hash": "2832168133989722474" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "3.0.2", - "packageName": "read-package-json-fast", - "hash": "15039476735012127087" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "577959566566698873" - } - }, - "npm:retry@0.13.1": { - "type": "npm", - "name": "npm:retry@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "16796670911009069817" - } - }, - "npm:set-blocking@2.0.0": { - "type": "npm", - "name": "npm:set-blocking@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "7925479020392693302" - } - }, - "npm:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "2.1.0", - "packageName": "sigstore", - "hash": "1779417821879983691" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "9325347317011058594" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.7.1", - "packageName": "socks", - "hash": "10075606660716242987" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "8.0.2", - "packageName": "socks-proxy-agent", - "hash": "16729279058560436716" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.2.0", - "packageName": "spdx-correct", - "hash": "5441723641692029835" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.3.0", - "packageName": "spdx-exceptions", - "hash": "7642298428353548034" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "1415946028849809017" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.16", - "packageName": "spdx-license-ids", - "hash": "14586284776616244379" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "10.0.5", - "packageName": "ssri", - "hash": "3448831591758618758" - } - }, - "npm:string_decoder@1.3.0": { - "type": "npm", - "name": "npm:string_decoder@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "7047277384104003716" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "16568546503867287883" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "17289454424302757271" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "6383215585396908452" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "18257468142112457810" - } - }, - "npm:tiny-relative-date@1.3.0": { - "type": "npm", - "name": "npm:tiny-relative-date@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "tiny-relative-date", - "hash": "13109578067881593908" - } - }, - "npm:treeverse@3.0.0": { - "type": "npm", - "name": "npm:treeverse@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "treeverse", - "hash": "6817532506522309275" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "2.1.0", - "packageName": "tuf-js", - "hash": "3979877721881428053" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "7886949599248485097" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "15025672285505434477" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "17916194938027055625" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "14893158163252173577" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "2171344116929511877" - } - }, - "npm:walk-up-path@3.0.1": { - "type": "npm", - "name": "npm:walk-up-path@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "walk-up-path", - "hash": "10198965256615950216" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "10410747907664628096" - } - }, - "npm:wide-align@1.1.5": { - "type": "npm", - "name": "npm:wide-align@1.1.5", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "9514910874233485267" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "13425223611772983678" - } - }, - "npm:write-file-atomic@5.0.1": { - "type": "npm", - "name": "npm:write-file-atomic@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "write-file-atomic", - "hash": "9705229754480736912" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.7", - "packageName": "nwsapi", - "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "17.2.6", - "packageName": "nx", - "hash": "sha512-lBHp0e0AMBwYwpT44a8b0j29szspmYUhY1okqNctz/3ifuonNFG9WGfbzRO4YKOrVkfNsuaomHVAE6gtqo55ng==" - } - }, - "npm:nx-release": { - "type": "npm", - "name": "npm:nx-release", - "data": { - "version": "3.1.6", - "packageName": "nx-release", - "hash": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==" - } - }, - "npm:proxy-from-env@1.1.0": { - "type": "npm", - "name": "npm:proxy-from-env@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.1", - "packageName": "object-inspect", - "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.5", - "packageName": "object.assign", - "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" - } - }, - "npm:object.pick": { - "type": "npm", - "name": "npm:object.pick", - "data": { - "version": "1.3.0", - "packageName": "object.pick", - "hash": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:on-exit-leak-free": { - "type": "npm", - "name": "npm:on-exit-leak-free", - "data": { - "version": "0.2.0", - "packageName": "on-exit-leak-free", - "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:open@7.4.2": { - "type": "npm", - "name": "npm:open@7.4.2", - "data": { - "version": "7.4.2", - "packageName": "open", - "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:openurl": { - "type": "npm", - "name": "npm:openurl", - "data": { - "version": "1.1.1", - "packageName": "openurl", - "hash": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" - } - }, - "npm:opn": { - "type": "npm", - "name": "npm:opn", - "data": { - "version": "5.3.0", - "packageName": "opn", - "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.3", - "packageName": "optionator", - "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" - } - }, - "npm:os-filter-obj": { - "type": "npm", - "name": "npm:os-filter-obj", - "data": { - "version": "2.0.0", - "packageName": "os-filter-obj", - "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:ospath": { - "type": "npm", - "name": "npm:ospath", - "data": { - "version": "1.2.2", - "packageName": "ospath", - "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.1.1", - "packageName": "p-cancelable", - "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - } - }, - "npm:p-each-series": { - "type": "npm", - "name": "npm:p-each-series", - "data": { - "version": "3.0.0", - "packageName": "p-each-series", - "hash": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==" - } - }, - "npm:p-filter": { - "type": "npm", - "name": "npm:p-filter", - "data": { - "version": "3.0.0", - "packageName": "p-filter", - "hash": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "npm:p-is-promise": { - "type": "npm", - "name": "npm:p-is-promise", - "data": { - "version": "3.0.0", - "packageName": "p-is-promise", - "hash": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" - } - }, - "npm:p-reduce": { - "type": "npm", - "name": "npm:p-reduce", - "data": { - "version": "2.1.0", - "packageName": "p-reduce", - "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - } - }, - "npm:p-reduce@3.0.0": { - "type": "npm", - "name": "npm:p-reduce@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-reduce", - "hash": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:p-try@1.0.0": { - "type": "npm", - "name": "npm:p-try@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "p-try", - "hash": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" - } - }, - "npm:pako": { - "type": "npm", - "name": "npm:pako", - "data": { - "version": "1.0.11", - "packageName": "pako", - "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-node-version": { - "type": "npm", - "name": "npm:parse-node-version", - "data": { - "version": "1.0.1", - "packageName": "parse-node-version", - "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - } - }, - "npm:parse5-html-rewriting-stream": { - "type": "npm", - "name": "npm:parse5-html-rewriting-stream", - "data": { - "version": "7.0.0", - "packageName": "parse5-html-rewriting-stream", - "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" - } - }, - "npm:parse5-sax-parser": { - "type": "npm", - "name": "npm:parse5-sax-parser", - "data": { - "version": "7.0.0", - "packageName": "parse5-sax-parser", - "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:peek-readable": { - "type": "npm", - "name": "npm:peek-readable", - "data": { - "version": "5.0.0", - "packageName": "peek-readable", - "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - } - }, - "npm:performance-now": { - "type": "npm", - "name": "npm:performance-now", - "data": { - "version": "2.1.0", - "packageName": "performance-now", - "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.0", - "packageName": "picocolors", - "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - } - }, - "npm:pino": { - "type": "npm", - "name": "npm:pino", - "data": { - "version": "7.11.0", - "packageName": "pino", - "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" - } - }, - "npm:pino-abstract-transport": { - "type": "npm", - "name": "npm:pino-abstract-transport", - "data": { - "version": "1.0.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" - } - }, - "npm:pino-abstract-transport@0.5.0": { - "type": "npm", - "name": "npm:pino-abstract-transport@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" - } - }, - "npm:pino-std-serializers": { - "type": "npm", - "name": "npm:pino-std-serializers", - "data": { - "version": "4.0.0", - "packageName": "pino-std-serializers", - "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" - } - }, - "npm:sonic-boom@2.8.0": { - "type": "npm", - "name": "npm:sonic-boom@2.8.0", - "data": { - "version": "2.8.0", - "packageName": "sonic-boom", - "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" - } - }, - "npm:sonic-boom": { - "type": "npm", - "name": "npm:sonic-boom", - "data": { - "version": "3.3.0", - "packageName": "sonic-boom", - "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "npm:piscina": { - "type": "npm", - "name": "npm:piscina", - "data": { - "version": "4.1.0", - "packageName": "piscina", - "hash": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==" - } - }, - "npm:pkg-conf": { - "type": "npm", - "name": "npm:pkg-conf", - "data": { - "version": "2.1.0", - "packageName": "pkg-conf", - "hash": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==" - } - }, - "npm:pkginfo": { - "type": "npm", - "name": "npm:pkginfo", - "data": { - "version": "0.4.1", - "packageName": "pkginfo", - "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" - } - }, - "npm:please-upgrade-node": { - "type": "npm", - "name": "npm:please-upgrade-node", - "data": { - "version": "3.2.0", - "packageName": "please-upgrade-node", - "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" - } - }, - "npm:pluralize": { - "type": "npm", - "name": "npm:pluralize", - "data": { - "version": "8.0.0", - "packageName": "pluralize", - "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.32", - "packageName": "portfinder", - "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" - } - }, - "npm:portscanner": { - "type": "npm", - "name": "npm:portscanner", - "data": { - "version": "2.2.0", - "packageName": "portscanner", - "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.31", - "packageName": "postcss", - "hash": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "9.0.1", - "packageName": "postcss-calc", - "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "6.0.1", - "packageName": "postcss-colormin", - "hash": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-convert-values", - "hash": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-comments", - "hash": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-empty", - "hash": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "6.0.1", - "packageName": "postcss-discard-overridden", - "hash": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==" - } - }, - "npm:postcss-import": { - "type": "npm", - "name": "npm:postcss-import", - "data": { - "version": "14.1.0", - "packageName": "postcss-import", - "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "6.0.1", - "packageName": "postcss-merge-longhand", - "hash": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "6.0.2", - "packageName": "postcss-merge-rules", - "hash": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-font-values", - "hash": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-gradients", - "hash": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-params", - "hash": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "6.0.1", - "packageName": "postcss-minify-selectors", - "hash": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.3", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-charset", - "hash": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-positions", - "hash": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-string", - "hash": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-url", - "hash": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "6.0.1", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "6.0.1", - "packageName": "postcss-ordered-values", - "hash": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "6.0.1", - "packageName": "postcss-reduce-initial", - "hash": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "6.0.1", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "6.0.1", - "packageName": "postcss-svgo", - "hash": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "6.0.1", - "packageName": "postcss-unique-selectors", - "hash": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.8.8", - "packageName": "prettier", - "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:process-warning": { - "type": "npm", - "name": "npm:process-warning", - "data": { - "version": "1.0.0", - "packageName": "process-warning", - "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:property-expr": { - "type": "npm", - "name": "npm:property-expr", - "data": { - "version": "2.0.6", - "packageName": "property-expr", - "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" - } - }, - "npm:proto-list": { - "type": "npm", - "name": "npm:proto-list", - "data": { - "version": "1.2.4", - "packageName": "proto-list", - "hash": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:prr": { - "type": "npm", - "name": "npm:prr", - "data": { - "version": "1.0.1", - "packageName": "prr", - "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - } - }, - "npm:pseudomap": { - "type": "npm", - "name": "npm:pseudomap", - "data": { - "version": "1.0.2", - "packageName": "pseudomap", - "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.9.0", - "packageName": "psl", - "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.4", - "packageName": "pure-rand", - "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:quick-format-unescaped": { - "type": "npm", - "name": "npm:quick-format-unescaped", - "data": { - "version": "4.0.4", - "packageName": "quick-format-unescaped", - "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:randomatic": { - "type": "npm", - "name": "npm:randomatic", - "data": { - "version": "3.1.1", - "packageName": "randomatic", - "hash": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:read-cache": { - "type": "npm", - "name": "npm:read-cache", - "data": { - "version": "1.0.0", - "packageName": "read-cache", - "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" - } - }, - "npm:read-pkg-up": { - "type": "npm", - "name": "npm:read-pkg-up", - "data": { - "version": "11.0.0", - "packageName": "read-pkg-up", - "hash": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==" - } - }, - "npm:readable-web-to-node-stream": { - "type": "npm", - "name": "npm:readable-web-to-node-stream", - "data": { - "version": "3.0.2", - "packageName": "readable-web-to-node-stream", - "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:real-require": { - "type": "npm", - "name": "npm:real-require", - "data": { - "version": "0.1.0", - "packageName": "real-require", - "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" - } - }, - "npm:redeyed": { - "type": "npm", - "name": "npm:redeyed", - "data": { - "version": "2.1.1", - "packageName": "redeyed", - "hash": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==" - } - }, - "npm:reflect-metadata": { - "type": "npm", - "name": "npm:reflect-metadata", - "data": { - "version": "0.1.14", - "packageName": "reflect-metadata", - "hash": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.1", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regex-parser": { - "type": "npm", - "name": "npm:regex-parser", - "data": { - "version": "2.2.11", - "packageName": "regex-parser", - "hash": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.1", - "packageName": "regexp.prototype.flags", - "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:registry-auth-token": { - "type": "npm", - "name": "npm:registry-auth-token", - "data": { - "version": "5.0.2", - "packageName": "registry-auth-token", - "hash": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:remarkable": { - "type": "npm", - "name": "npm:remarkable", - "data": { - "version": "1.7.4", - "packageName": "remarkable", - "hash": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==" - } - }, - "npm:repeat-element": { - "type": "npm", - "name": "npm:repeat-element", - "data": { - "version": "1.1.4", - "packageName": "repeat-element", - "hash": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" - } - }, - "npm:repeat-string": { - "type": "npm", - "name": "npm:repeat-string", - "data": { - "version": "1.6.1", - "packageName": "repeat-string", - "hash": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" - } - }, - "npm:replace-json-property": { - "type": "npm", - "name": "npm:replace-json-property", - "data": { - "version": "1.9.0", - "packageName": "replace-json-property", - "hash": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==" - } - }, - "npm:request-progress": { - "type": "npm", - "name": "npm:request-progress", - "data": { - "version": "3.0.0", - "packageName": "request-progress", - "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-url-loader": { - "type": "npm", - "name": "npm:resolve-url-loader", - "data": { - "version": "5.0.0", - "packageName": "resolve-url-loader", - "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" - } - }, - "npm:resp-modifier": { - "type": "npm", - "name": "npm:resp-modifier", - "data": { - "version": "6.0.2", - "packageName": "resp-modifier", - "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.1", - "packageName": "responselike", - "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.3.0", - "packageName": "rfdc", - "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" - } - }, - "npm:rollup": { - "type": "npm", - "name": "npm:rollup", - "data": { - "version": "3.29.4", - "packageName": "rollup", - "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:rx": { - "type": "npm", - "name": "npm:rx", - "data": { - "version": "4.1.0", - "packageName": "rx", - "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" - } - }, - "npm:rxjs": { - "type": "npm", - "name": "npm:rxjs", - "data": { - "version": "7.8.1", - "packageName": "rxjs", - "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" - } - }, - "npm:safe-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.0.1", - "packageName": "safe-array-concat", - "hash": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.0.0", - "packageName": "safe-regex-test", - "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" - } - }, - "npm:safe-stable-stringify": { - "type": "npm", - "name": "npm:safe-stable-stringify", - "data": { - "version": "2.4.3", - "packageName": "safe-stable-stringify", - "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.69.5", - "packageName": "sass", - "hash": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:sax@1.2.4": { - "type": "npm", - "name": "npm:sax@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "sax", - "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:secure-compare": { - "type": "npm", - "name": "npm:secure-compare", - "data": { - "version": "3.0.1", - "packageName": "secure-compare", - "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.4.1", - "packageName": "selfsigned", - "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" - } - }, - "npm:semantic-release": { - "type": "npm", - "name": "npm:semantic-release", - "data": { - "version": "22.0.12", - "packageName": "semantic-release", - "hash": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==" - } - }, - "npm:semver-compare": { - "type": "npm", - "name": "npm:semver-compare", - "data": { - "version": "1.0.0", - "packageName": "semver-compare", - "hash": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==" - } - }, - "npm:semver-diff": { - "type": "npm", - "name": "npm:semver-diff", - "data": { - "version": "4.0.0", - "packageName": "semver-diff", - "hash": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==" - } - }, - "npm:semver-regex": { - "type": "npm", - "name": "npm:semver-regex", - "data": { - "version": "4.0.5", - "packageName": "semver-regex", - "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" - } - }, - "npm:semver-truncate": { - "type": "npm", - "name": "npm:semver-truncate", - "data": { - "version": "3.0.0", - "packageName": "semver-truncate", - "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, - "npm:server-destroy": { - "type": "npm", - "name": "npm:server-destroy", - "data": { - "version": "1.0.1", - "packageName": "server-destroy", - "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.1.1", - "packageName": "set-function-length", - "hash": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.1", - "packageName": "set-function-name", - "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" - } - }, - "npm:set-getter": { - "type": "npm", - "name": "npm:set-getter", - "data": { - "version": "0.1.1", - "packageName": "set-getter", - "hash": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.4", - "packageName": "side-channel", - "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - } - }, - "npm:signale": { - "type": "npm", - "name": "npm:signale", - "data": { - "version": "1.4.0", - "packageName": "signale", - "hash": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:skin-tone": { - "type": "npm", - "name": "npm:skin-tone", - "data": { - "version": "2.0.0", - "packageName": "skin-tone", - "hash": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==" - } - }, - "npm:socket.io": { - "type": "npm", - "name": "npm:socket.io", - "data": { - "version": "4.7.2", - "packageName": "socket.io", - "hash": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==" - } - }, - "npm:socket.io-adapter": { - "type": "npm", - "name": "npm:socket.io-adapter", - "data": { - "version": "2.5.2", - "packageName": "socket.io-adapter", - "hash": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==" - } - }, - "npm:socket.io-client": { - "type": "npm", - "name": "npm:socket.io-client", - "data": { - "version": "4.7.2", - "packageName": "socket.io-client", - "hash": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==" - } - }, - "npm:socket.io-parser": { - "type": "npm", - "name": "npm:socket.io-parser", - "data": { - "version": "4.2.4", - "packageName": "socket.io-parser", - "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "1.1.2", - "packageName": "sort-keys", - "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" - } - }, - "npm:sort-keys-length": { - "type": "npm", - "name": "npm:sort-keys-length", - "data": { - "version": "1.0.1", - "packageName": "sort-keys-length", - "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" - } - }, - "npm:source-map-explorer": { - "type": "npm", - "name": "npm:source-map-explorer", - "data": { - "version": "2.5.3", - "packageName": "source-map-explorer", - "hash": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.0.2", - "packageName": "source-map-js", - "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - } - }, - "npm:spawn-error-forwarder": { - "type": "npm", - "name": "npm:spawn-error-forwarder", - "data": { - "version": "1.0.0", - "packageName": "spawn-error-forwarder", - "hash": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.18.0", - "packageName": "sshpk", - "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:steno": { - "type": "npm", - "name": "npm:steno", - "data": { - "version": "0.4.4", - "packageName": "steno", - "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" - } - }, - "npm:stream-combiner2": { - "type": "npm", - "name": "npm:stream-combiner2", - "data": { - "version": "1.1.1", - "packageName": "stream-combiner2", - "hash": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==" - } - }, - "npm:stream-shift": { - "type": "npm", - "name": "npm:stream-shift", - "data": { - "version": "1.0.1", - "packageName": "stream-shift", - "hash": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" - } - }, - "npm:stream-throttle": { - "type": "npm", - "name": "npm:stream-throttle", - "data": { - "version": "0.1.3", - "packageName": "stream-throttle", - "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.2", - "packageName": "string-argv", - "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string.prototype.padend": { - "type": "npm", - "name": "npm:string.prototype.padend", - "data": { - "version": "3.1.5", - "packageName": "string.prototype.padend", - "hash": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.8", - "packageName": "string.prototype.trim", - "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimend", - "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimstart", - "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" - } - }, - "npm:strip-color": { - "type": "npm", - "name": "npm:strip-color", - "data": { - "version": "0.1.0", - "packageName": "strip-color", - "hash": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - } - }, - "npm:strip-outer": { - "type": "npm", - "name": "npm:strip-outer", - "data": { - "version": "2.0.0", - "packageName": "strip-outer", - "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" - } - }, - "npm:strong-log-transformer": { - "type": "npm", - "name": "npm:strong-log-transformer", - "data": { - "version": "2.1.0", - "packageName": "strong-log-transformer", - "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" - } - }, - "npm:strtok3": { - "type": "npm", - "name": "npm:strtok3", - "data": { - "version": "7.0.0", - "packageName": "strtok3", - "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "3.3.3", - "packageName": "style-loader", - "hash": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "6.0.1", - "packageName": "stylehacks", - "hash": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==" - } - }, - "npm:stylus": { - "type": "npm", - "name": "npm:stylus", - "data": { - "version": "0.59.0", - "packageName": "stylus", - "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" - } - }, - "npm:stylus-loader": { - "type": "npm", - "name": "npm:stylus-loader", - "data": { - "version": "7.1.3", - "packageName": "stylus-loader", - "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" - } - }, - "npm:supports-hyperlinks": { - "type": "npm", - "name": "npm:supports-hyperlinks", - "data": { - "version": "3.0.0", - "packageName": "supports-hyperlinks", - "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svgo": { - "type": "npm", - "name": "npm:svgo", - "data": { - "version": "3.1.0", - "packageName": "svgo", - "hash": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==" - } - }, - "npm:symbol-observable": { - "type": "npm", - "name": "npm:symbol-observable", - "data": { - "version": "4.0.0", - "packageName": "symbol-observable", - "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:temp": { - "type": "npm", - "name": "npm:temp", - "data": { - "version": "0.9.4", - "packageName": "temp", - "hash": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "3.0.0", - "packageName": "temp-dir", - "hash": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==" - } - }, - "npm:tempy": { - "type": "npm", - "name": "npm:tempy", - "data": { - "version": "3.1.0", - "packageName": "tempy", - "hash": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.24.0", - "packageName": "terser", - "hash": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.9", - "packageName": "terser-webpack-plugin", - "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-extensions": { - "type": "npm", - "name": "npm:text-extensions", - "data": { - "version": "2.4.0", - "packageName": "text-extensions", - "hash": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==" - } - }, - "npm:thread-stream": { - "type": "npm", - "name": "npm:thread-stream", - "data": { - "version": "0.15.2", - "packageName": "thread-stream", - "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" - } - }, - "npm:throttleit": { - "type": "npm", - "name": "npm:throttleit", - "data": { - "version": "1.0.1", - "packageName": "throttleit", - "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.1.0", - "packageName": "thunky", - "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - } - }, - "npm:to-object-path": { - "type": "npm", - "name": "npm:to-object-path", - "data": { - "version": "0.3.0", - "packageName": "to-object-path", - "hash": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:token-types": { - "type": "npm", - "name": "npm:token-types", - "data": { - "version": "5.0.1", - "packageName": "token-types", - "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" - } - }, - "npm:toml": { - "type": "npm", - "name": "npm:toml", - "data": { - "version": "2.3.6", - "packageName": "toml", - "hash": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" - } - }, - "npm:toposort": { - "type": "npm", - "name": "npm:toposort", - "data": { - "version": "2.0.2", - "packageName": "toposort", - "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.6.7", - "packageName": "traverse", - "hash": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==" - } - }, - "npm:tree-kill": { - "type": "npm", - "name": "npm:tree-kill", - "data": { - "version": "1.2.2", - "packageName": "tree-kill", - "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" - } - }, - "npm:trim-repeated": { - "type": "npm", - "name": "npm:trim-repeated", - "data": { - "version": "2.0.0", - "packageName": "trim-repeated", - "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "1.0.3", - "packageName": "ts-api-utils", - "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.1.1", - "packageName": "ts-jest", - "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" - } - }, - "npm:ts-loader": { - "type": "npm", - "name": "npm:ts-loader", - "data": { - "version": "9.5.1", - "packageName": "ts-loader", - "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "10.9.1", - "packageName": "ts-node", - "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tsconfig-paths-webpack-plugin": { - "type": "npm", - "name": "npm:tsconfig-paths-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "tsconfig-paths-webpack-plugin", - "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.6.2", - "packageName": "tslib", - "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - } - }, - "npm:tsscmp": { - "type": "npm", - "name": "npm:tsscmp", - "data": { - "version": "1.0.6", - "packageName": "tsscmp", - "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" - } - }, - "npm:tweetnacl": { - "type": "npm", - "name": "npm:tweetnacl", - "data": { - "version": "0.14.5", - "packageName": "tweetnacl", - "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - } - }, - "npm:typanion": { - "type": "npm", - "name": "npm:typanion", - "data": { - "version": "3.14.0", - "packageName": "typanion", - "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.0", - "packageName": "typed-array-buffer", - "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-length", - "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-offset", - "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.4", - "packageName": "typed-array-length", - "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" - } - }, - "npm:typed-assert": { - "type": "npm", - "name": "npm:typed-assert", - "data": { - "version": "1.0.9", - "packageName": "typed-assert", - "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" - } - }, - "npm:typedarray": { - "type": "npm", - "name": "npm:typedarray", - "data": { - "version": "0.0.6", - "packageName": "typedarray", - "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.2.2", - "packageName": "typescript", - "hash": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "1.0.37", - "packageName": "ua-parser-js", - "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.17.4", - "packageName": "uglify-js", - "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.2", - "packageName": "unbox-primitive", - "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" - } - }, - "npm:undici": { - "type": "npm", - "name": "npm:undici", - "data": { - "version": "5.27.2", - "packageName": "undici", - "hash": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-emoji-modifier-base": { - "type": "npm", - "name": "npm:unicode-emoji-modifier-base", - "data": { - "version": "1.0.0", - "packageName": "unicode-emoji-modifier-base", - "hash": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unicorn-magic": { - "type": "npm", - "name": "npm:unicorn-magic", - "data": { - "version": "0.1.0", - "packageName": "unicorn-magic", - "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" - } - }, - "npm:union": { - "type": "npm", - "name": "npm:union", - "data": { - "version": "0.5.0", - "packageName": "union", - "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" - } - }, - "npm:unique-string": { - "type": "npm", - "name": "npm:unique-string", - "data": { - "version": "3.0.0", - "packageName": "unique-string", - "hash": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==" - } - }, - "npm:universal-user-agent": { - "type": "npm", - "name": "npm:universal-user-agent", - "data": { - "version": "6.0.1", - "packageName": "universal-user-agent", - "hash": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" - } - }, - "npm:unix-crypt-td-js": { - "type": "npm", - "name": "npm:unix-crypt-td-js", - "data": { - "version": "1.1.4", - "packageName": "unix-crypt-td-js", - "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:untildify": { - "type": "npm", - "name": "npm:untildify", - "data": { - "version": "4.0.0", - "packageName": "untildify", - "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.0.13", - "packageName": "update-browserslist-db", - "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:v8-compile-cache-lib": { - "type": "npm", - "name": "npm:v8-compile-cache-lib", - "data": { - "version": "3.0.1", - "packageName": "v8-compile-cache-lib", - "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.2.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:verdaccio": { - "type": "npm", - "name": "npm:verdaccio", - "data": { - "version": "5.29.0", - "packageName": "verdaccio", - "hash": "sha512-Le3MhojXDCoXIDFNp5VaAalu8FtoZAJo6YTWxEAKCOO4MFN19XzwZsu4FkLrPHc5fPhyhqerTHBsG2qtoutxQA==" - } - }, - "npm:verdaccio-audit": { - "type": "npm", - "name": "npm:verdaccio-audit", - "data": { - "version": "12.0.0-next.4", - "packageName": "verdaccio-audit", - "hash": "sha512-X8Qe8Qv/BZPng7dQCCdot8g53eU65zM6GfLw0P1A68Hf5dzv/GJgekiPnIAXgSw5KJMKE8loNzd6+FfFLnQUSA==" - } - }, - "npm:verdaccio-htpasswd": { - "type": "npm", - "name": "npm:verdaccio-htpasswd", - "data": { - "version": "12.0.0-next.4", - "packageName": "verdaccio-htpasswd", - "hash": "sha512-q4SxBIWMkVPUoKk2/JSPJjlTdC8treuLtVV/omRYjEgSbwJBhJlSeqwEiHlv0/idv/cfwXoDR3/WY9CWq8gieg==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" - } - }, - "npm:vite": { - "type": "npm", - "name": "npm:vite", - "data": { - "version": "4.5.1", - "packageName": "vite", - "hash": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.0", - "packageName": "watchpack", - "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.89.0", - "packageName": "webpack", - "hash": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "6.1.1", - "packageName": "webpack-dev-middleware", - "hash": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==" - } - }, - "npm:webpack-dev-middleware@5.3.3": { - "type": "npm", - "name": "npm:webpack-dev-middleware@5.3.3", - "data": { - "version": "5.3.3", - "packageName": "webpack-dev-middleware", - "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "4.15.1", - "packageName": "webpack-dev-server", - "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.10.0", - "packageName": "webpack-merge", - "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" - } - }, - "npm:webpack-node-externals": { - "type": "npm", - "name": "npm:webpack-node-externals", - "data": { - "version": "3.0.0", - "packageName": "webpack-node-externals", - "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack-subresource-integrity": { - "type": "npm", - "name": "npm:webpack-subresource-integrity", - "data": { - "version": "5.1.0", - "packageName": "webpack-subresource-integrity", - "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.0.2", - "packageName": "which-boxed-primitive", - "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.13", - "packageName": "which-typed-array", - "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" - } - }, - "npm:wildcard": { - "type": "npm", - "name": "npm:wildcard", - "data": { - "version": "2.0.1", - "packageName": "wildcard", - "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xmlhttprequest-ssl": { - "type": "npm", - "name": "npm:xmlhttprequest-ssl", - "data": { - "version": "2.0.0", - "packageName": "xmlhttprequest-ssl", - "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" - } - }, - "npm:xtend": { - "type": "npm", - "name": "npm:xtend", - "data": { - "version": "4.0.2", - "packageName": "xtend", - "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" - } - }, - "npm:yn": { - "type": "npm", - "name": "npm:yn", - "data": { - "version": "3.1.1", - "packageName": "yn", - "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" - } - }, - "npm:yup": { - "type": "npm", - "name": "npm:yup", - "data": { - "version": "0.32.11", - "packageName": "yup", - "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" - } - }, - "npm:zone.js": { - "type": "npm", - "name": "npm:zone.js", - "data": { - "version": "0.14.2", - "packageName": "zone.js", - "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" - } - } - }, - "dependencies": { - "tooling-nx-plugin-generators": [ - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@angular/router", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@nx/angular", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "tooling-nx-plugin-config", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@ngrx/store", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:nx", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "tooling-nx-plugin-validators", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "tooling-nx-plugin-generators", - "target": "npm:inquirer-autocomplete-prompt", - "type": "static" - } - ], - "tooling-nx-plugin-validators": [ - { - "source": "tooling-nx-plugin-validators", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "tooling-nx-plugin-validators", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "tooling-nx-plugin-validators", - "target": "tooling-nx-plugin-config", - "type": "static" - } - ], - "tooling-nx-plugin-config": [ - { - "source": "tooling-nx-plugin-config", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "tooling-nx-plugin-config", - "target": "npm:@types/inquirer", - "type": "static" - }, - { - "source": "tooling-nx-plugin-config", - "target": "npm:@nx/devkit", - "type": "static" - } - ], - "ax-nx-plugin-workspace": [ - { - "source": "ax-nx-plugin-workspace", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "ax-nx-plugin-workspace", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "ax-nx-plugin-workspace", - "target": "npm:@nx/devkit", - "type": "static" - } - ], - "npm:@ampproject/remapping": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@angular-devkit/architect": [ - { - "source": "npm:@angular-devkit/architect", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/architect", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@angular-devkit/build-angular": [ - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/build-webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ngtools/webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@vitejs/plugin-basic-ssl", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browser-sync", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:copy-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:critters", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:inquirer@9.2.11", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:karma-source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mini-css-extract-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:parse5-html-rewriting-stream", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:resolve-url-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-subresource-integrity", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild", - "type": "static" - } - ], - "npm:figures@5.0.0": [ - { - "source": "npm:figures@5.0.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:figures@5.0.0", - "target": "npm:is-unicode-supported@1.3.0", - "type": "static" - } - ], - "npm:inquirer@9.2.11": [ - { - "source": "npm:inquirer@9.2.11", - "target": "npm:@ljharb/through", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:cli-width@4.1.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:figures@5.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:run-async@3.0.0", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:inquirer@9.2.11", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:@angular-devkit/build-webpack": [ - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@angular-devkit/core": [ - { - "source": "npm:@angular-devkit/core", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@angular-devkit/schematics": [ - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@angular-eslint/eslint-plugin": [ - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - } - ], - "npm:@angular-eslint/eslint-plugin-template": [ - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:axobject-query", - "type": "static" - } - ], - "npm:@angular-eslint/template-parser": [ - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint-scope", - "type": "static" - } - ], - "npm:@angular-eslint/utils": [ - { - "source": "npm:@angular-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - } - ], - "npm:@angular/animations": [ - { - "source": "npm:@angular/animations", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/animations", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/cdk": [ - { - "source": "npm:@angular/cdk", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/cdk", - "target": "npm:parse5", - "type": "static" - } - ], - "npm:@angular/cli": [ - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@schematics/angular@17.0.7", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:inquirer@9.2.11", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:symbol-observable", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:@schematics/angular@17.0.7": [ - { - "source": "npm:@schematics/angular@17.0.7", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@schematics/angular@17.0.7", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@schematics/angular@17.0.7", - "target": "npm:jsonc-parser", - "type": "static" - } - ], - "npm:@angular/common": [ - { - "source": "npm:@angular/common", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/compiler": [ - { - "source": "npm:@angular/compiler", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/compiler-cli": [ - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:reflect-metadata", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:@angular/core": [ - { - "source": "npm:@angular/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/forms": [ - { - "source": "npm:@angular/forms", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/platform-browser": [ - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/animations", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/platform-browser-dynamic": [ - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/router": [ - { - "source": "npm:@angular/router", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@babel/code-frame": [ - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:ansi-styles@3.2.1": [ - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - } - ], - "npm:chalk@2.4.2": [ - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - } - ], - "npm:color-convert@1.9.3": [ - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - } - ], - "npm:supports-color@5.5.0": [ - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - } - ], - "npm:@babel/core": [ - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/generator": [ - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/helper-annotate-as-pure": [ - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-compilation-targets": [ - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-create-class-features-plugin": [ - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-create-regexp-features-plugin": [ - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-define-polyfill-provider": [ - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:@babel/helper-function-name": [ - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-hoist-variables": [ - { - "source": "npm:@babel/helper-hoist-variables", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-member-expression-to-functions": [ - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-imports": [ - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-transforms": [ - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/helper-optimise-call-expression": [ - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-remap-async-to-generator": [ - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - } - ], - "npm:@babel/helper-replace-supers": [ - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - } - ], - "npm:@babel/helper-simple-access": [ - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-skip-transparent-expression-wrappers": [ - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-split-export-declaration": [ - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-wrap-function": [ - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helpers": [ - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/highlight": [ - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-decorators": [ - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-private-property-in-object": [ - { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-async-generators": [ - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-bigint": [ - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-properties": [ - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-static-block": [ - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-decorators": [ - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-dynamic-import": [ - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-export-namespace-from": [ - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-assertions": [ - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-attributes": [ - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-meta": [ - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-json-strings": [ - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-jsx": [ - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-numeric-separator": [ - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-object-rest-spread": [ - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-chaining": [ - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-private-property-in-object": [ - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-top-level-await": [ - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-typescript": [ - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-arrow-functions": [ - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-generator-functions": [ - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-to-generator": [ - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoped-functions": [ - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoping": [ - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-properties": [ - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-static-block": [ - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - } - ], - "npm:@babel/plugin-transform-classes": [ - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - } - ], - "npm:@babel/plugin-transform-computed-properties": [ - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - } - ], - "npm:@babel/plugin-transform-destructuring": [ - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dotall-regex": [ - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-duplicate-keys": [ - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dynamic-import": [ - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - } - ], - "npm:@babel/plugin-transform-exponentiation-operator": [ - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-export-namespace-from": [ - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - } - ], - "npm:@babel/plugin-transform-for-of": [ - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-function-name": [ - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-json-strings": [ - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - } - ], - "npm:@babel/plugin-transform-literals": [ - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-member-expression-literals": [ - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-amd": [ - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-commonjs": [ - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-systemjs": [ - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-umd": [ - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-named-capturing-groups-regex": [ - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-new-target": [ - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-numeric-separator": [ - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-rest-spread": [ - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-super": [ - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-chaining": [ - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-transform-parameters": [ - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-methods": [ - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-property-in-object": [ - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - } - ], - "npm:@babel/plugin-transform-property-literals": [ - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-regenerator": [ - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - } - ], - "npm:@babel/plugin-transform-reserved-words": [ - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-runtime": [ - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/plugin-transform-shorthand-properties": [ - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-spread": [ - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-sticky-regex": [ - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-template-literals": [ - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typeof-symbol": [ - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typescript": [ - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-escapes": [ - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-property-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/preset-env": [ - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/preset-modules": [ - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:@babel/preset-typescript": [ - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - } - ], - "npm:@babel/runtime": [ - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@babel/template": [ - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/traverse": [ - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator@7.23.6", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - } - ], - "npm:@babel/generator@7.23.6": [ - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.23.6", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/types": [ - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - } - ], - "npm:@cspotcode/source-map-support": [ - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping@0.3.9": [ - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@cypress/request": [ - { - "source": "npm:@cypress/request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@cypress/xvfb": [ - { - "source": "npm:@cypress/xvfb", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:lodash.once", - "type": "static" - } - ], - "npm:debug@3.2.7": [ - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - } - ], - "npm:@eslint-community/eslint-utils": [ - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@eslint/eslintrc": [ - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:ajv@6.12.6": [ - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:globals@13.24.0": [ - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - } - ], - "npm:js-yaml@4.1.0": [ - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - } - ], - "npm:minimatch@3.1.2": [ - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:@humanwhocodes/config-array": [ - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:@humanwhocodes/object-schema", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:@isaacs/cliui": [ - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - } - ], - "npm:string-width@5.1.2": [ - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:strip-ansi@7.1.0": [ - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi@8.1.0": [ - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:@istanbuljs/load-nyc-config": [ - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@jest/console": [ - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/core": [ - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:@jest/environment": [ - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/expect": [ - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:@jest/expect-utils": [ - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - } - ], - "npm:@jest/fake-timers": [ - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:@jest/globals": [ - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/reporters": [ - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - } - ], - "npm:@jest/schemas": [ - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - } - ], - "npm:@jest/source-map": [ - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:@jest/test-result": [ - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - } - ], - "npm:@jest/test-sequencer": [ - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/transform": [ - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:@jest/types": [ - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk", - "type": "static" - } - ], - "npm:@jridgewell/gen-mapping": [ - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/source-map": [ - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping": [ - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@ljharb/through": [ - { - "source": "npm:@ljharb/through", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:@mole-inc/bin-wrapper": [ - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-version-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:ext-name", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:file-type", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:filenamify", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:os-filter-obj", - "type": "static" - } - ], - "npm:@ngrx/store": [ - { - "source": "npm:@ngrx/store", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@ngrx/store", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@ngrx/store", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@ngtools/webpack": [ - { - "source": "npm:@ngtools/webpack", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@nodelib/fs.scandir": [ - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - } - ], - "npm:@nodelib/fs.walk": [ - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - } - ], - "npm:@npmcli/agent": [ - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent@7.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - } - ], - "npm:http-proxy-agent@7.0.0": [ - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.0", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@npmcli/fs": [ - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@npmcli/git": [ - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:which@4.0.0": [ - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - } - ], - "npm:@npmcli/installed-package-contents": [ - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:@npmcli/promise-spawn": [ - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:@npmcli/run-script": [ - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:@nrwl/angular": [ - { - "source": "npm:@nrwl/angular", - "target": "npm:@nx/angular", - "type": "static" - }, - { - "source": "npm:@nrwl/angular", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nrwl/cypress": [ - { - "source": "npm:@nrwl/cypress", - "target": "npm:@nx/cypress", - "type": "static" - } - ], - "npm:@nrwl/devkit": [ - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - } - ], - "npm:@nrwl/eslint-plugin-nx": [ - { - "source": "npm:@nrwl/eslint-plugin-nx", - "target": "npm:@nx/eslint-plugin", - "type": "static" - } - ], - "npm:@nrwl/jest": [ - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - } - ], - "npm:@nrwl/js": [ - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - } - ], - "npm:@nrwl/nx-plugin": [ - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - } - ], - "npm:@nrwl/tao": [ - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nrwl/web": [ - { - "source": "npm:@nrwl/web", - "target": "npm:@nx/web", - "type": "static" - } - ], - "npm:@nrwl/webpack": [ - { - "source": "npm:@nrwl/webpack", - "target": "npm:@nx/webpack", - "type": "static" - } - ], - "npm:@nrwl/workspace": [ - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - } - ], - "npm:@nx/angular": [ - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nrwl/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack-merge", - "type": "static" - } - ], - "npm:lru-cache@6.0.0": [ - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:semver@7.5.3": [ - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache@6.0.0", - "type": "static" - } - ], - "npm:@nx/cypress": [ - { - "source": "npm:@nx/cypress", - "target": "npm:cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nrwl/cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/devkit": [ - { - "source": "npm:@nx/devkit", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/eslint": [ - { - "source": "npm:@nx/eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@nx/eslint-plugin": [ - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nrwl/eslint-plugin-nx", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:jsonc-eslint-parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/jest": [ - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/js": [ - { - "source": "npm:@nx/js", - "target": "npm:verdaccio", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fast-glob@3.2.7", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ora@5.3.0", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:fast-glob@3.2.7": [ - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:ora@5.3.0": [ - { - "source": "npm:ora@5.3.0", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:source-map-support@0.5.19": [ - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:@nx/linter": [ - { - "source": "npm:@nx/linter", - "target": "npm:@nx/eslint", - "type": "static" - } - ], - "npm:@nx/plugin": [ - { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/web": [ - { - "source": "npm:@nx/web", - "target": "npm:@nrwl/web", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:http-server", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/webpack": [ - { - "source": "npm:@nx/webpack", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nrwl/webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:copy-webpack-plugin@10.2.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-minimizer-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less@4.1.3", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:mini-css-extract-plugin@2.4.7", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:parse5@4.0.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-import", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-loader@6.2.1", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass-loader@12.6.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:source-map-loader@3.0.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:ts-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tsconfig-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-node-externals", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-subresource-integrity", - "type": "static" - } - ], - "npm:copy-webpack-plugin@10.2.4": [ - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:globby@12.2.0", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:cosmiconfig@7.1.0": [ - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:glob-parent@6.0.2": [ - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:globby@12.2.0": [ - { - "source": "npm:globby@12.2.0", - "target": "npm:array-union@3.0.1", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:slash@4.0.0", - "type": "static" - } - ], - "npm:iconv-lite@0.6.3": [ - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:less@4.1.3": [ - { - "source": "npm:less@4.1.3", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:loader-utils@2.0.4": [ - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - } - ], - "npm:make-dir@2.1.0": [ - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.2", - "type": "static" - } - ], - "npm:mini-css-extract-plugin@2.4.7": [ - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:postcss-loader@6.2.1": [ - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:semver", - "type": "static" - } - ], - "npm:sass-loader@12.6.0": [ - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:neo-async", - "type": "static" - } - ], - "npm:source-map-loader@3.0.2": [ - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader@3.0.2", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:@nx/workspace": [ - { - "source": "npm:@nx/workspace", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:@octokit/core": [ - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/auth-token", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/graphql", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/endpoint": [ - { - "source": "npm:@octokit/endpoint", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/graphql": [ - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/plugin-paginate-rest": [ - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - } - ], - "npm:@octokit/plugin-retry": [ - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-retry", - "target": "npm:bottleneck", - "type": "static" - } - ], - "npm:@octokit/plugin-throttling": [ - { - "source": "npm:@octokit/plugin-throttling", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-throttling", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-throttling", - "target": "npm:bottleneck", - "type": "static" - } - ], - "npm:@octokit/request": [ - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/endpoint", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/request-error": [ - { - "source": "npm:@octokit/request-error", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:once", - "type": "static" - } - ], - "npm:@octokit/types": [ - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types", - "type": "static" - } - ], - "npm:@phenomnomnominal/tsquery": [ - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:esquery", - "type": "static" - } - ], - "npm:@pnpm/network.ca-file": [ - { - "source": "npm:@pnpm/network.ca-file", - "target": "npm:graceful-fs@4.2.10", - "type": "static" - } - ], - "npm:@pnpm/npm-conf": [ - { - "source": "npm:@pnpm/npm-conf", - "target": "npm:@pnpm/config.env-replace", - "type": "static" - }, - { - "source": "npm:@pnpm/npm-conf", - "target": "npm:@pnpm/network.ca-file", - "type": "static" - }, - { - "source": "npm:@pnpm/npm-conf", - "target": "npm:config-chain", - "type": "static" - } - ], - "npm:@schematics/angular": [ - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/core@16.0.6", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/schematics@16.0.6", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:jsonc-parser", - "type": "static" - } - ], - "npm:@angular-devkit/core@16.0.6": [ - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core@16.0.6", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@angular-devkit/schematics@16.0.6": [ - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:@angular-devkit/core@16.0.6", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:magic-string@0.30.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics@16.0.6", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:magic-string@0.30.0": [ - { - "source": "npm:magic-string@0.30.0", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@semantic-release/changelog": [ - { - "source": "npm:@semantic-release/changelog", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:@semantic-release/error", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@semantic-release/changelog", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@semantic-release/commit-analyzer": [ - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:import-from-esm", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/commit-analyzer", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:@semantic-release/exec": [ - { - "source": "npm:@semantic-release/exec", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:@semantic-release/error", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@semantic-release/exec", - "target": "npm:parse-json", - "type": "static" - } - ], - "npm:@semantic-release/git": [ - { - "source": "npm:@semantic-release/git", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:@semantic-release/error", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@semantic-release/git", - "target": "npm:p-reduce", - "type": "static" - } - ], - "npm:@semantic-release/github": [ - { - "source": "npm:@semantic-release/github", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/plugin-retry", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@octokit/plugin-throttling", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:@semantic-release/error@4.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:aggregate-error@5.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:globby@14.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:http-proxy-agent@7.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:issue-parser", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:mime@4.0.1", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:p-filter", - "type": "static" - }, - { - "source": "npm:@semantic-release/github", - "target": "npm:url-join@5.0.0", - "type": "static" - } - ], - "npm:aggregate-error@5.0.0": [ - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:clean-stack@5.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@5.0.0", - "target": "npm:indent-string@5.0.0", - "type": "static" - } - ], - "npm:clean-stack@5.2.0": [ - { - "source": "npm:clean-stack@5.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - } - ], - "npm:fast-glob@3.3.2": [ - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.3.2", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:globby@14.0.0": [ - { - "source": "npm:globby@14.0.0", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:fast-glob@3.3.2", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:path-type@5.0.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.0", - "target": "npm:unicorn-magic", - "type": "static" - } - ], - "npm:@semantic-release/npm": [ - { - "source": "npm:@semantic-release/npm", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:@semantic-release/error@4.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:aggregate-error@5.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:execa@8.0.1", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:nerf-dart", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:normalize-url@8.0.0", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:npm", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:read-pkg@9.0.1", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:registry-auth-token", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@semantic-release/npm", - "target": "npm:tempy", - "type": "static" - } - ], - "npm:execa@8.0.1": [ - { - "source": "npm:execa@8.0.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:get-stream@8.0.1", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:human-signals@5.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:npm-run-path@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@8.0.1", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - } - ], - "npm:npm-run-path@5.1.0": [ - { - "source": "npm:npm-run-path@5.1.0", - "target": "npm:path-key@4.0.0", - "type": "static" - } - ], - "npm:onetime@6.0.0": [ - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - } - ], - "npm:parse-json@8.1.0": [ - { - "source": "npm:parse-json@8.1.0", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:index-to-position", - "type": "static" - }, - { - "source": "npm:parse-json@8.1.0", - "target": "npm:type-fest@4.8.3", - "type": "static" - } - ], - "npm:read-pkg@9.0.1": [ - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:parse-json@8.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:type-fest@4.8.3", - "type": "static" - }, - { - "source": "npm:read-pkg@9.0.1", - "target": "npm:unicorn-magic", - "type": "static" - } - ], - "npm:@semantic-release/release-notes-generator": [ - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:semantic-release", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-changelog-writer", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:import-from-esm", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:into-stream", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:@semantic-release/release-notes-generator", - "target": "npm:read-pkg-up", - "type": "static" - } - ], - "npm:@sigstore/bundle": [ - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - } - ], - "npm:@sigstore/sign": [ - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:make-fetch-happen", - "type": "static" - } - ], - "npm:@sigstore/tuf": [ - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - } - ], - "npm:@sinonjs/commons": [ - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:@sinonjs/fake-timers": [ - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - } - ], - "npm:@swc-node/core": [ - { - "source": "npm:@swc-node/core", - "target": "npm:@swc/core", - "type": "static" - } - ], - "npm:@swc-node/register": [ - { - "source": "npm:@swc-node/register", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/sourcemap-support", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@swc-node/sourcemap-support": [ - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@swc/cli": [ - { - "source": "npm:@swc/cli", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@mole-inc/bin-wrapper", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@swc/core": [ - { - "source": "npm:@swc/core", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/types", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-x64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-x64-msvc", - "type": "static" - } - ], - "npm:@swc/helpers": [ - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@szmarczak/http-timer": [ - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - } - ], - "npm:@tufjs/models": [ - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.3", - "type": "static" - } - ], - "npm:brace-expansion@2.0.1": [ - { - "source": "npm:brace-expansion@2.0.1", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:minimatch@9.0.3": [ - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:@types/babel__core": [ - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:@types/babel__generator": [ - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__template": [ - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__traverse": [ - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/body-parser": [ - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/bonjour": [ - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/cacheable-request": [ - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - } - ], - "npm:@types/connect": [ - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/connect-history-api-fallback": [ - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/cors": [ - { - "source": "npm:@types/cors", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/eslint": [ - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - } - ], - "npm:@types/eslint-scope": [ - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:@types/express": [ - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - } - ], - "npm:@types/express-serve-static-core": [ - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - } - ], - "npm:@types/graceful-fs": [ - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/http-proxy": [ - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/inquirer": [ - { - "source": "npm:@types/inquirer", - "target": "npm:@types/through", - "type": "static" - }, - { - "source": "npm:@types/inquirer", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@types/istanbul-lib-report": [ - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - } - ], - "npm:@types/istanbul-reports": [ - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/jest": [ - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:@types/jsdom": [ - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5", - "type": "static" - } - ], - "npm:@types/keyv": [ - { - "source": "npm:@types/keyv", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/node-forge": [ - { - "source": "npm:@types/node-forge", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/responselike": [ - { - "source": "npm:@types/responselike", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/send": [ - { - "source": "npm:@types/send", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/serve-index": [ - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - } - ], - "npm:@types/serve-static": [ - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/sockjs": [ - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/through": [ - { - "source": "npm:@types/through", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/ws": [ - { - "source": "npm:@types/ws", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/yargs": [ - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yauzl": [ - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin": [ - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils@6.15.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils@6.15.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/type-utils@6.15.0": [ - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:@typescript-eslint/utils@6.15.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@6.15.0", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/utils@6.15.0": [ - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.15.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@typescript-eslint/parser": [ - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager": [ - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/type-utils": [ - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree@6.13.1": [ - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:@typescript-eslint/visitor-keys@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.13.1", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys@6.13.1": [ - { - "source": "npm:@typescript-eslint/visitor-keys@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@6.13.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree": [ - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/utils": [ - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager@6.13.1": [ - { - "source": "npm:@typescript-eslint/scope-manager@6.13.1", - "target": "npm:@typescript-eslint/types@6.13.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@6.13.1", - "target": "npm:@typescript-eslint/visitor-keys@6.13.1", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys": [ - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@verdaccio/commons-api": [ - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-status-codes", - "type": "static" - } - ], - "npm:@verdaccio/config": [ - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:yup", - "type": "static" - } - ], - "npm:minimatch@7.4.6": [ - { - "source": "npm:minimatch@7.4.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:@verdaccio/core": [ - { - "source": "npm:@verdaccio/core", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@verdaccio/file-locking": [ - { - "source": "npm:@verdaccio/file-locking", - "target": "npm:lockfile", - "type": "static" - } - ], - "npm:@verdaccio/local-storage": [ - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/commons-api", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/file-locking", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:async@3.2.4", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lowdb", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:mkdirp@1.0.4", - "type": "static" - } - ], - "npm:@verdaccio/logger-7": [ - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:@verdaccio/logger-commons", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:pino", - "type": "static" - } - ], - "npm:@verdaccio/logger-commons": [ - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/logger-prettify", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@verdaccio/logger-prettify": [ - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:dayjs@1.11.7", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:pino-abstract-transport", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:sonic-boom", - "type": "static" - } - ], - "npm:@verdaccio/middleware": [ - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:mime@2.6.0", - "type": "static" - } - ], - "npm:@verdaccio/signature": [ - { - "source": "npm:@verdaccio/signature", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@verdaccio/tarball": [ - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@verdaccio/url": [ - { - "source": "npm:@verdaccio/url", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:validator@13.9.0", - "type": "static" - } - ], - "npm:@verdaccio/utils": [ - { - "source": "npm:@verdaccio/utils", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@vitejs/plugin-basic-ssl": [ - { - "source": "npm:@vitejs/plugin-basic-ssl", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@webassemblyjs/ast": [ - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-numbers": [ - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-wasm-section": [ - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - } - ], - "npm:@webassemblyjs/ieee754": [ - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - } - ], - "npm:@webassemblyjs/leb128": [ - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-edit": [ - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-gen": [ - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-opt": [ - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-parser": [ - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wast-printer": [ - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@yarnpkg/parsers": [ - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@zkochan/js-yaml": [ - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse@2.0.1", - "type": "static" - } - ], - "npm:abort-controller": [ - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - } - ], - "npm:accepts": [ - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - } - ], - "npm:acorn-globals": [ - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - } - ], - "npm:acorn-import-assertions": [ - { - "source": "npm:acorn-import-assertions", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:acorn-jsx": [ - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:adjust-sourcemap-loader": [ - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:regex-parser", - "type": "static" - } - ], - "npm:agent-base": [ - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - } - ], - "npm:aggregate-error": [ - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - } - ], - "npm:ajv": [ - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv-formats": [ - { - "source": "npm:ajv-formats", - "target": "npm:ajv", - "type": "static" - } - ], - "npm:ajv-keywords": [ - { - "source": "npm:ajv-keywords", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-keywords", - "target": "npm:fast-deep-equal", - "type": "static" - } - ], - "npm:ansi-escapes": [ - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:ansi-red": [ - { - "source": "npm:ansi-red", - "target": "npm:ansi-wrap", - "type": "static" - } - ], - "npm:ansi-styles": [ - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - } - ], - "npm:anymatch": [ - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:argparse": [ - { - "source": "npm:argparse", - "target": "npm:sprintf-js", - "type": "static" - } - ], - "npm:aria-query": [ - { - "source": "npm:aria-query", - "target": "npm:dequal", - "type": "static" - } - ], - "npm:array-buffer-byte-length": [ - { - "source": "npm:array-buffer-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:is-array-buffer", - "type": "static" - } - ], - "npm:arraybuffer.prototype.slice": [ - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-shared-array-buffer", - "type": "static" - } - ], - "npm:asn1": [ - { - "source": "npm:asn1", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:autolinker": [ - { - "source": "npm:autolinker", - "target": "npm:gulp-header", - "type": "static" - } - ], - "npm:autoprefixer": [ - { - "source": "npm:autoprefixer", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:axios": [ - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - } - ], - "npm:axobject-query": [ - { - "source": "npm:axobject-query", - "target": "npm:dequal", - "type": "static" - } - ], - "npm:babel-jest": [ - { - "source": "npm:babel-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - } - ], - "npm:babel-loader": [ - { - "source": "npm:babel-loader", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:find-cache-dir@4.0.0": [ - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:pkg-dir@7.0.0", - "type": "static" - } - ], - "npm:find-up@6.3.0": [ - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.2.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - } - ], - "npm:locate-path@7.2.0": [ - { - "source": "npm:locate-path@7.2.0", - "target": "npm:p-locate@6.0.0", - "type": "static" - } - ], - "npm:p-limit@4.0.0": [ - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - } - ], - "npm:p-locate@6.0.0": [ - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - } - ], - "npm:pkg-dir@7.0.0": [ - { - "source": "npm:pkg-dir@7.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - } - ], - "npm:babel-plugin-const-enum": [ - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:babel-plugin-istanbul": [ - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument@5.2.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - } - ], - "npm:istanbul-lib-instrument@5.2.1": [ - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:babel-plugin-jest-hoist": [ - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:babel-plugin-macros": [ - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs2": [ - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs3": [ - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-regenerator": [ - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - } - ], - "npm:babel-plugin-transform-typescript-metadata": [ - { - "source": "npm:babel-plugin-transform-typescript-metadata", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:babel-preset-current-node-syntax": [ - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - } - ], - "npm:babel-preset-jest": [ - { - "source": "npm:babel-preset-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - } - ], - "npm:basic-auth": [ - { - "source": "npm:basic-auth", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:bcrypt-pbkdf": [ - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:bin-check": [ - { - "source": "npm:bin-check", - "target": "npm:execa@0.7.0", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:executable", - "type": "static" - } - ], - "npm:cross-spawn@5.1.0": [ - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "type": "static" - } - ], - "npm:execa@0.7.0": [ - { - "source": "npm:execa@0.7.0", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:get-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:strip-eof", - "type": "static" - } - ], - "npm:lru-cache@4.1.5": [ - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - } - ], - "npm:npm-run-path@2.0.2": [ - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key@2.0.1", - "type": "static" - } - ], - "npm:shebang-command@1.2.0": [ - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - } - ], - "npm:which@1.3.1": [ - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:bin-version": [ - { - "source": "npm:bin-version", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:find-versions", - "type": "static" - } - ], - "npm:bin-version-check": [ - { - "source": "npm:bin-version-check", - "target": "npm:bin-version", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", - "type": "static" - } - ], - "npm:bl": [ - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream@3.6.2", - "type": "static" - } - ], - "npm:readable-stream@3.6.2": [ - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.2", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:body-parser": [ - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:debug@2.6.9": [ - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:on-finished@2.4.1": [ - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:qs@6.11.0": [ - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:bonjour-service": [ - { - "source": "npm:bonjour-service", - "target": "npm:array-flatten@2.1.2", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:dns-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:multicast-dns", - "type": "static" - } - ], - "npm:brace-expansion": [ - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:concat-map", - "type": "static" - } - ], - "npm:braces": [ - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - } - ], - "npm:browser-sync": [ - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-client", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-ui", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:bs-recipes", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:dev-ip", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:easy-extender", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:eazy-logger", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fs-extra@3.0.1", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:localtunnel", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:opn", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:portscanner", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:resp-modifier", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:rx", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:socket.io", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:ua-parser-js", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:browser-sync-client": [ - { - "source": "npm:browser-sync-client", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:mitt", - "type": "static" - } - ], - "npm:browser-sync-ui": [ - { - "source": "npm:browser-sync-ui", - "target": "npm:async-each-series", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:socket.io-client", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:stream-throttle", - "type": "static" - } - ], - "npm:fs-extra@3.0.1": [ - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:jsonfile@3.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:universalify@0.1.2", - "type": "static" - } - ], - "npm:jsonfile@3.0.1": [ - { - "source": "npm:jsonfile@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:browserslist": [ - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - } - ], - "npm:bs-logger": [ - { - "source": "npm:bs-logger", - "target": "npm:fast-json-stable-stringify", - "type": "static" - } - ], - "npm:bser": [ - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - } - ], - "npm:buffer": [ - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:builtins": [ - { - "source": "npm:builtins", - "target": "npm:semver", - "type": "static" - } - ], - "npm:cacache": [ - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - } - ], - "npm:glob@10.3.10": [ - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:cacheable-request": [ - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:get-stream@5.2.0": [ - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - } - ], - "npm:call-bind": [ - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - } - ], - "npm:caniuse-api": [ - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - } - ], - "npm:cardinal": [ - { - "source": "npm:cardinal", - "target": "npm:ansicolors", - "type": "static" - }, - { - "source": "npm:cardinal", - "target": "npm:redeyed", - "type": "static" - } - ], - "npm:chalk": [ - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chokidar": [ - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:cli-cursor": [ - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - } - ], - "npm:cli-table3": [ - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - } - ], - "npm:cli-truncate": [ - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:clipanion": [ - { - "source": "npm:clipanion", - "target": "npm:typanion", - "type": "static" - } - ], - "npm:cliui": [ - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - } - ], - "npm:wrap-ansi@7.0.0": [ - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:clone-deep": [ - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of@6.0.3", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - } - ], - "npm:clone-response": [ - { - "source": "npm:clone-response", - "target": "npm:mimic-response", - "type": "static" - } - ], - "npm:color-convert": [ - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:columnify": [ - { - "source": "npm:columnify", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:combined-stream": [ - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - } - ], - "npm:compare-func": [ - { - "source": "npm:compare-func", - "target": "npm:array-ify", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:dot-prop", - "type": "static" - } - ], - "npm:compressible": [ - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:compression": [ - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - } - ], - "npm:concat-stream": [ - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - } - ], - "npm:concat-with-sourcemaps": [ - { - "source": "npm:concat-with-sourcemaps", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:config-chain": [ - { - "source": "npm:config-chain", - "target": "npm:ini@1.3.8", - "type": "static" - }, - { - "source": "npm:config-chain", - "target": "npm:proto-list", - "type": "static" - } - ], - "npm:connect": [ - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - } - ], - "npm:content-disposition": [ - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:conventional-changelog-angular": [ - { - "source": "npm:conventional-changelog-angular", - "target": "npm:compare-func", - "type": "static" - } - ], - "npm:conventional-changelog-conventionalcommits": [ - { - "source": "npm:conventional-changelog-conventionalcommits", - "target": "npm:compare-func", - "type": "static" - } - ], - "npm:conventional-changelog-writer": [ - { - "source": "npm:conventional-changelog-writer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:split2", - "type": "static" - } - ], - "npm:conventional-commits-parser": [ - { - "source": "npm:conventional-commits-parser", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:split2", - "type": "static" - } - ], - "npm:cookies": [ - { - "source": "npm:cookies", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:keygrip", - "type": "static" - } - ], - "npm:copy-anything": [ - { - "source": "npm:copy-anything", - "target": "npm:is-what", - "type": "static" - } - ], - "npm:copy-webpack-plugin": [ - { - "source": "npm:copy-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby@13.2.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:globby@13.2.2": [ - { - "source": "npm:globby@13.2.2", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:slash@4.0.0", - "type": "static" - } - ], - "npm:core-js-compat": [ - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - } - ], - "npm:cors": [ - { - "source": "npm:cors", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:vary", - "type": "static" - } - ], - "npm:cosmiconfig": [ - { - "source": "npm:cosmiconfig", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:create-jest": [ - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - } - ], - "npm:critters": [ - { - "source": "npm:critters", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:pretty-bytes", - "type": "static" - } - ], - "npm:cross-spawn": [ - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - } - ], - "npm:crypto-random-string": [ - { - "source": "npm:crypto-random-string", - "target": "npm:type-fest@1.4.0", - "type": "static" - } - ], - "npm:css-declaration-sorter": [ - { - "source": "npm:css-declaration-sorter", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:css-loader": [ - { - "source": "npm:css-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver", - "type": "static" - } - ], - "npm:css-minimizer-webpack-plugin": [ - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:cssnano", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:css-select": [ - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - } - ], - "npm:css-tree": [ - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:cssnano": [ - { - "source": "npm:cssnano", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:lilconfig", - "type": "static" - } - ], - "npm:cssnano-preset-default": [ - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - } - ], - "npm:cssnano-utils": [ - { - "source": "npm:cssnano-utils", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:csso": [ - { - "source": "npm:csso", - "target": "npm:css-tree@2.2.1", - "type": "static" - } - ], - "npm:css-tree@2.2.1": [ - { - "source": "npm:css-tree@2.2.1", - "target": "npm:mdn-data@2.0.28", - "type": "static" - }, - { - "source": "npm:css-tree@2.2.1", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:cssstyle": [ - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - } - ], - "npm:cypress": [ - { - "source": "npm:cypress", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/xvfb", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/node@16.18.68", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sizzle", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:blob-util", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:common-tags", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:eventemitter2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:getos", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-installed-globally", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:ospath", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:request-progress", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:untildify", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:yauzl", - "type": "static" - } - ], - "npm:execa@4.1.0": [ - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:fs-extra@9.1.0": [ - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:supports-color@8.1.1": [ - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:dashdash": [ - { - "source": "npm:dashdash", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:data-urls": [ - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - } - ], - "npm:debug": [ - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - } - ], - "npm:decompress-response": [ - { - "source": "npm:decompress-response", - "target": "npm:mimic-response@3.1.0", - "type": "static" - } - ], - "npm:default-gateway": [ - { - "source": "npm:default-gateway", - "target": "npm:execa", - "type": "static" - } - ], - "npm:defaults": [ - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - } - ], - "npm:define-data-property": [ - { - "source": "npm:define-data-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:define-properties": [ - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:detect-port": [ - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - } - ], - "npm:dir-glob": [ - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:dns-packet": [ - { - "source": "npm:dns-packet", - "target": "npm:@leichtgewicht/ip-codec", - "type": "static" - } - ], - "npm:doctrine": [ - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:dom-serializer": [ - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - } - ], - "npm:domexception": [ - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:domhandler": [ - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domutils": [ - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - } - ], - "npm:dot-prop": [ - { - "source": "npm:dot-prop", - "target": "npm:is-obj", - "type": "static" - } - ], - "npm:duplexer2": [ - { - "source": "npm:duplexer2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:duplexify": [ - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - } - ], - "npm:easy-extender": [ - { - "source": "npm:easy-extender", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:eazy-logger": [ - { - "source": "npm:eazy-logger", - "target": "npm:chalk", - "type": "static" - } - ], - "npm:ecc-jsbn": [ - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:ecdsa-sig-formatter": [ - { - "source": "npm:ecdsa-sig-formatter", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:ejs": [ - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - } - ], - "npm:encoding": [ - { - "source": "npm:encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - } - ], - "npm:end-of-stream": [ - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - } - ], - "npm:engine.io": [ - { - "source": "npm:engine.io", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cookie@0.4.2", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:ws@8.11.0", - "type": "static" - } - ], - "npm:engine.io-client": [ - { - "source": "npm:engine.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:xmlhttprequest-ssl", - "type": "static" - } - ], - "npm:enhanced-resolve": [ - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:enquirer": [ - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - } - ], - "npm:env-ci": [ - { - "source": "npm:env-ci", - "target": "npm:execa@8.0.1", - "type": "static" - }, - { - "source": "npm:env-ci", - "target": "npm:java-properties", - "type": "static" - } - ], - "npm:errno": [ - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - } - ], - "npm:error-ex": [ - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - } - ], - "npm:errorhandler": [ - { - "source": "npm:errorhandler", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:errorhandler", - "target": "npm:escape-html", - "type": "static" - } - ], - "npm:es-abstract": [ - { - "source": "npm:es-abstract", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:arraybuffer.prototype.slice", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:es-set-tostringtag": [ - { - "source": "npm:es-set-tostringtag", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:es-to-primitive": [ - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:esbuild": [ - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-loong64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-mips64el", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ppc64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-riscv64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-s390x", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/sunos-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-x64", - "type": "static" - } - ], - "npm:escodegen": [ - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:eslint": [ - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - } - ], - "npm:eslint-config-prettier": [ - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - } - ], - "npm:eslint-plugin-cypress": [ - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:globals@13.24.0", - "type": "static" - } - ], - "npm:eslint-scope": [ - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:find-up@5.0.0": [ - { - "source": "npm:find-up@5.0.0", - "target": "npm:locate-path@6.0.0", - "type": "static" - }, - { - "source": "npm:find-up@5.0.0", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:locate-path@6.0.0": [ - { - "source": "npm:locate-path@6.0.0", - "target": "npm:p-locate@5.0.0", - "type": "static" - } - ], - "npm:p-locate@5.0.0": [ - { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:espree": [ - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:esquery": [ - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:esrecurse": [ - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:execa": [ - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:executable": [ - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - } - ], - "npm:expand-range": [ - { - "source": "npm:expand-range", - "target": "npm:fill-range@2.2.4", - "type": "static" - } - ], - "npm:fill-range@2.2.4": [ - { - "source": "npm:fill-range@2.2.4", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:isobject@2.1.0", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:randomatic", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:repeat-element", - "type": "static" - }, - { - "source": "npm:fill-range@2.2.4", - "target": "npm:repeat-string", - "type": "static" - } - ], - "npm:isobject@2.1.0": [ - { - "source": "npm:isobject@2.1.0", - "target": "npm:isarray", - "type": "static" - } - ], - "npm:expect": [ - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:express": [ - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser@1.20.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static@1.15.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - } - ], - "npm:express-urlrewrite": [ - { - "source": "npm:express-urlrewrite", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:express-urlrewrite", - "target": "npm:path-to-regexp@1.8.0", - "type": "static" - } - ], - "npm:path-to-regexp@1.8.0": [ - { - "source": "npm:path-to-regexp@1.8.0", - "target": "npm:isarray@0.0.1", - "type": "static" - } - ], - "npm:body-parser@1.20.1": [ - { - "source": "npm:body-parser@1.20.1", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:raw-body@2.5.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.1", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:finalhandler@1.2.0": [ - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:raw-body@2.5.1": [ - { - "source": "npm:raw-body@2.5.1", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:send@0.18.0": [ - { - "source": "npm:send@0.18.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:statuses@2.0.1", - "type": "static" - } - ], - "npm:serve-static@1.15.0": [ - { - "source": "npm:serve-static@1.15.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:send@0.18.0", - "type": "static" - } - ], - "npm:ext-list": [ - { - "source": "npm:ext-list", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:ext-name": [ - { - "source": "npm:ext-name", - "target": "npm:ext-list", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:sort-keys-length", - "type": "static" - } - ], - "npm:extend-shallow": [ - { - "source": "npm:extend-shallow", - "target": "npm:is-extendable", - "type": "static" - } - ], - "npm:external-editor": [ - { - "source": "npm:external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:tmp@0.0.33", - "type": "static" - } - ], - "npm:tmp@0.0.33": [ - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:extract-zip": [ - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - } - ], - "npm:fast-glob": [ - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:fastq": [ - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - } - ], - "npm:faye-websocket": [ - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:fb-watchman": [ - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - } - ], - "npm:fd-slicer": [ - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - } - ], - "npm:figures": [ - { - "source": "npm:figures", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - } - ], - "npm:file-entry-cache": [ - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - } - ], - "npm:file-type": [ - { - "source": "npm:file-type", - "target": "npm:readable-web-to-node-stream", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:strtok3", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:token-types", - "type": "static" - } - ], - "npm:filelist": [ - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.6", - "type": "static" - } - ], - "npm:minimatch@5.1.6": [ - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion@2.0.1", - "type": "static" - } - ], - "npm:filenamify": [ - { - "source": "npm:filenamify", - "target": "npm:filename-reserved-regex", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:strip-outer", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:trim-repeated", - "type": "static" - } - ], - "npm:fill-range": [ - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - } - ], - "npm:finalhandler": [ - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:find-cache-dir": [ - { - "source": "npm:find-cache-dir", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir", - "type": "static" - } - ], - "npm:find-up": [ - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:find-versions": [ - { - "source": "npm:find-versions", - "target": "npm:semver-regex", - "type": "static" - } - ], - "npm:flat-cache": [ - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:for-each": [ - { - "source": "npm:for-each", - "target": "npm:is-callable", - "type": "static" - } - ], - "npm:foreground-child": [ - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - } - ], - "npm:fork-ts-checker-webpack-plugin": [ - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:node-abort-controller", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:ajv-keywords@3.5.2": [ - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - } - ], - "npm:fs-extra@10.1.0": [ - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:schema-utils@3.3.0": [ - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - } - ], - "npm:form-data": [ - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:from2": [ - { - "source": "npm:from2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:from2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:fs-extra": [ - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-minipass": [ - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:function.prototype.name": [ - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - } - ], - "npm:get-intrinsic": [ - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:get-symbol-description": [ - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:getos": [ - { - "source": "npm:getos", - "target": "npm:async", - "type": "static" - } - ], - "npm:getpass": [ - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:git-log-parser": [ - { - "source": "npm:git-log-parser", - "target": "npm:argv-formatter", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:spawn-error-forwarder", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:split2@1.0.0", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:stream-combiner2", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:git-log-parser", - "target": "npm:traverse", - "type": "static" - } - ], - "npm:split2@1.0.0": [ - { - "source": "npm:split2@1.0.0", - "target": "npm:through2", - "type": "static" - } - ], - "npm:glob": [ - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob-parent": [ - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:global-dirs": [ - { - "source": "npm:global-dirs", - "target": "npm:ini@2.0.0", - "type": "static" - } - ], - "npm:globalthis": [ - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:globby": [ - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - } - ], - "npm:gopd": [ - { - "source": "npm:gopd", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:got": [ - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:gray-matter": [ - { - "source": "npm:gray-matter", - "target": "npm:ansi-red", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:coffee-script", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:gray-matter", - "target": "npm:toml", - "type": "static" - } - ], - "npm:gulp-header": [ - { - "source": "npm:gulp-header", - "target": "npm:concat-with-sourcemaps", - "type": "static" - }, - { - "source": "npm:gulp-header", - "target": "npm:lodash.template", - "type": "static" - }, - { - "source": "npm:gulp-header", - "target": "npm:through2", - "type": "static" - } - ], - "npm:gzip-size": [ - { - "source": "npm:gzip-size", - "target": "npm:duplexer", - "type": "static" - } - ], - "npm:handlebars": [ - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - } - ], - "npm:has-property-descriptors": [ - { - "source": "npm:has-property-descriptors", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:has-tostringtag": [ - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:hasown": [ - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:hdr-histogram-js": [ - { - "source": "npm:hdr-histogram-js", - "target": "npm:@assemblyscript/loader", - "type": "static" - }, - { - "source": "npm:hdr-histogram-js", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:hdr-histogram-js", - "target": "npm:pako", - "type": "static" - } - ], - "npm:hosted-git-info": [ - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache@10.1.0", - "type": "static" - } - ], - "npm:hpack.js": [ - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:html-encoding-sniffer": [ - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - } - ], - "npm:htmlparser2": [ - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities", - "type": "static" - } - ], - "npm:http-errors": [ - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - } - ], - "npm:http-proxy": [ - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:http-proxy-agent": [ - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:agent-base@6.0.2": [ - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy-middleware": [ - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:http-server": [ - { - "source": "npm:http-server", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:corser", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:secure-compare", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:union", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:url-join", - "type": "static" - } - ], - "npm:http-signature": [ - { - "source": "npm:http-signature", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:jsprim", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:sshpk", - "type": "static" - } - ], - "npm:http2-wrapper": [ - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - } - ], - "npm:https-proxy-agent": [ - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:iconv-lite": [ - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:icss-utils": [ - { - "source": "npm:icss-utils", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:identity-obj-proxy": [ - { - "source": "npm:identity-obj-proxy", - "target": "npm:harmony-reflect", - "type": "static" - } - ], - "npm:ignore-walk": [ - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@9.0.3", - "type": "static" - } - ], - "npm:import-fresh": [ - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - } - ], - "npm:import-from-esm": [ - { - "source": "npm:import-from-esm", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:import-from-esm", - "target": "npm:import-meta-resolve", - "type": "static" - } - ], - "npm:import-local": [ - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - } - ], - "npm:inflight": [ - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:inquirer": [ - { - "source": "npm:inquirer", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:inquirer-autocomplete-prompt": [ - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer-autocomplete-prompt", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:internal-slot": [ - { - "source": "npm:internal-slot", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:into-stream": [ - { - "source": "npm:into-stream", - "target": "npm:from2", - "type": "static" - }, - { - "source": "npm:into-stream", - "target": "npm:p-is-promise", - "type": "static" - } - ], - "npm:is-array-buffer": [ - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:is-bigint": [ - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "type": "static" - } - ], - "npm:is-binary-path": [ - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - } - ], - "npm:is-boolean-object": [ - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-ci": [ - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - } - ], - "npm:is-core-module": [ - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:is-date-object": [ - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-glob": [ - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - } - ], - "npm:is-installed-globally": [ - { - "source": "npm:is-installed-globally", - "target": "npm:global-dirs", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:is-path-inside", - "type": "static" - } - ], - "npm:is-number": [ - { - "source": "npm:is-number", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:is-number-like": [ - { - "source": "npm:is-number-like", - "target": "npm:lodash.isfinite", - "type": "static" - } - ], - "npm:is-number-object": [ - { - "source": "npm:is-number-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-plain-object": [ - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:is-regex": [ - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-shared-array-buffer": [ - { - "source": "npm:is-shared-array-buffer", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-string": [ - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-symbol": [ - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:is-text-path": [ - { - "source": "npm:is-text-path", - "target": "npm:text-extensions", - "type": "static" - } - ], - "npm:is-typed-array": [ - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:is-weakref": [ - { - "source": "npm:is-weakref", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-wsl": [ - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - } - ], - "npm:issue-parser": [ - { - "source": "npm:issue-parser", - "target": "npm:lodash.capitalize", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.escaperegexp", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:issue-parser", - "target": "npm:lodash.uniqby", - "type": "static" - } - ], - "npm:istanbul-lib-instrument": [ - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - } - ], - "npm:istanbul-lib-report": [ - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:make-dir@4.0.0": [ - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:istanbul-lib-source-maps": [ - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:istanbul-reports": [ - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - } - ], - "npm:jackspeak": [ - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:jake": [ - { - "source": "npm:jake", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch@3.1.2", - "type": "static" - } - ], - "npm:jest": [ - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - } - ], - "npm:jest-changed-files": [ - { - "source": "npm:jest-changed-files", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:jest-circus": [ - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.1", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:babel-plugin-macros@3.1.0": [ - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:dedent@1.5.1": [ - { - "source": "npm:dedent@1.5.1", - "target": "npm:babel-plugin-macros@3.1.0", - "type": "static" - } - ], - "npm:jest-cli": [ - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:jest-config": [ - { - "source": "npm:jest-config", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:jest-diff": [ - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-docblock": [ - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline", - "type": "static" - } - ], - "npm:jest-each": [ - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-environment-jsdom": [ - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - } - ], - "npm:jest-environment-node": [ - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-haste-map": [ - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:jest-leak-detector": [ - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-matcher-utils": [ - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-message-util": [ - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:jest-mock": [ - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-pnp-resolver": [ - { - "source": "npm:jest-pnp-resolver", - "target": "npm:jest-resolve", - "type": "static" - } - ], - "npm:jest-preset-angular": [ - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild", - "type": "static" - } - ], - "npm:jest-resolve": [ - { - "source": "npm:jest-resolve", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - } - ], - "npm:jest-resolve-dependencies": [ - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:jest-runner": [ - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - } - ], - "npm:source-map-support@0.5.13": [ - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:jest-runtime": [ - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:jest-snapshot": [ - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jest-util": [ - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:jest-validate": [ - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-watcher": [ - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - } - ], - "npm:jest-worker": [ - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - } - ], - "npm:js-yaml": [ - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:jsdom": [ - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:form-data@4.0.0": [ - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:https-proxy-agent@5.0.1": [ - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:debug", - "type": "static" - } - ], - "npm:json-parse-helpfulerror": [ - { - "source": "npm:json-parse-helpfulerror", - "target": "npm:jju", - "type": "static" - } - ], - "npm:json-server": [ - { - "source": "npm:json-server", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:connect-pause", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:errorhandler", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:express-urlrewrite", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:json-parse-helpfulerror", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:lodash-id", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:lowdb", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:method-override", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:morgan", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:please-upgrade-node", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:pluralize", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:json-server", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:jsonc-eslint-parser": [ - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jsonfile": [ - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:JSONStream": [ - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - } - ], - "npm:jsonwebtoken": [ - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jsprim": [ - { - "source": "npm:jsprim", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:verror", - "type": "static" - } - ], - "npm:jwa": [ - { - "source": "npm:jwa", - "target": "npm:buffer-equal-constant-time", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:ecdsa-sig-formatter", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:jws": [ - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:karma-source-map-support": [ - { - "source": "npm:karma-source-map-support", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:keygrip": [ - { - "source": "npm:keygrip", - "target": "npm:tsscmp", - "type": "static" - } - ], - "npm:keyv": [ - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - } - ], - "npm:kind-of": [ - { - "source": "npm:kind-of", - "target": "npm:is-buffer", - "type": "static" - } - ], - "npm:launch-editor": [ - { - "source": "npm:launch-editor", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:shell-quote", - "type": "static" - } - ], - "npm:lazy-cache": [ - { - "source": "npm:lazy-cache", - "target": "npm:set-getter", - "type": "static" - } - ], - "npm:less": [ - { - "source": "npm:less", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:less-loader": [ - { - "source": "npm:less-loader", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:klona", - "type": "static" - } - ], - "npm:levn": [ - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:license-webpack-plugin": [ - { - "source": "npm:license-webpack-plugin", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:lint-staged": [ - { - "source": "npm:lint-staged", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander@11.0.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@7.2.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:lilconfig@2.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2@6.6.1", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:pidtree", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:yaml@2.3.1", - "type": "static" - } - ], - "npm:ansi-escapes@5.0.0": [ - { - "source": "npm:ansi-escapes@5.0.0", - "target": "npm:type-fest@1.4.0", - "type": "static" - } - ], - "npm:cli-cursor@4.0.0": [ - { - "source": "npm:cli-cursor@4.0.0", - "target": "npm:restore-cursor@4.0.0", - "type": "static" - } - ], - "npm:cli-truncate@3.1.0": [ - { - "source": "npm:cli-truncate@3.1.0", - "target": "npm:slice-ansi@5.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate@3.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - } - ], - "npm:execa@7.2.0": [ - { - "source": "npm:execa@7.2.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:human-signals@4.3.1", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:npm-run-path@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - } - ], - "npm:listr2@6.6.1": [ - { - "source": "npm:listr2@6.6.1", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:cli-truncate@3.1.0", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:eventemitter3@5.0.1", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:log-update@5.0.1", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2@6.6.1", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - } - ], - "npm:log-update@5.0.1": [ - { - "source": "npm:log-update@5.0.1", - "target": "npm:ansi-escapes@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:cli-cursor@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:slice-ansi@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update@5.0.1", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - } - ], - "npm:restore-cursor@4.0.0": [ - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:onetime": [ - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - } - ], - "npm:slice-ansi@5.0.0": [ - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:is-fullwidth-code-point@4.0.0", - "type": "static" - } - ], - "npm:list-item": [ - { - "source": "npm:list-item", - "target": "npm:expand-range", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:list-item", - "target": "npm:repeat-string", - "type": "static" - } - ], - "npm:listr2": [ - { - "source": "npm:listr2", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - } - ], - "npm:load-json-file": [ - { - "source": "npm:load-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:strip-bom@3.0.0", - "type": "static" - } - ], - "npm:parse-json@4.0.0": [ - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", - "type": "static" - } - ], - "npm:localtunnel": [ - { - "source": "npm:localtunnel", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:debug@4.3.2", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:openurl", - "type": "static" - }, - { - "source": "npm:localtunnel", - "target": "npm:yargs@17.1.1", - "type": "static" - } - ], - "npm:cliui@7.0.4": [ - { - "source": "npm:cliui@7.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - } - ], - "npm:debug@4.3.2": [ - { - "source": "npm:debug@4.3.2", - "target": "npm:ms", - "type": "static" - } - ], - "npm:yargs@17.1.1": [ - { - "source": "npm:yargs@17.1.1", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@17.1.1", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - } - ], - "npm:locate-path": [ - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - } - ], - "npm:lockfile": [ - { - "source": "npm:lockfile", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:lodash.template": [ - { - "source": "npm:lodash.template", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.templatesettings", - "type": "static" - } - ], - "npm:lodash.templatesettings": [ - { - "source": "npm:lodash.templatesettings", - "target": "npm:lodash._reinterpolate", - "type": "static" - } - ], - "npm:log-symbols": [ - { - "source": "npm:log-symbols", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - } - ], - "npm:log-update": [ - { - "source": "npm:log-update", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:slice-ansi@4.0.0": [ - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:is-fullwidth-code-point", - "type": "static" - } - ], - "npm:lowdb": [ - { - "source": "npm:lowdb", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:steno", - "type": "static" - } - ], - "npm:lru-cache": [ - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:magic-string": [ - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:make-dir": [ - { - "source": "npm:make-dir", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:make-fetch-happen": [ - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:makeerror": [ - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - } - ], - "npm:markdown-toc": [ - { - "source": "npm:markdown-toc", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:diacritics-map", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:gray-matter", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:lazy-cache", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:list-item", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:markdown-link", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:mixin-deep", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:remarkable", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:markdown-toc", - "target": "npm:strip-color", - "type": "static" - } - ], - "npm:marked-terminal": [ - { - "source": "npm:marked-terminal", - "target": "npm:marked", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:ansi-escapes@6.2.0", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cardinal", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:node-emoji", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:supports-hyperlinks", - "type": "static" - } - ], - "npm:ansi-escapes@6.2.0": [ - { - "source": "npm:ansi-escapes@6.2.0", - "target": "npm:type-fest@3.13.1", - "type": "static" - } - ], - "npm:memfs": [ - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - } - ], - "npm:method-override": [ - { - "source": "npm:method-override", - "target": "npm:debug@3.1.0", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:method-override", - "target": "npm:vary", - "type": "static" - } - ], - "npm:debug@3.1.0": [ - { - "source": "npm:debug@3.1.0", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:micromatch": [ - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:mime-types": [ - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:mini-css-extract-plugin": [ - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:minimatch": [ - { - "source": "npm:minimatch", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minipass-collect": [ - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-fetch": [ - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-flush": [ - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass@3.3.6": [ - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:minipass-json-stream": [ - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-pipeline": [ - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-sized": [ - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minizlib": [ - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:mixin-deep": [ - { - "source": "npm:mixin-deep", - "target": "npm:for-in", - "type": "static" - }, - { - "source": "npm:mixin-deep", - "target": "npm:is-extendable@1.0.1", - "type": "static" - } - ], - "npm:is-extendable@1.0.1": [ - { - "source": "npm:is-extendable@1.0.1", - "target": "npm:is-plain-object", - "type": "static" - } - ], - "npm:mkdirp": [ - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:morgan": [ - { - "source": "npm:morgan", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:morgan", - "target": "npm:on-headers", - "type": "static" - } - ], - "npm:multicast-dns": [ - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - } - ], - "npm:mv": [ - { - "source": "npm:mv", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:ncp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:rimraf@2.4.5", - "type": "static" - } - ], - "npm:glob@6.0.4": [ - { - "source": "npm:glob@6.0.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:rimraf@2.4.5": [ - { - "source": "npm:rimraf@2.4.5", - "target": "npm:glob@6.0.4", - "type": "static" - } - ], - "npm:needle": [ - { - "source": "npm:needle", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:needle", - "target": "npm:sax", - "type": "static" - } - ], - "npm:nice-napi": [ - { - "source": "npm:nice-napi", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:nice-napi", - "target": "npm:node-gyp-build", - "type": "static" - } - ], - "npm:node-emoji": [ - { - "source": "npm:node-emoji", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:emojilib", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:skin-tone", - "type": "static" - } - ], - "npm:node-fetch": [ - { - "source": "npm:node-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - } - ], - "npm:whatwg-url@5.0.0": [ - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - } - ], - "npm:node-gyp": [ - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:nopt": [ - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - } - ], - "npm:normalize-package-data": [ - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:npm": [ - { - "source": "npm:npm", - "target": "npm:@isaacs/string-locale-compare@1.1.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/config@8.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/map-workspaces@3.0.4", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/package-json@5.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:archy@1.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:cli-columns@4.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:fastest-levenshtein@1.0.16", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:init-package-json@6.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:is-cidr@5.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmaccess@8.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmdiff@6.0.4", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmexec@7.0.5", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmfund@5.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmhook@10.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmorg@6.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmpack@6.0.4", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmpublish@9.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmsearch@7.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmteam@6.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:libnpmversion@5.0.2", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-audit-report@5.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-profile@9.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npm-user-validate@2.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:npmlog@7.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:parse-conflict-json@3.0.1", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:qrcode-terminal@0.12.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:supports-color@9.4.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:tiny-relative-date@1.3.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:treeverse@3.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:npm", - "target": "npm:write-file-atomic@5.0.1", - "type": "static" - } - ], - "npm:npm-bundled": [ - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-install-checks": [ - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - } - ], - "npm:npm-package-arg": [ - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:npm-packlist": [ - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - } - ], - "npm:npm-pick-manifest": [ - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver", - "type": "static" - } - ], - "npm:npm-registry-fetch": [ - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - } - ], - "npm:npm-run-all": [ - { - "source": "npm:npm-run-all", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:memorystream", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:pidtree@0.3.1", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:npm-run-all", - "target": "npm:string.prototype.padend", - "type": "static" - } - ], - "npm:cross-spawn@6.0.5": [ - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key@2.0.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - } - ], - "npm:npm-run-path": [ - { - "source": "npm:npm-run-path", - "target": "npm:path-key", - "type": "static" - } - ], - "npm:@npmcli/arborist@7.2.2": [ - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@isaacs/string-locale-compare@1.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/map-workspaces@3.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/metavuln-calculator@7.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/name-from-folder@2.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/package-json@5.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/query@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:bin-links@4.0.3", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:common-ancestor-path@1.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:json-stringify-nice@1.1.4", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:npmlog@7.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:parse-conflict-json@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:promise-all-reject-late@1.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:promise-call-limit@1.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:treeverse@3.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/arborist@7.2.2", - "target": "npm:walk-up-path@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/config@8.0.3": [ - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:@npmcli/map-workspaces@3.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/config@8.0.3", - "target": "npm:walk-up-path@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/disparity-colors@3.0.0": [ - { - "source": "npm:@npmcli/disparity-colors@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - } - ], - "npm:@npmcli/map-workspaces@3.0.4": [ - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:@npmcli/name-from-folder@2.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@npmcli/map-workspaces@3.0.4", - "target": "npm:read-package-json-fast", - "type": "static" - } - ], - "npm:@npmcli/metavuln-calculator@7.0.0": [ - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:@npmcli/metavuln-calculator@7.0.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@npmcli/package-json@5.0.0": [ - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json@5.0.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@npmcli/query@3.0.1": [ - { - "source": "npm:@npmcli/query@3.0.1", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:are-we-there-yet@4.0.1": [ - { - "source": "npm:are-we-there-yet@4.0.1", - "target": "npm:delegates@1.0.0", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@4.0.1", - "target": "npm:readable-stream@4.4.2", - "type": "static" - } - ], - "npm:bin-links@4.0.3": [ - { - "source": "npm:bin-links@4.0.3", - "target": "npm:cmd-shim@6.0.2", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:read-cmd-shim@4.0.0", - "type": "static" - }, - { - "source": "npm:bin-links@4.0.3", - "target": "npm:write-file-atomic@5.0.1", - "type": "static" - } - ], - "npm:buffer@6.0.3": [ - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:cidr-regex@4.0.3": [ - { - "source": "npm:cidr-regex@4.0.3", - "target": "npm:ip-regex@5.0.0", - "type": "static" - } - ], - "npm:cli-columns@4.0.0": [ - { - "source": "npm:cli-columns@4.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-columns@4.0.0", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:strip-ansi": [ - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:which": [ - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:gauge@5.0.1": [ - { - "source": "npm:gauge@5.0.1", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:color-support@1.1.3", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:console-control-strings@1.1.0", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:has-unicode@2.0.1", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:gauge@5.0.1", - "target": "npm:wide-align@1.1.5", - "type": "static" - } - ], - "npm:init-package-json@6.0.0": [ - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:promzard@1.0.0", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:init-package-json@6.0.0", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:is-cidr@5.0.3": [ - { - "source": "npm:is-cidr@5.0.3", - "target": "npm:cidr-regex@4.0.3", - "type": "static" - } - ], - "npm:libnpmaccess@8.0.2": [ - { - "source": "npm:libnpmaccess@8.0.2", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmaccess@8.0.2", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmdiff@6.0.4": [ - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:@npmcli/disparity-colors@3.0.0", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:binary-extensions", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:diff@5.1.0", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:libnpmdiff@6.0.4", - "target": "npm:tar", - "type": "static" - } - ], - "npm:libnpmexec@7.0.5": [ - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:npmlog@7.0.1", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:pacote@17.0.5", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:read@2.1.0", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:libnpmexec@7.0.5", - "target": "npm:walk-up-path@3.0.1", - "type": "static" - } - ], - "npm:libnpmfund@5.0.2": [ - { - "source": "npm:libnpmfund@5.0.2", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - } - ], - "npm:libnpmhook@10.0.1": [ - { - "source": "npm:libnpmhook@10.0.1", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:libnpmhook@10.0.1", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmorg@6.0.2": [ - { - "source": "npm:libnpmorg@6.0.2", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:libnpmorg@6.0.2", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmpack@6.0.4": [ - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:@npmcli/arborist@7.2.2", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmpack@6.0.4", - "target": "npm:pacote@17.0.5", - "type": "static" - } - ], - "npm:libnpmpublish@9.0.3": [ - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:ci-info@4.0.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:libnpmpublish@9.0.3", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:libnpmsearch@7.0.1": [ - { - "source": "npm:libnpmsearch@7.0.1", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmteam@6.0.1": [ - { - "source": "npm:libnpmteam@6.0.1", - "target": "npm:aproba@2.0.0", - "type": "static" - }, - { - "source": "npm:libnpmteam@6.0.1", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmversion@5.0.2": [ - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmversion@5.0.2", - "target": "npm:semver", - "type": "static" - } - ], - "npm:npm-profile@9.0.0": [ - { - "source": "npm:npm-profile@9.0.0", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:npm-profile@9.0.0", - "target": "npm:proc-log", - "type": "static" - } - ], - "npm:npmlog@7.0.1": [ - { - "source": "npm:npmlog@7.0.1", - "target": "npm:are-we-there-yet@4.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:console-control-strings@1.1.0", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:gauge@5.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@7.0.1", - "target": "npm:set-blocking@2.0.0", - "type": "static" - } - ], - "npm:p-map": [ - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:pacote@17.0.5": [ - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote@17.0.5", - "target": "npm:tar", - "type": "static" - } - ], - "npm:parse-conflict-json@3.0.1": [ - { - "source": "npm:parse-conflict-json@3.0.1", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:parse-conflict-json@3.0.1", - "target": "npm:just-diff@6.0.2", - "type": "static" - }, - { - "source": "npm:parse-conflict-json@3.0.1", - "target": "npm:just-diff-apply@5.5.0", - "type": "static" - } - ], - "npm:path-scurry": [ - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.1.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:postcss-selector-parser": [ - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:promise-retry": [ - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - } - ], - "npm:promzard@1.0.0": [ - { - "source": "npm:promzard@1.0.0", - "target": "npm:read@2.1.0", - "type": "static" - } - ], - "npm:read@2.1.0": [ - { - "source": "npm:read@2.1.0", - "target": "npm:mute-stream@1.0.0", - "type": "static" - } - ], - "npm:read-package-json": [ - { - "source": "npm:read-package-json", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:read-package-json-fast": [ - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:readable-stream@4.4.2": [ - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:readable-stream@4.4.2", - "target": "npm:string_decoder@1.3.0", - "type": "static" - } - ], - "npm:semver": [ - { - "source": "npm:semver", - "target": "npm:lru-cache@6.0.0", - "type": "static" - } - ], - "npm:shebang-command": [ - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - } - ], - "npm:sigstore": [ - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/sign", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - } - ], - "npm:socks": [ - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - } - ], - "npm:socks-proxy-agent": [ - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - } - ], - "npm:spdx-correct": [ - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - } - ], - "npm:spdx-expression-parse": [ - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - } - ], - "npm:ssri": [ - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:string_decoder@1.3.0": [ - { - "source": "npm:string_decoder@1.3.0", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:string-width": [ - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string-width-cjs": [ - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:strip-ansi-cjs": [ - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:tar": [ - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:fs-minipass@2.1.0": [ - { - "source": "npm:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:tuf-js": [ - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - } - ], - "npm:unique-filename": [ - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - } - ], - "npm:unique-slug": [ - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:validate-npm-package-license": [ - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - } - ], - "npm:validate-npm-package-name": [ - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - } - ], - "npm:wcwidth": [ - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - } - ], - "npm:wide-align@1.1.5": [ - { - "source": "npm:wide-align@1.1.5", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:wrap-ansi-cjs": [ - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:write-file-atomic@5.0.1": [ - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:signal-exit@4.1.0", - "type": "static" - } - ], - "npm:nth-check": [ - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - } - ], - "npm:nx": [ - { - "source": "npm:nx", - "target": "npm:@swc-node/register", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios@1.6.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - } - ], - "npm:nx-release": [ - { - "source": "npm:nx-release", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:@nx/devkit@16.5.0", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:nx-release", - "target": "npm:process", - "type": "static" - } - ], - "npm:@nrwl/devkit@16.5.0": [ - { - "source": "npm:@nrwl/devkit@16.5.0", - "target": "npm:@nx/devkit@16.5.0", - "type": "static" - } - ], - "npm:@nx/devkit@16.5.0": [ - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:@nrwl/devkit@16.5.0", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit@16.5.0", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:axios@1.6.2": [ - { - "source": "npm:axios@1.6.2", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios@1.6.2", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios@1.6.2", - "target": "npm:proxy-from-env@1.1.0", - "type": "static" - } - ], - "npm:glob@7.1.4": [ - { - "source": "npm:glob@7.1.4", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:object.assign": [ - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:object.pick": [ - { - "source": "npm:object.pick", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:on-finished": [ - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:once": [ - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:open": [ - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:opn": [ - { - "source": "npm:opn", - "target": "npm:is-wsl@1.1.0", - "type": "static" - } - ], - "npm:optionator": [ - { - "source": "npm:optionator", - "target": "npm:@aashutoshrathi/word-wrap", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:ora": [ - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:os-filter-obj": [ - { - "source": "npm:os-filter-obj", - "target": "npm:arch", - "type": "static" - } - ], - "npm:p-filter": [ - { - "source": "npm:p-filter", - "target": "npm:p-map@5.5.0", - "type": "static" - } - ], - "npm:aggregate-error@4.0.1": [ - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:clean-stack@4.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:indent-string@5.0.0", - "type": "static" - } - ], - "npm:clean-stack@4.2.0": [ - { - "source": "npm:clean-stack@4.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - } - ], - "npm:p-map@5.5.0": [ - { - "source": "npm:p-map@5.5.0", - "target": "npm:aggregate-error@4.0.1", - "type": "static" - } - ], - "npm:p-limit": [ - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - } - ], - "npm:p-locate": [ - { - "source": "npm:p-locate", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-limit@2.3.0": [ - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - } - ], - "npm:p-retry": [ - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry@0.13.1", - "type": "static" - } - ], - "npm:pacote": [ - { - "source": "npm:pacote", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - } - ], - "npm:parent-module": [ - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - } - ], - "npm:parse-json": [ - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - } - ], - "npm:parse5": [ - { - "source": "npm:parse5", - "target": "npm:entities", - "type": "static" - } - ], - "npm:parse5-html-rewriting-stream": [ - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5-sax-parser", - "type": "static" - } - ], - "npm:parse5-sax-parser": [ - { - "source": "npm:parse5-sax-parser", - "target": "npm:parse5", - "type": "static" - } - ], - "npm:pino": [ - { - "source": "npm:pino", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:fast-redact", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:on-exit-leak-free", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-abstract-transport@0.5.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-std-serializers", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:quick-format-unescaped", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:sonic-boom@2.8.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:thread-stream", - "type": "static" - } - ], - "npm:pino-abstract-transport": [ - { - "source": "npm:pino-abstract-transport", - "target": "npm:readable-stream@4.5.1", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:split2", - "type": "static" - } - ], - "npm:readable-stream@4.5.1": [ - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.1", - "target": "npm:string_decoder@1.3.0", - "type": "static" - } - ], - "npm:pino-abstract-transport@0.5.0": [ - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:split2", - "type": "static" - } - ], - "npm:sonic-boom@2.8.0": [ - { - "source": "npm:sonic-boom@2.8.0", - "target": "npm:atomic-sleep", - "type": "static" - } - ], - "npm:piscina": [ - { - "source": "npm:piscina", - "target": "npm:eventemitter-asyncresource", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:hdr-histogram-js", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:hdr-histogram-percentiles-obj", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:nice-napi", - "type": "static" - } - ], - "npm:pkg-conf": [ - { - "source": "npm:pkg-conf", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:pkg-conf", - "target": "npm:load-json-file", - "type": "static" - } - ], - "npm:find-up@2.1.0": [ - { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "type": "static" - } - ], - "npm:locate-path@2.0.0": [ - { - "source": "npm:locate-path@2.0.0", - "target": "npm:p-locate@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - } - ], - "npm:p-limit@1.3.0": [ - { - "source": "npm:p-limit@1.3.0", - "target": "npm:p-try@1.0.0", - "type": "static" - } - ], - "npm:p-locate@2.0.0": [ - { - "source": "npm:p-locate@2.0.0", - "target": "npm:p-limit@1.3.0", - "type": "static" - } - ], - "npm:pkg-dir": [ - { - "source": "npm:pkg-dir", - "target": "npm:find-up", - "type": "static" - } - ], - "npm:please-upgrade-node": [ - { - "source": "npm:please-upgrade-node", - "target": "npm:semver-compare", - "type": "static" - } - ], - "npm:portfinder": [ - { - "source": "npm:portfinder", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - } - ], - "npm:async@2.6.4": [ - { - "source": "npm:async@2.6.4", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:portscanner": [ - { - "source": "npm:portscanner", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portscanner", - "target": "npm:is-number-like", - "type": "static" - } - ], - "npm:postcss": [ - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:postcss-calc": [ - { - "source": "npm:postcss-calc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-colormin": [ - { - "source": "npm:postcss-colormin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-convert-values": [ - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-discard-comments": [ - { - "source": "npm:postcss-discard-comments", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-duplicates": [ - { - "source": "npm:postcss-discard-duplicates", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-empty": [ - { - "source": "npm:postcss-discard-empty", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-overridden": [ - { - "source": "npm:postcss-discard-overridden", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-import": [ - { - "source": "npm:postcss-import", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:read-cache", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:postcss-loader": [ - { - "source": "npm:postcss-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:cosmiconfig@8.3.6", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:semver", - "type": "static" - } - ], - "npm:cosmiconfig@8.3.6": [ - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.3.6", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:postcss-merge-longhand": [ - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - } - ], - "npm:postcss-merge-rules": [ - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-minify-font-values": [ - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-gradients": [ - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-params": [ - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-selectors": [ - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-extract-imports": [ - { - "source": "npm:postcss-modules-extract-imports", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-modules-local-by-default": [ - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-modules-scope": [ - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-values": [ - { - "source": "npm:postcss-modules-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils", - "type": "static" - } - ], - "npm:postcss-normalize-charset": [ - { - "source": "npm:postcss-normalize-charset", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-normalize-display-values": [ - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-positions": [ - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-repeat-style": [ - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-string": [ - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-timing-functions": [ - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-unicode": [ - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-url": [ - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-whitespace": [ - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-ordered-values": [ - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-reduce-initial": [ - { - "source": "npm:postcss-reduce-initial", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - } - ], - "npm:postcss-reduce-transforms": [ - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-svgo": [ - { - "source": "npm:postcss-svgo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo", - "type": "static" - } - ], - "npm:postcss-unique-selectors": [ - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:pretty-format": [ - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:prompts": [ - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - } - ], - "npm:proxy-addr": [ - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - } - ], - "npm:pump": [ - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - } - ], - "npm:qs": [ - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:randomatic": [ - { - "source": "npm:randomatic", - "target": "npm:is-number@4.0.0", - "type": "static" - }, - { - "source": "npm:randomatic", - "target": "npm:kind-of@6.0.3", - "type": "static" - }, - { - "source": "npm:randomatic", - "target": "npm:math-random", - "type": "static" - } - ], - "npm:randombytes": [ - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:raw-body": [ - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:rc": [ - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini@1.3.8", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - } - ], - "npm:read-cache": [ - { - "source": "npm:read-cache", - "target": "npm:pify", - "type": "static" - } - ], - "npm:read-pkg": [ - { - "source": "npm:read-pkg", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:normalize-package-data@2.5.0", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:path-type@3.0.0", - "type": "static" - } - ], - "npm:read-pkg-up": [ - { - "source": "npm:read-pkg-up", - "target": "npm:find-up-simple", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg@9.0.1", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:type-fest@4.8.3", - "type": "static" - } - ], - "npm:normalize-package-data@2.5.0": [ - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:hosted-git-info@2.8.9", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:normalize-package-data@2.5.0", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:path-type@3.0.0": [ - { - "source": "npm:path-type@3.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - } - ], - "npm:readable-stream": [ - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readable-web-to-node-stream": [ - { - "source": "npm:readable-web-to-node-stream", - "target": "npm:readable-stream@3.6.2", - "type": "static" - } - ], - "npm:readdirp": [ - { - "source": "npm:readdirp", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:redeyed": [ - { - "source": "npm:redeyed", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:regenerate-unicode-properties": [ - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - } - ], - "npm:regenerator-transform": [ - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:regexp.prototype.flags": [ - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - } - ], - "npm:regexpu-core": [ - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - } - ], - "npm:registry-auth-token": [ - { - "source": "npm:registry-auth-token", - "target": "npm:@pnpm/npm-conf", - "type": "static" - } - ], - "npm:regjsparser": [ - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - } - ], - "npm:remarkable": [ - { - "source": "npm:remarkable", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:remarkable", - "target": "npm:autolinker", - "type": "static" - } - ], - "npm:replace-json-property": [ - { - "source": "npm:replace-json-property", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:replace-json-property", - "target": "npm:jsonfile@5.0.0", - "type": "static" - } - ], - "npm:jsonfile@5.0.0": [ - { - "source": "npm:jsonfile@5.0.0", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:jsonfile@5.0.0", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:request-progress": [ - { - "source": "npm:request-progress", - "target": "npm:throttleit", - "type": "static" - } - ], - "npm:resolve": [ - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:resolve-cwd": [ - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:resolve-url-loader": [ - { - "source": "npm:resolve-url-loader", - "target": "npm:adjust-sourcemap-loader", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:resp-modifier": [ - { - "source": "npm:resp-modifier", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:resp-modifier", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:responselike": [ - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - } - ], - "npm:restore-cursor": [ - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:rimraf": [ - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rollup": [ - { - "source": "npm:rollup", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:run-parallel": [ - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - } - ], - "npm:rxjs": [ - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:safe-array-concat": [ - { - "source": "npm:safe-array-concat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:isarray@2.0.5", - "type": "static" - } - ], - "npm:safe-regex-test": [ - { - "source": "npm:safe-regex-test", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "type": "static" - } - ], - "npm:sass": [ - { - "source": "npm:sass", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable@4.3.4", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:sass-loader": [ - { - "source": "npm:sass-loader", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:neo-async", - "type": "static" - } - ], - "npm:saxes": [ - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - } - ], - "npm:schema-utils": [ - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:selfsigned": [ - { - "source": "npm:selfsigned", - "target": "npm:@types/node-forge", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - } - ], - "npm:semantic-release": [ - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/commit-analyzer", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/error@4.0.0", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/github", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/npm", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:@semantic-release/release-notes-generator", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:aggregate-error@5.0.0", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:cosmiconfig@8.3.6", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:env-ci", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:execa@8.0.1", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:figures@6.0.1", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:find-versions", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:git-log-parser", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:hook-std", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:import-from-esm", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:marked", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:marked-terminal", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:p-each-series", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:p-reduce@3.0.0", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:semver-diff", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:signale", - "type": "static" - }, - { - "source": "npm:semantic-release", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:figures@6.0.1": [ - { - "source": "npm:figures@6.0.1", - "target": "npm:is-unicode-supported@2.0.0", - "type": "static" - } - ], - "npm:semver-diff": [ - { - "source": "npm:semver-diff", - "target": "npm:semver", - "type": "static" - } - ], - "npm:semver-truncate": [ - { - "source": "npm:semver-truncate", - "target": "npm:semver", - "type": "static" - } - ], - "npm:send": [ - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy@1.0.4", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime@1.4.1", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses@1.4.0", - "type": "static" - } - ], - "npm:http-errors@1.6.3": [ - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.4.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.5.0", - "type": "static" - } - ], - "npm:serialize-javascript": [ - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:serve-index": [ - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - } - ], - "npm:serve-static": [ - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - } - ], - "npm:set-function-length": [ - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:set-function-name": [ - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:set-getter": [ - { - "source": "npm:set-getter", - "target": "npm:to-object-path", - "type": "static" - } - ], - "npm:shallow-clone": [ - { - "source": "npm:shallow-clone", - "target": "npm:kind-of@6.0.3", - "type": "static" - } - ], - "npm:side-channel": [ - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - } - ], - "npm:signale": [ - { - "source": "npm:signale", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:signale", - "target": "npm:figures@2.0.0", - "type": "static" - }, - { - "source": "npm:signale", - "target": "npm:pkg-conf", - "type": "static" - } - ], - "npm:figures@2.0.0": [ - { - "source": "npm:figures@2.0.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - } - ], - "npm:skin-tone": [ - { - "source": "npm:skin-tone", - "target": "npm:unicode-emoji-modifier-base", - "type": "static" - } - ], - "npm:slice-ansi": [ - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - } - ], - "npm:socket.io": [ - { - "source": "npm:socket.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:engine.io", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-adapter", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-parser", - "type": "static" - } - ], - "npm:socket.io-adapter": [ - { - "source": "npm:socket.io-adapter", - "target": "npm:ws@8.11.0", - "type": "static" - } - ], - "npm:socket.io-client": [ - { - "source": "npm:socket.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:engine.io-client", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:socket.io-parser", - "type": "static" - } - ], - "npm:socket.io-parser": [ - { - "source": "npm:socket.io-parser", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:sockjs": [ - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:sonic-boom": [ - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - } - ], - "npm:sort-keys": [ - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj@1.1.0", - "type": "static" - } - ], - "npm:sort-keys-length": [ - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys", - "type": "static" - } - ], - "npm:source-map-explorer": [ - { - "source": "npm:source-map-explorer", - "target": "npm:btoa", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:gzip-size", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:temp", - "type": "static" - }, - { - "source": "npm:source-map-explorer", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:open@7.4.2": [ - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:yargs@16.2.0": [ - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.9", - "type": "static" - } - ], - "npm:source-map-loader": [ - { - "source": "npm:source-map-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:source-map-support": [ - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:spdy": [ - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - } - ], - "npm:spdy-transport": [ - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream@3.6.2", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:sshpk": [ - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:stack-utils": [ - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - } - ], - "npm:steno": [ - { - "source": "npm:steno", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:stream-combiner2": [ - { - "source": "npm:stream-combiner2", - "target": "npm:duplexer2", - "type": "static" - }, - { - "source": "npm:stream-combiner2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:stream-throttle": [ - { - "source": "npm:stream-throttle", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:stream-throttle", - "target": "npm:limiter", - "type": "static" - } - ], - "npm:string_decoder": [ - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:string-length": [ - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string.prototype.padend": [ - { - "source": "npm:string.prototype.padend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string.prototype.trim": [ - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string.prototype.trimend": [ - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string.prototype.trimstart": [ - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:strong-log-transformer": [ - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - } - ], - "npm:strtok3": [ - { - "source": "npm:strtok3", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:peek-readable", - "type": "static" - } - ], - "npm:style-loader": [ - { - "source": "npm:style-loader", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:stylehacks": [ - { - "source": "npm:stylehacks", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:stylus": [ - { - "source": "npm:stylus", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:sax@1.2.4", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:stylus-loader": [ - { - "source": "npm:stylus-loader", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:normalize-path", - "type": "static" - } - ], - "npm:supports-color": [ - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-hyperlinks": [ - { - "source": "npm:supports-hyperlinks", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:svgo": [ - { - "source": "npm:svgo", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:tar-stream": [ - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream@3.6.2", - "type": "static" - } - ], - "npm:temp": [ - { - "source": "npm:temp", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:temp", - "target": "npm:rimraf@2.6.3", - "type": "static" - } - ], - "npm:rimraf@2.6.3": [ - { - "source": "npm:rimraf@2.6.3", - "target": "npm:glob", - "type": "static" - } - ], - "npm:tempy": [ - { - "source": "npm:tempy", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:type-fest@2.19.0", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:unique-string", - "type": "static" - } - ], - "npm:terser": [ - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:terser-webpack-plugin": [ - { - "source": "npm:terser-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - } - ], - "npm:jest-worker@27.5.1": [ - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - } - ], - "npm:test-exclude": [ - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:thread-stream": [ - { - "source": "npm:thread-stream", - "target": "npm:real-require", - "type": "static" - } - ], - "npm:through2": [ - { - "source": "npm:through2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:tmp": [ - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:to-object-path": [ - { - "source": "npm:to-object-path", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:to-regex-range": [ - { - "source": "npm:to-regex-range", - "target": "npm:is-number@7.0.0", - "type": "static" - } - ], - "npm:token-types": [ - { - "source": "npm:token-types", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:tough-cookie": [ - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:url-parse", - "type": "static" - } - ], - "npm:tr46": [ - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:trim-repeated": [ - { - "source": "npm:trim-repeated", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - } - ], - "npm:ts-api-utils": [ - { - "source": "npm:ts-api-utils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:ts-jest": [ - { - "source": "npm:ts-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:ts-loader": [ - { - "source": "npm:ts-loader", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:ts-node": [ - { - "source": "npm:ts-node", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node10", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node12", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node14", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node16", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:create-require", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:diff", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:v8-compile-cache-lib", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - } - ], - "npm:tsconfig-paths": [ - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom@3.0.0", - "type": "static" - } - ], - "npm:tsconfig-paths-webpack-plugin": [ - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:tsconfig-paths", - "type": "static" - } - ], - "npm:tunnel-agent": [ - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:type-check": [ - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - } - ], - "npm:type-is": [ - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:typed-array-buffer": [ - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-byte-length": [ - { - "source": "npm:typed-array-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-byte-offset": [ - { - "source": "npm:typed-array-byte-offset", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-length": [ - { - "source": "npm:typed-array-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:unbox-primitive": [ - { - "source": "npm:unbox-primitive", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - } - ], - "npm:undici": [ - { - "source": "npm:undici", - "target": "npm:@fastify/busboy", - "type": "static" - } - ], - "npm:unicode-match-property-ecmascript": [ - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - } - ], - "npm:union": [ - { - "source": "npm:union", - "target": "npm:qs", - "type": "static" - } - ], - "npm:unique-string": [ - { - "source": "npm:unique-string", - "target": "npm:crypto-random-string", - "type": "static" - } - ], - "npm:update-browserslist-db": [ - { - "source": "npm:update-browserslist-db", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:uri-js": [ - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:url-parse": [ - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:v8-to-istanbul": [ - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - } - ], - "npm:verdaccio": [ - { - "source": "npm:verdaccio", - "target": "npm:@cypress/request@3.0.1", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/local-storage", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/logger-7", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/middleware", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/search", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/signature", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/tarball", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/ui-theme", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:clipanion", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cookies", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:fast-safe-stringify", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:kleur@4.1.5", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mime@3.0.0", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mv", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:pkginfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-audit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-htpasswd", - "type": "static" - } - ], - "npm:verdaccio-audit": [ - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - } - ], - "npm:verdaccio-htpasswd": [ - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/file-locking@12.0.0-next.1", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:apache-md5", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:bcryptjs", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:unix-crypt-td-js", - "type": "static" - } - ], - "npm:@verdaccio/file-locking@12.0.0-next.1": [ - { - "source": "npm:@verdaccio/file-locking@12.0.0-next.1", - "target": "npm:lockfile", - "type": "static" - } - ], - "npm:@cypress/request@3.0.1": [ - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request@3.0.1", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:verror": [ - { - "source": "npm:verror", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:core-util-is@1.0.2", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:extsprintf", - "type": "static" - } - ], - "npm:vite": [ - { - "source": "npm:vite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:esbuild@0.18.20", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:esbuild@0.18.20": [ - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-loong64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-mips64el@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ppc64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-riscv64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-s390x@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/netbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/openbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/sunos-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-x64@0.18.20", - "type": "static" - } - ], - "npm:w3c-xmlserializer": [ - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:walker": [ - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - } - ], - "npm:watchpack": [ - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:wbuf": [ - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:webpack": [ - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope@5.1.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:webpack-dev-middleware": [ - { - "source": "npm:webpack-dev-middleware", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:webpack-dev-server": [ - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback@2.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js@2.1.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware@5.3.3", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws", - "type": "static" - } - ], - "npm:webpack-dev-middleware@5.3.3": [ - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.3", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:webpack-merge": [ - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - } - ], - "npm:webpack-subresource-integrity": [ - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:typed-assert", - "type": "static" - } - ], - "npm:eslint-scope@5.1.1": [ - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:estraverse@4.3.0", - "type": "static" - } - ], - "npm:websocket-driver": [ - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - } - ], - "npm:whatwg-encoding": [ - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - } - ], - "npm:whatwg-url": [ - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:which-boxed-primitive": [ - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:which-typed-array": [ - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:wrap-ansi": [ - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:write-file-atomic": [ - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:yargs": [ - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:yauzl": [ + "externalNodes": {}, + "dependencies": { + "tooling-nx-plugin-generators": [ { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-config", "type": "static" }, { - "source": "npm:yauzl", - "target": "npm:fd-slicer", + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-validators", "type": "static" } ], - "npm:yup": [ - { - "source": "npm:yup", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:nanoclone", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:property-expr", - "type": "static" - }, + "tooling-nx-plugin-validators": [ { - "source": "npm:yup", - "target": "npm:toposort", + "source": "tooling-nx-plugin-validators", + "target": "tooling-nx-plugin-config", "type": "static" } ], - "npm:zone.js": [ - { - "source": "npm:zone.js", - "target": "npm:tslib", - "type": "static" - } - ] + "tooling-nx-plugin-config": [], + "ax-nx-plugin-workspace": [] }, "version": "6.0" } diff --git a/.nx/cache/terminalOutputs/15540792699947906079 b/.nx/cache/terminalOutputs/15540792699947906079 deleted file mode 100644 index 80fe097a4fc04aa04ad5851d07ac038d64f79a25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 59284 zcmeIz-EP}96bJBK8`u-%=AburfLOAe#)-WpXt1tWu{JG|4BHU&Ly;JpsYq%hmDpG| z>}+sG8c9CHrkP&3A!*vVXmc~a-v);L*0a4 zzYIxsqXFIA(82z25bZ>R*Ae|{D#}t#7gFbSh9dRC`DIT^JmBrq^+$br@xnk)I_hWUXTv!P0#yt+^DL zcau5`zm6|%SN$f)8&hzGJ42WXEo|zIb)SyCN(-5PW^88kg`B>h^TT>vW~URXJP5Vc z<5rE~$Et3!PwGjl$9E>?()oa6DqmLKkxG3wt0y;0vzgeULR@%C9ZC11P8(hs*oW$& z@WLwD*oJlBD#@wIn=p@26fLU?rH#kqhZ|=)(&`ZPxVZq7>g-YwU!+OLaIutjGoLXA!nQDXd>ixEz0y@lCU|!&cyp z{ixEJ=aVFA!k@R%)cZEoMlY19+(BJgh)+gz6aFP{g@~>#FNhU^_GTEEQ zsw{*O+NWVCz1}A69}o{kNhcyJoGGqE@2u-)DYJB6Y_4h?@=?fn|5!gr=%yj9b)K5M zD#TNMg|JP*)Qh5c^*0=cuT&l6;xNvBC?`IzWRb^wnu1KwHMvma4 zy6Gd8SazXNG}zlA*E#0@8PcMt_jY>}@X`N8n{%}hT)R2H!UX{cKmY;|fB*y_009U< z00Izz00bZa0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_009U<00Izz00bZa z0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z1Rwwb2tWV= z5P$##AOHafKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z1Rwwb2tWV=5P$##AOHaf zKmY;|fB*y_009U<00Izz00bZa0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_ z009U<00Izz00bZa0SG_<0uX=z1Rwwb2teQ?0*?+KKOt{SA@#Jc=l!y%rc(E(LJOOE zV;vRp+{JA~yo!j|5wWw`-CORkzKvWdvdFs*(e1mpbSj)DS4l7EB9(>6`Q2nI-Qjkk zjkEDceewI;EVUw!OKVi=UF@?eZ6zbFND!?(F0sY+vg?_T_q6V}CV z=20.5.0`. You can find the latest version at https://nodejs.org/. - -> ax-nx-plugin-workspace@0.0.0 lint -> nx run-many --target=lint - - - >  NX  Running target lint for 4 projects: - - - tooling-nx-plugin-generators - - tooling-nx-plugin-validators - - tooling-nx-plugin-config - - ax-nx-plugin-workspace - - - -> nx run tooling-nx-plugin-config:lint [existing outputs match the cache, left as is] - - -Linting "tooling-nx-plugin-config"... - -All files pass linting. - - -> nx run tooling-nx-plugin-validators:lint [existing outputs match the cache, left as is] - - -Linting "tooling-nx-plugin-validators"... - -All files pass linting. - - -> nx run tooling-nx-plugin-generators:lint [existing outputs match the cache, left as is] - - -Linting "tooling-nx-plugin-generators"... - -All files pass linting. - diff --git a/.nx/cache/terminalOutputs/2274324271490405785 b/.nx/cache/terminalOutputs/2274324271490405785 deleted file mode 100644 index a224f06..0000000 --- a/.nx/cache/terminalOutputs/2274324271490405785 +++ /dev/null @@ -1 +0,0 @@ -PASS tooling-nx-plugin-generators libs/tooling/nx-plugin/generators/src/generators/shared/utils/string.spec.ts (7.947 s) diff --git a/.nx/cache/terminalOutputs/5787663384972380094 b/.nx/cache/terminalOutputs/5787663384972380094 deleted file mode 100644 index 8aebc01..0000000 --- a/.nx/cache/terminalOutputs/5787663384972380094 +++ /dev/null @@ -1,4 +0,0 @@ -Determining test suites to run...No tests found, exiting with code 0 - -   -   \ No newline at end of file diff --git a/.nx/cache/terminalOutputs/7564716918858913555 b/.nx/cache/terminalOutputs/7564716918858913555 deleted file mode 100644 index c23f201..0000000 --- a/.nx/cache/terminalOutputs/7564716918858913555 +++ /dev/null @@ -1,5 +0,0 @@ - -Linting "tooling-nx-plugin-validators"... - -All files pass linting. - diff --git a/.nx/cache/terminalOutputs/9370696602342275563 b/.nx/cache/terminalOutputs/9370696602342275563 deleted file mode 100644 index 8923344..0000000 --- a/.nx/cache/terminalOutputs/9370696602342275563 +++ /dev/null @@ -1,5 +0,0 @@ - -Linting "tooling-nx-plugin-generators"... - -All files pass linting. - diff --git a/.nx/cache/terminalOutputs/9419033249203670814 b/.nx/cache/terminalOutputs/9419033249203670814 deleted file mode 100644 index 47fffd0..0000000 --- a/.nx/cache/terminalOutputs/9419033249203670814 +++ /dev/null @@ -1,5 +0,0 @@ - -Linting "tooling-nx-plugin-config"... - -All files pass linting. - From e288f7f57e0829d9d6c2cc7849b067c2e4085080 Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:23:09 +0100 Subject: [PATCH 09/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20remove=20nx=20cac?= =?UTF-8?q?he?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b036bb5..13b6374 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ dist tmp /out-tsc /dv-example/ -.nx +.nx/ # dependencies node_modules From 21acd4a80b305887fd48db59196b76a6bfc2b40e Mon Sep 17 00:00:00 2001 From: kreuzerk Date: Wed, 20 Dec 2023 17:24:32 +0100 Subject: [PATCH 10/10] =?UTF-8?q?chore:=20=F0=9F=A4=96=20regenerate=20pack?= =?UTF-8?q?age-lock?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nx/cache/file-map.json | 227 +- .nx/cache/project-graph.json | 41143 ++++++++++++++++++++++++++++++++- package-lock.json | 182 +- 3 files changed, 41337 insertions(+), 215 deletions(-) diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json index 52fa372..4b33bc2 100644 --- a/.nx/cache/file-map.json +++ b/.nx/cache/file-map.json @@ -95,6 +95,60 @@ "nxJsonPlugins": [], "fileMap": { "projectFileMap": { + "tooling-nx-plugin-config": [ + { + "file": "libs/tooling/nx-plugin/config/.eslintrc.json", + "hash": "15754961097349354736" + }, + { + "file": "libs/tooling/nx-plugin/config/README.md", + "hash": "5737414999656167607" + }, + { + "file": "libs/tooling/nx-plugin/config/jest.config.ts", + "hash": "2076786795323067777" + }, + { + "file": "libs/tooling/nx-plugin/config/package-lock.json", + "hash": "18213964522934649663" + }, + { + "file": "libs/tooling/nx-plugin/config/package.json", + "hash": "4195037350856133493", + "deps": [ + "npm:inquirer", + "npm:@types/inquirer" + ] + }, + { + "file": "libs/tooling/nx-plugin/config/project.json", + "hash": "17388542100888902116" + }, + { + "file": "libs/tooling/nx-plugin/config/src/index.ts", + "hash": "4261738526690432499" + }, + { + "file": "libs/tooling/nx-plugin/config/src/lib/config.helper.ts", + "hash": "10560189062792512190", + "deps": [ + "npm:inquirer", + "npm:@nx/devkit" + ] + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.json", + "hash": "9584156853704587869" + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.lib.json", + "hash": "5419457303262888731" + }, + { + "file": "libs/tooling/nx-plugin/config/tsconfig.spec.json", + "hash": "12676338339107966475" + } + ], "tooling-nx-plugin-validators": [ { "file": "libs/tooling/nx-plugin/validators/.eslintrc.json", @@ -118,7 +172,10 @@ }, { "file": "libs/tooling/nx-plugin/validators/package.json", - "hash": "2381165151099912703" + "hash": "2381165151099912703", + "deps": [ + "npm:chalk" + ] }, { "file": "libs/tooling/nx-plugin/validators/project.json", @@ -129,7 +186,6 @@ "hash": "3775989106480202960", "deps": [ "npm:@nx/devkit", - "npm:@nx/devkit/testing", "tooling-nx-plugin-config" ] }, @@ -168,56 +224,6 @@ "hash": "12676338339107966475" } ], - "tooling-nx-plugin-config": [ - { - "file": "libs/tooling/nx-plugin/config/.eslintrc.json", - "hash": "15754961097349354736" - }, - { - "file": "libs/tooling/nx-plugin/config/README.md", - "hash": "5737414999656167607" - }, - { - "file": "libs/tooling/nx-plugin/config/jest.config.ts", - "hash": "2076786795323067777" - }, - { - "file": "libs/tooling/nx-plugin/config/package-lock.json", - "hash": "18213964522934649663" - }, - { - "file": "libs/tooling/nx-plugin/config/package.json", - "hash": "4195037350856133493" - }, - { - "file": "libs/tooling/nx-plugin/config/project.json", - "hash": "17388542100888902116" - }, - { - "file": "libs/tooling/nx-plugin/config/src/index.ts", - "hash": "4261738526690432499" - }, - { - "file": "libs/tooling/nx-plugin/config/src/lib/config.helper.ts", - "hash": "10560189062792512190", - "deps": [ - "npm:inquirer", - "npm:@nx/devkit" - ] - }, - { - "file": "libs/tooling/nx-plugin/config/tsconfig.json", - "hash": "9584156853704587869" - }, - { - "file": "libs/tooling/nx-plugin/config/tsconfig.lib.json", - "hash": "5419457303262888731" - }, - { - "file": "libs/tooling/nx-plugin/config/tsconfig.spec.json", - "hash": "12676338339107966475" - } - ], "ax-nx-plugin-workspace": [ { "file": ".ax.config.json", @@ -253,7 +259,7 @@ }, { "file": ".gitignore", - "hash": "9437586763271846806" + "hash": "6260611379607193793" }, { "file": ".npmrc", @@ -322,7 +328,7 @@ "file": "jest.preset.js", "hash": "9430166341120122740", "deps": [ - "npm:@nx/jest/preset" + "npm:@nx/jest" ] }, { @@ -333,9 +339,90 @@ "file": "nx.json", "hash": "10355845662403895098" }, + { + "file": "package-lock.json", + "hash": "15670629624382838121" + }, { "file": "package.json", - "hash": "9761205731330717165" + "hash": "9761205731330717165", + "deps": [ + "npm:@angular/core", + "npm:@angular/animations", + "npm:@angular/cdk", + "npm:@angular/common", + "npm:@angular/compiler", + "npm:@angular/forms", + "npm:@angular/platform-browser", + "npm:@angular/platform-browser-dynamic", + "npm:@angular/router", + "npm:@ngrx/store", + "npm:@types/inquirer", + "npm:chalk", + "npm:rxjs", + "npm:tslib", + "npm:zone.js", + "npm:@angular-devkit/build-angular", + "npm:@angular-devkit/core", + "npm:@angular-devkit/schematics", + "npm:@angular-eslint/eslint-plugin", + "npm:@angular-eslint/eslint-plugin-template", + "npm:@angular-eslint/template-parser", + "npm:@angular/cli", + "npm:@angular/compiler-cli", + "npm:@angular/language-service", + "npm:@nx/angular", + "npm:@nx/cypress", + "npm:@nx/devkit", + "npm:@nx/eslint-plugin", + "npm:@nx/jest", + "npm:@nx/js", + "npm:@nx/linter", + "npm:@nx/plugin", + "npm:@nx/web", + "npm:@nx/workspace", + "npm:@schematics/angular", + "npm:@semantic-release/changelog", + "npm:@semantic-release/commit-analyzer", + "npm:@semantic-release/exec", + "npm:@semantic-release/git", + "npm:@semantic-release/release-notes-generator", + "npm:@swc-node/register", + "npm:@swc/cli", + "npm:@swc/core", + "npm:@swc/helpers", + "npm:@types/jest", + "npm:@types/node", + "npm:@typescript-eslint/eslint-plugin", + "npm:@typescript-eslint/parser", + "npm:conventional-changelog-conventionalcommits", + "npm:cypress", + "npm:eslint", + "npm:eslint-config-prettier", + "npm:eslint-plugin-cypress", + "npm:handlebars", + "npm:http-server", + "npm:husky", + "npm:inquirer", + "npm:inquirer-autocomplete-prompt", + "npm:jest", + "npm:jest-environment-jsdom", + "npm:jest-preset-angular", + "npm:json-server", + "npm:jsonc-eslint-parser", + "npm:lint-staged", + "npm:markdown-toc", + "npm:npm-run-all", + "npm:nx", + "npm:nx-release", + "npm:prettier", + "npm:replace-json-property", + "npm:source-map-explorer", + "npm:ts-jest", + "npm:ts-node", + "npm:typescript", + "npm:verdaccio" + ] }, { "file": "project.json", @@ -405,7 +492,6 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/app/generator.spec.ts", "hash": "804817193264652368", "deps": [ - "npm:@nrwl/devkit/testing", "npm:@nrwl/devkit" ] }, @@ -416,8 +502,7 @@ "npm:path", "npm:fs", "npm:@nx/devkit", - "npm:@nx/devkit/src/utils/string-utils", - "npm:@nx/angular/generators", + "npm:@nx/angular", "tooling-nx-plugin-config" ] }, @@ -484,7 +569,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/state/lib/__projectName__.effects.spec.ts", "hash": "5617246286119475512", "deps": [ - "npm:rxjs/testing" + "npm:rxjs" ] }, { @@ -526,7 +611,7 @@ "hash": "937011369169402688", "deps": [ "npm:@angular/core", - "npm:@angular/common/http" + "npm:@angular/common" ] }, { @@ -537,7 +622,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/lib/files/util/lib/__projectName__.service.spec.ts", "hash": "1075166821751228279", "deps": [ - "npm:@angular/core/testing" + "npm:@angular/core" ] }, { @@ -552,14 +637,13 @@ "hash": "12643617170295389714", "deps": [ "npm:@nx/devkit", - "npm:nx/src/config/misc-interfaces" + "npm:nx" ] }, { "file": "libs/tooling/nx-plugin/generators/src/generators/lib/generator.spec.ts", "hash": "1656734658203775118", "deps": [ - "npm:@nrwl/devkit/testing", "npm:@nrwl/devkit" ] }, @@ -569,8 +653,7 @@ "deps": [ "npm:fs", "npm:path", - "npm:@nx/devkit", - "npm:@nx/devkit/src/utils/string-utils" + "npm:@nx/devkit" ] }, { @@ -587,7 +670,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular/generators" + "npm:@nx/angular" ] }, { @@ -605,7 +688,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular/generators" + "npm:@nx/angular" ] }, { @@ -631,7 +714,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular/generators" + "npm:@nx/angular" ] }, { @@ -640,7 +723,7 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular/generators" + "npm:@nx/angular" ] }, { @@ -658,14 +741,14 @@ "deps": [ "npm:path", "npm:@nx/devkit", - "npm:@nx/angular/generators" + "npm:@nx/angular" ] }, { "file": "libs/tooling/nx-plugin/generators/src/generators/move/generator.ts", "hash": "3861962895159191269", "deps": [ - "npm:@nrwl/workspace/generators", + "npm:@nrwl/workspace", "npm:@nrwl/devkit", "tooling-nx-plugin-validators", "npm:inquirer", @@ -774,7 +857,7 @@ "file": "libs/tooling/nx-plugin/generators/src/generators/shared/utils/generators-angular.ts", "hash": "2448398896972449059", "deps": [ - "npm:@nrwl/devkit/ngcli-adapter" + "npm:@nrwl/devkit" ] }, { diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json index 3920dea..7edac3b 100644 --- a/.nx/cache/project-graph.json +++ b/.nx/cache/project-graph.json @@ -558,29 +558,41152 @@ } } }, - "externalNodes": {}, + "externalNodes": { + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.3.2", + "packageName": "@adobe/css-tools", + "hash": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@angular-devkit/architect": { + "type": "npm", + "name": "npm:@angular-devkit/architect", + "data": { + "version": "0.1700.7", + "packageName": "@angular-devkit/architect", + "hash": "sha512-32uitQKsYLGXAKoXBsmOnPsTt9pS+b9cnFI9ZvBFVhJ31I2EOM7vGcMFalhTxdB/DkVHk4TyO78efV0V26DwCA==" + } + }, + "npm:@angular-devkit/build-angular": { + "type": "npm", + "name": "npm:@angular-devkit/build-angular", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/build-angular", + "hash": "sha512-AtEzLk6n6BXqQzk0Bsupe6GV0IgUe7RbpBfqROi+NZqMA7OUAHCX3xA6M68Qu+5KxBtW7T5lHeZZ7iP/y39wtQ==" + } + }, + "npm:chalk@5.3.0": { + "type": "npm", + "name": "npm:chalk@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:cli-width@4.1.0": { + "type": "npm", + "name": "npm:cli-width@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "cli-width", + "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:escape-string-regexp@5.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:figures@5.0.0": { + "type": "npm", + "name": "npm:figures@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "figures", + "hash": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:figures@6.0.1": { + "type": "npm", + "name": "npm:figures@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "figures", + "hash": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==" + } + }, + "npm:figures@2.0.0": { + "type": "npm", + "name": "npm:figures@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "figures", + "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" + } + }, + "npm:inquirer@9.2.11": { + "type": "npm", + "name": "npm:inquirer@9.2.11", + "data": { + "version": "9.2.11", + "packageName": "inquirer", + "hash": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.6", + "packageName": "inquirer", + "hash": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==" + } + }, + "npm:is-unicode-supported@1.3.0": { + "type": "npm", + "name": "npm:is-unicode-supported@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "is-unicode-supported", + "hash": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-unicode-supported@2.0.0": { + "type": "npm", + "name": "npm:is-unicode-supported@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-unicode-supported", + "hash": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==" + } + }, + "npm:mute-stream@1.0.0": { + "type": "npm", + "name": "npm:mute-stream@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:run-async@3.0.0": { + "type": "npm", + "name": "npm:run-async@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "run-async", + "hash": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:@angular-devkit/build-webpack": { + "type": "npm", + "name": "npm:@angular-devkit/build-webpack", + "data": { + "version": "0.1700.7", + "packageName": "@angular-devkit/build-webpack", + "hash": "sha512-B9Mg/qYDpE5my8PJ3VPQyRSUV0Oq1bFUzU8s0ZpqEZl1URKc04pm0LtLmebrMIcUZgDiGk0RHaD+O1E9IV/bdQ==" + } + }, + "npm:@angular-devkit/core": { + "type": "npm", + "name": "npm:@angular-devkit/core", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/core", + "hash": "sha512-vATobHo5O5tJba424hJfQWLb40GzvZPNsI74dcgSUTgrDph8ksmk5xB9OvEvf0INorQZ2IMphj/VIWj4/+JqSA==" + } + }, + "npm:@angular-devkit/core@16.0.6": { + "type": "npm", + "name": "npm:@angular-devkit/core@16.0.6", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/core", + "hash": "sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw==" + } + }, + "npm:@angular-devkit/schematics": { + "type": "npm", + "name": "npm:@angular-devkit/schematics", + "data": { + "version": "17.0.7", + "packageName": "@angular-devkit/schematics", + "hash": "sha512-BY11OkJkM3xyXcvyD7x5kGY/c8Ufd4AfPvI0D9imhVxbns45Q48b1DlvCQvSnCJ/s+OwnkrYb/Efa70ZiaGu8A==" + } + }, + "npm:@angular-devkit/schematics@16.0.6": { + "type": "npm", + "name": "npm:@angular-devkit/schematics@16.0.6", + "data": { + "version": "16.0.6", + "packageName": "@angular-devkit/schematics", + "hash": "sha512-Ipd3uEPgR0qz9HYQvY3RpWHO1DH34mQ6AShKiBypCCd/iwJPcJLKUVon2wYEfKlspgg9N8qWIuoMVHZG0Vwqgg==" + } + }, + "npm:@angular-eslint/bundled-angular-compiler": { + "type": "npm", + "name": "npm:@angular-eslint/bundled-angular-compiler", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/bundled-angular-compiler", + "hash": "sha512-xRlSh9qjdUdUKAy/0UQsxX7wf1tHApAsHsfismebPriqfmVAPyEg4HBrM8ImWaZxiqaTGC1AyHsUBQD5FK8o6w==" + } + }, + "npm:@angular-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@angular-eslint/eslint-plugin", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/eslint-plugin", + "hash": "sha512-fFOBlCOVObVu3gjLj+0BypqO1ZR/0bfJnDElqMdYwJG7zRaFT8NNQbrOo/q/GQoqOFoNna6mw3teTGsd5JnL2A==" + } + }, + "npm:@angular-eslint/eslint-plugin-template": { + "type": "npm", + "name": "npm:@angular-eslint/eslint-plugin-template", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/eslint-plugin-template", + "hash": "sha512-unZ6QNwtxuB8Eni7UPdw7uK6iZipZUXIsH+ZuLMOxwFgGMqeRnpv8SW0212rto3d/Ec0jESzVHKcwZ9pT+jxgw==" + } + }, + "npm:@angular-eslint/template-parser": { + "type": "npm", + "name": "npm:@angular-eslint/template-parser", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/template-parser", + "hash": "sha512-ofL46rNhRVeSxrSQF0vwhKMco+vJuo+ZGjSOzFmT9N3KAMB0j+WXTbpyGGMy0gQSBc4W6p+j+zxGa2CR2xb6wA==" + } + }, + "npm:@angular-eslint/utils": { + "type": "npm", + "name": "npm:@angular-eslint/utils", + "data": { + "version": "17.1.1", + "packageName": "@angular-eslint/utils", + "hash": "sha512-CTNPOb05S/DII/Fm8JYUvKo+B4u/ctHjGJ0X1YXUR0q31oaGqTE3KePGq76+Y6swRDf9NjUIcfcnZp3u3j4CBQ==" + } + }, + "npm:@angular/animations": { + "type": "npm", + "name": "npm:@angular/animations", + "data": { + "version": "17.0.7", + "packageName": "@angular/animations", + "hash": "sha512-IjZjPGMxvi2a9o7fzjwNO44FvhTZlVSgcPtqM6Glq0+WVeQcnZxf1Onj68M/FGx2AunS8elRbrgPxTexVeSo7A==" + } + }, + "npm:@angular/cdk": { + "type": "npm", + "name": "npm:@angular/cdk", + "data": { + "version": "17.0.4", + "packageName": "@angular/cdk", + "hash": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==" + } + }, + "npm:@angular/cli": { + "type": "npm", + "name": "npm:@angular/cli", + "data": { + "version": "17.0.7", + "packageName": "@angular/cli", + "hash": "sha512-oSa0GVAQNA7wFbLJYeaO3kV4iUcbKEqXDLxcIE8s1GfHddBOlXH2P1T4fXonCBl5qvV+joP0G0+fs7I0w2utZQ==" + } + }, + "npm:@schematics/angular@17.0.7": { + "type": "npm", + "name": "npm:@schematics/angular@17.0.7", + "data": { + "version": "17.0.7", + "packageName": "@schematics/angular", + "hash": "sha512-d7QKmcKrM4owb/2bR7Ipf23roiNbvbD/x7reNhQAtKAPLSHJ3Ulkf1+Yv+dj+9f+K7y9SBviEUSrD27BQ9WaxQ==" + } + }, + "npm:@schematics/angular": { + "type": "npm", + "name": "npm:@schematics/angular", + "data": { + "version": "16.0.6", + "packageName": "@schematics/angular", + "hash": "sha512-8naIlMeY9p5iOZqc3D0reoN80xm/fQINrG8mqIOgIY6bDeqfFvMKfaozA3PbPLbZhl5Jyk7VfZnXb6ISN0KnxQ==" + } + }, + "npm:@angular/common": { + "type": "npm", + "name": "npm:@angular/common", + "data": { + "version": "17.0.7", + "packageName": "@angular/common", + "hash": "sha512-bPPL6x0KOAOTxKSE2j4EWmEUOnqZYzOYiHzroa5b9UEyA9NvGkd9bm3zIxw8xcndRj1Ehcmvpi6KBLcYBBbWfg==" + } + }, + "npm:@angular/compiler": { + "type": "npm", + "name": "npm:@angular/compiler", + "data": { + "version": "17.0.7", + "packageName": "@angular/compiler", + "hash": "sha512-QHPuLti2c2tGZmOGZ0cfCHo4LxiHUkC27I0aZFDyQSSQqEI5obQGVlEREHysw0nsS3sYIcLvqcwcKcRtXlXtxQ==" + } + }, + "npm:@angular/compiler-cli": { + "type": "npm", + "name": "npm:@angular/compiler-cli", + "data": { + "version": "17.0.7", + "packageName": "@angular/compiler-cli", + "hash": "sha512-YnL38idjIYtl3BXYpv+sVJKWGbUjHT6eyQSQVAfO/1AwWqVa21K9hnE+Q37VmUKEcKFMnQembeuErA+KVsGI6A==" + } + }, + "npm:@angular/core": { + "type": "npm", + "name": "npm:@angular/core", + "data": { + "version": "17.0.7", + "packageName": "@angular/core", + "hash": "sha512-mEkelXkzEi6+A9GjdKOSGGzQAfo1iAjVTn6YsplNUeGE5JgDZYZ7sXGQqs0Lin7dzJxnPAgGjCOl7SpWLXIPSQ==" + } + }, + "npm:@angular/forms": { + "type": "npm", + "name": "npm:@angular/forms", + "data": { + "version": "17.0.7", + "packageName": "@angular/forms", + "hash": "sha512-28BxRxEmgZIofGwVp6s2v3ri/kuWW+/EY/ZXhavlWKJEh4ATJl72k0RkRWNcQi4wnvn0Qb8tFdnVJnvRZvvKEw==" + } + }, + "npm:@angular/language-service": { + "type": "npm", + "name": "npm:@angular/language-service", + "data": { + "version": "17.0.7", + "packageName": "@angular/language-service", + "hash": "sha512-03EXeBZgyGNnEDLiABwEw0lpAcqLxSgl+bXQahOO4OnBSYQWGEiqfs3ymNbNj0chUfQVadG4FWghwGTGbj77Iw==" + } + }, + "npm:@angular/platform-browser": { + "type": "npm", + "name": "npm:@angular/platform-browser", + "data": { + "version": "17.0.7", + "packageName": "@angular/platform-browser", + "hash": "sha512-bm9/wt51nc/MPjft/FlRNIgFSeLjDtfJOT7M32Rt6kOHhNKSK7ZTPWdMe9ahuHSbAhLzd0G/4NsT5sKrWSeVZg==" + } + }, + "npm:@angular/platform-browser-dynamic": { + "type": "npm", + "name": "npm:@angular/platform-browser-dynamic", + "data": { + "version": "17.0.7", + "packageName": "@angular/platform-browser-dynamic", + "hash": "sha512-OquwUX9fLWA2JUZW5Jm6atk0CPt0sA7Tg24eGLsr6g1XfTS7jRZprlGaa72NgPLnQVV6m84o/ZiNYS6yPmq1Gg==" + } + }, + "npm:@angular/router": { + "type": "npm", + "name": "npm:@angular/router", + "data": { + "version": "17.0.7", + "packageName": "@angular/router", + "hash": "sha512-rUFPe1uDlYYw6+3Gq68czW7WxBH7zT/D3UsT1otqwUV4RnQQsVze4fIit9FqJh7tuP4y3WpB4XBNf7p7Oi6TJw==" + } + }, + "npm:@assemblyscript/loader": { + "type": "npm", + "name": "npm:@assemblyscript/loader", + "data": { + "version": "0.10.1", + "packageName": "@assemblyscript/loader", + "hash": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.23.5", + "packageName": "@babel/code-frame", + "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:color-convert@1.9.3": { + "type": "npm", + "name": "npm:color-convert@1.9.3", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name@1.1.3": { + "type": "npm", + "name": "npm:color-name@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color@8.1.1": { + "type": "npm", + "name": "npm:supports-color@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:supports-color@9.4.0": { + "type": "npm", + "name": "npm:supports-color@9.4.0", + "data": { + "version": "9.4.0", + "packageName": "supports-color", + "hash": "4124946643497815937" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.23.5", + "packageName": "@babel/compat-data", + "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.23.2", + "packageName": "@babel/core", + "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.9.0", + "packageName": "convert-source-map", + "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "3378029399647957957" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.0", + "packageName": "@babel/generator", + "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" + } + }, + "npm:@babel/generator@7.23.6": { + "type": "npm", + "name": "npm:@babel/generator@7.23.6", + "data": { + "version": "7.23.6", + "packageName": "@babel/generator", + "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.23.6", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.23.6", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.4.4", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-function-name", + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.23.3", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.23.4", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.23.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.23.6", + "packageName": "@babel/helpers", + "hash": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.23.4", + "packageName": "@babel/highlight", + "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.23.6", + "packageName": "@babel/parser", + "hash": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.23.5", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.23.2", + "packageName": "@babel/preset-env", + "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.6-no-external-plugins", + "packageName": "@babel/preset-modules", + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-typescript", + "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/runtime", + "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.22.15", + "packageName": "@babel/template", + "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.23.6", + "packageName": "@babel/traverse", + "hash": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.23.6", + "packageName": "@babel/types", + "hash": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.20", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==" + } + }, + "npm:@cypress/request": { + "type": "npm", + "name": "npm:@cypress/request", + "data": { + "version": "2.88.12", + "packageName": "@cypress/request", + "hash": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==" + } + }, + "npm:@cypress/request@3.0.1": { + "type": "npm", + "name": "npm:@cypress/request@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@cypress/request", + "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" + } + }, + "npm:@cypress/xvfb": { + "type": "npm", + "name": "npm:@cypress/xvfb", + "data": { + "version": "1.2.4", + "packageName": "@cypress/xvfb", + "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@4.3.2": { + "type": "npm", + "name": "npm:debug@4.3.2", + "data": { + "version": "4.3.2", + "packageName": "debug", + "hash": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==" + } + }, + "npm:debug@3.1.0": { + "type": "npm", + "name": "npm:debug@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "debug", + "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.7", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" + } + }, + "npm:@esbuild/android-arm": { + "type": "npm", + "name": "npm:@esbuild/android-arm", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/android-arm", + "hash": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==" + } + }, + "npm:@esbuild/android-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm", + "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" + } + }, + "npm:@esbuild/android-arm64": { + "type": "npm", + "name": "npm:@esbuild/android-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==" + } + }, + "npm:@esbuild/android-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" + } + }, + "npm:@esbuild/android-x64": { + "type": "npm", + "name": "npm:@esbuild/android-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/android-x64", + "hash": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==" + } + }, + "npm:@esbuild/android-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-x64", + "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" + } + }, + "npm:@esbuild/darwin-arm64": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" + } + }, + "npm:@esbuild/darwin-x64": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==" + } + }, + "npm:@esbuild/darwin-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" + } + }, + "npm:@esbuild/freebsd-arm64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" + } + }, + "npm:@esbuild/freebsd-x64": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" + } + }, + "npm:@esbuild/linux-arm": { + "type": "npm", + "name": "npm:@esbuild/linux-arm", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==" + } + }, + "npm:@esbuild/linux-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" + } + }, + "npm:@esbuild/linux-arm64": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==" + } + }, + "npm:@esbuild/linux-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" + } + }, + "npm:@esbuild/linux-ia32": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==" + } + }, + "npm:@esbuild/linux-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" + } + }, + "npm:@esbuild/linux-loong64": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==" + } + }, + "npm:@esbuild/linux-loong64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" + } + }, + "npm:@esbuild/linux-mips64el": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" + } + }, + "npm:@esbuild/linux-ppc64": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" + } + }, + "npm:@esbuild/linux-riscv64": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" + } + }, + "npm:@esbuild/linux-s390x": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==" + } + }, + "npm:@esbuild/linux-s390x@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==" + } + }, + "npm:@esbuild/linux-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" + } + }, + "npm:@esbuild/netbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" + } + }, + "npm:@esbuild/openbsd-x64": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" + } + }, + "npm:@esbuild/sunos-x64": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" + } + }, + "npm:@esbuild/win32-arm64": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==" + } + }, + "npm:@esbuild/win32-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" + } + }, + "npm:@esbuild/win32-ia32": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==" + } + }, + "npm:@esbuild/win32-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.19.5", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==" + } + }, + "npm:@esbuild/win32-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.10.0", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "2.1.4", + "packageName": "@eslint/eslintrc", + "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" + } + }, + "npm:ajv@6.12.6": { + "type": "npm", + "name": "npm:ajv@6.12.6", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:globals@13.24.0": { + "type": "npm", + "name": "npm:globals@13.24.0", + "data": { + "version": "13.24.0", + "packageName": "globals", + "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:minimatch@3.1.2": { + "type": "npm", + "name": "npm:minimatch@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:minimatch@7.4.6": { + "type": "npm", + "name": "npm:minimatch@7.4.6", + "data": { + "version": "7.4.6", + "packageName": "minimatch", + "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@4.8.3": { + "type": "npm", + "name": "npm:type-fest@4.8.3", + "data": { + "version": "4.8.3", + "packageName": "type-fest", + "hash": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==" + } + }, + "npm:type-fest@1.4.0": { + "type": "npm", + "name": "npm:type-fest@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:type-fest@3.13.1": { + "type": "npm", + "name": "npm:type-fest@3.13.1", + "data": { + "version": "3.13.1", + "packageName": "type-fest", + "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" + } + }, + "npm:type-fest@2.19.0": { + "type": "npm", + "name": "npm:type-fest@2.19.0", + "data": { + "version": "2.19.0", + "packageName": "type-fest", + "hash": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "8.48.0", + "packageName": "@eslint/js", + "hash": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==" + } + }, + "npm:@fastify/busboy": { + "type": "npm", + "name": "npm:@fastify/busboy", + "data": { + "version": "2.1.0", + "packageName": "@fastify/busboy", + "hash": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.11.13", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "2.0.1", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "13543247940053143024" + } + }, + "npm:strip-ansi@7.1.0": { + "type": "npm", + "name": "npm:strip-ansi@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "strip-ansi", + "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "11479311392825997119" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrap-ansi@7.0.0": { + "type": "npm", + "name": "npm:wrap-ansi@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:js-yaml@3.14.1": { + "type": "npm", + "name": "npm:js-yaml@3.14.1", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.7.0", + "packageName": "@jest/console", + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.7.0", + "packageName": "@jest/core", + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.7.0", + "packageName": "@jest/environment", + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.7.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.7.0", + "packageName": "@jest/globals", + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.7.0", + "packageName": "@jest/reporters", + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.6.3", + "packageName": "@jest/schemas", + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.6.3", + "packageName": "@jest/source-map", + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-result", + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.7.0", + "packageName": "@jest/transform", + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.6.3", + "packageName": "@jest/types", + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.1", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.5", + "packageName": "@jridgewell/source-map", + "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:@ljharb/through": { + "type": "npm", + "name": "npm:@ljharb/through", + "data": { + "version": "2.3.11", + "packageName": "@ljharb/through", + "hash": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==" + } + }, + "npm:@mole-inc/bin-wrapper": { + "type": "npm", + "name": "npm:@mole-inc/bin-wrapper", + "data": { + "version": "8.0.1", + "packageName": "@mole-inc/bin-wrapper", + "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" + } + }, + "npm:@ngrx/store": { + "type": "npm", + "name": "npm:@ngrx/store", + "data": { + "version": "17.0.1", + "packageName": "@ngrx/store", + "hash": "sha512-BmVzN+fqyz0ZrVEmJ+jrNwePMKcpNL49vb8sbQ3yDDftxgZz2HqRKFMexqlXpz5ixwK5LqTOblHNQOgi9irsTw==" + } + }, + "npm:@ngtools/webpack": { + "type": "npm", + "name": "npm:@ngtools/webpack", + "data": { + "version": "17.0.7", + "packageName": "@ngtools/webpack", + "hash": "sha512-gwhUhpwXn0trwwKdSu9WlJbEcLt+s/2fPwoD9lZ0y3wXfrOogsfcNBJKeO5BZf1h+A3AWt7ePmgrZXSJM+865Q==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/agent": { + "type": "npm", + "name": "npm:@npmcli/agent", + "data": { + "version": "2.2.0", + "packageName": "@npmcli/agent", + "hash": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==" + } + }, + "npm:http-proxy-agent@7.0.0": { + "type": "npm", + "name": "npm:http-proxy-agent@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:lru-cache@10.1.0": { + "type": "npm", + "name": "npm:lru-cache@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "lru-cache", + "hash": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==" + } + }, + "npm:lru-cache@6.0.0": { + "type": "npm", + "name": "npm:lru-cache@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:lru-cache@4.1.5": { + "type": "npm", + "name": "npm:lru-cache@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "lru-cache", + "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "5.0.3", + "packageName": "@npmcli/git", + "hash": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==" + } + }, + "npm:isexe@3.1.1": { + "type": "npm", + "name": "npm:isexe@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "isexe", + "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:which@4.0.0": { + "type": "npm", + "name": "npm:which@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "which", + "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "228540766434988782" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "7.0.0", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "7.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==" + } + }, + "npm:@nrwl/angular": { + "type": "npm", + "name": "npm:@nrwl/angular", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/angular", + "hash": "sha512-4f7o6dsoQwP8o8O57dT0fTNnKcRllsQVkYeZx2SR/I0Gs2I/UlaCQZ6GCjy+BXSJS3AXn7sz6a69vo0uGJPBFw==" + } + }, + "npm:@nrwl/cypress": { + "type": "npm", + "name": "npm:@nrwl/cypress", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/cypress", + "hash": "sha512-/cimurrZnHFX9o0Sb5cj7SskUtEgA2aYnpLuZuAWaazpQPd+72WXTXFVYN8dVd7wgTV96uTQUTkUGt9nzvNiTA==" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/devkit", + "hash": "sha512-uZVqc2qhi+WdSqLV9aIcE+5ck+IUSQ47Cc5bslWrssQjBncqGavHYDuU4ZLuKK5HxCuZqlQjvo7TsF7LeOjNiA==" + } + }, + "npm:@nrwl/devkit@16.5.0": { + "type": "npm", + "name": "npm:@nrwl/devkit@16.5.0", + "data": { + "version": "16.5.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-O/CH43gM2sumfO1BX7f20B4rniE9P48XwMEQoi1HssdzL+IstHWw5Q9BO2uoSCNpu5x04V/VzX/8yFmoFmOJ7g==" + } + }, + "npm:@nrwl/eslint-plugin-nx": { + "type": "npm", + "name": "npm:@nrwl/eslint-plugin-nx", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/eslint-plugin-nx", + "hash": "sha512-xQDmFeIc+VR3q6scSSciSNVSdcRI52FFTTlDw4/pZCJk59LJTt6GgnqeL0Aj4EIgELfZQLOsKrxIoup5gzKlrQ==" + } + }, + "npm:@nrwl/jest": { + "type": "npm", + "name": "npm:@nrwl/jest", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/jest", + "hash": "sha512-YZ6yFFw1lq7nSCZTkP8qMbIeYX/yJ6Ko6iXPECPQViy4W6E9WEVnWU52RkovoKSN+CuhienzJCxne7DALLLr3w==" + } + }, + "npm:@nrwl/js": { + "type": "npm", + "name": "npm:@nrwl/js", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/js", + "hash": "sha512-oFnyaVOpVG3XrkIXQMs5TM6hrRRBe38jRX79d51S41yLuiOrHgpJlMmii1wafevM1Dpk9UlAvPh7v8OffgDZtg==" + } + }, + "npm:@nrwl/nx-plugin": { + "type": "npm", + "name": "npm:@nrwl/nx-plugin", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/nx-plugin", + "hash": "sha512-sg8oOxs3abfNMOpWK8utqy2wIfihLnLAtWxBFoRb/R+Xwjc+vw/ibqGGvZm+jSlk5SQxit52RMMQtl5foI5HQw==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/tao", + "hash": "sha512-cgtUKTRSxDZ94S9IpC27/qYZJ1YttJDET+veKrtRYvwnHFgkq1peyeTTtnM25yJon7PRdm2lYrlIVdPm0vXupw==" + } + }, + "npm:@nrwl/web": { + "type": "npm", + "name": "npm:@nrwl/web", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/web", + "hash": "sha512-htiLKuLgWikZOf+gKzX4tkkcYV+94ZGYeBEHAZ8Agx4dyw7/8u1JStSAvrwZFAzw06KejGJy4NAh2ycCLJMwrA==" + } + }, + "npm:@nrwl/webpack": { + "type": "npm", + "name": "npm:@nrwl/webpack", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/webpack", + "hash": "sha512-cxBh3Aqg9nIR7be3y9pvss2x22Bp0iDmcvpj/L0fc/3PK9DpYK2Y2eDGvswsd5xZvLTu5BhQVji/io73JmmB4w==" + } + }, + "npm:@nrwl/workspace": { + "type": "npm", + "name": "npm:@nrwl/workspace", + "data": { + "version": "17.2.6", + "packageName": "@nrwl/workspace", + "hash": "sha512-ACMnIxblNEAsjFfkpNspENxlm/jMpF9hr3aKioyoFAUmATxO7lJt8VuA43slI1oVgtTfWpOcM0aSRP/07kVW6Q==" + } + }, + "npm:@nx/angular": { + "type": "npm", + "name": "npm:@nx/angular", + "data": { + "version": "17.2.6", + "packageName": "@nx/angular", + "hash": "sha512-e11FcG9SP8gR/nwfhvPnORfOee5zjUFkC1vLLY/JdJRV2jXE5qLtoTVq8lFqU6LjD21FoFCt5EMiceRj3WoEZQ==" + } + }, + "npm:yallist@4.0.0": { + "type": "npm", + "name": "npm:yallist@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yallist@2.1.2": { + "type": "npm", + "name": "npm:yallist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "yallist", + "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:@nx/cypress": { + "type": "npm", + "name": "npm:@nx/cypress", + "data": { + "version": "17.2.6", + "packageName": "@nx/cypress", + "hash": "sha512-C2TSLyV2Nm8zIM8aJJrRkv6RO4iqLRmO+XC0/Z58SF9cD3iF7HSKzGtj2iRshgI8Pac7WgvcZLYyiKQIAdJIUw==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "17.2.6", + "packageName": "@nx/devkit", + "hash": "sha512-a9GPw0KiLhvv2RBLPlWgaVDZRvgww4ANBwv7LuGvk8FNgxF5vkQMM5WyKpvxKJhmh1EZ+T9JsGWAFrK7skW9Bw==" + } + }, + "npm:@nx/devkit@16.5.0": { + "type": "npm", + "name": "npm:@nx/devkit@16.5.0", + "data": { + "version": "16.5.0", + "packageName": "@nx/devkit", + "hash": "sha512-IfGGKwgOBZshgRtL0V0IOuTaW8mnuSFft708fQfRyw8ArpNeyJbdbIvd9lCsHAFaKE5VTIKug4C48tyQikM7eA==" + } + }, + "npm:@nx/eslint": { + "type": "npm", + "name": "npm:@nx/eslint", + "data": { + "version": "17.2.6", + "packageName": "@nx/eslint", + "hash": "sha512-gDtIf6T3vCf7XO2lWvVulFcNmx2l6kKGZypEpLMGtfdAUai/aaBbNHbbwcsOZiPvWtNo64mGBZX5Qv6aPb9oPg==" + } + }, + "npm:@nx/eslint-plugin": { + "type": "npm", + "name": "npm:@nx/eslint-plugin", + "data": { + "version": "17.2.6", + "packageName": "@nx/eslint-plugin", + "hash": "sha512-P9+G9r6fz0RP/muchPFHyicfA4o80kUD8oRmrJJAjI3KolpRk3Kld7GAbXPkunnGuMcf/nSJxaUkt+QCe5zOhQ==" + } + }, + "npm:@nx/jest": { + "type": "npm", + "name": "npm:@nx/jest", + "data": { + "version": "17.2.6", + "packageName": "@nx/jest", + "hash": "sha512-lWdzwkNfVQPCcr3gb3OrtUX/wjI9Oxm6Q9cKezPydCWtrZnEQii/aRi9/AncCGBf0Rx6hLT0yaiIAvJKlCk9qg==" + } + }, + "npm:@nx/js": { + "type": "npm", + "name": "npm:@nx/js", + "data": { + "version": "17.2.6", + "packageName": "@nx/js", + "hash": "sha512-jjWzEg63C7vBu6Lo890N8gIcEji+8/ggf5My2kCmAnJehqIg8/B0Bq0x9shIxAT7qZgyLxHbC3VWg5ictS6aEw==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:fast-glob@3.3.2": { + "type": "npm", + "name": "npm:fast-glob@3.3.2", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.1", + "packageName": "fast-glob", + "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" + } + }, + "npm:ora@5.3.0": { + "type": "npm", + "name": "npm:ora@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:source-map@0.6.1": { + "type": "npm", + "name": "npm:source-map@0.6.1", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:@nx/linter": { + "type": "npm", + "name": "npm:@nx/linter", + "data": { + "version": "17.2.6", + "packageName": "@nx/linter", + "hash": "sha512-TTS3WPZQNVdFgTykdX3jbELcN0IsYpKPv8TGOzqkJbRfvsF2jjZzQggWujg1iXBdWRKdaWYDi8SUi+4wocemIg==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-ezU5u7hkEwI2xzsFSjyr53uNURBvga40LQlpEnS/CbqRifHHhTKisCy+r2+kRhiOwTeR+I+/2D3zPyIyN3aEHQ==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-wUIwbM/7LMxlFkEOlbxR/s2qaRuD69yXc70f2rtxsskwJ4GOF5kfc1jk2YaDs9qswI+FgQVgbeZu8pgF+slY7Q==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-uBKEGqG4txVCpBirRzt1QwuOLzfA0s9dlUP7n5t4qJuaf9OXuVcDXay8g84WT1jx4PPtipyv/wyIFu3r7v8kZw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-dSDVz2BktaPHMkrJojFCx+V+QFLDF0KzoHorESzZmHZTfumr0xtJ1COWCU+gYmLptc+8OgwCzCPWXHhcDgji/A==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-AD99Kk47Yxn3IJ89aCT1oVpNX1XNECAYay97yhqf2tiBsDv9hC43PppOdjI0dNP5VRBTrr6EsWdhvE0uNJ3RJw==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-MOX/EJyzseEnzbFxY7V6es/xta6WQ0cDDrl6i6qjCRnoRTFFVMsL0Fb4dtVbv7fd75O41P+OBGpG70MYx2SOxw==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-16xTSszGPY25INDUr4pzLXWcO3va1764iVFiHRTuJr5siDymY7zSj+DPKFmewzqF2358Y5m8AtMotY0FqKciYg==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-F/nIq8bcZd2cNuBiQbyJwur7CpeRBCt0qKDF38HQ2l3HhQv+jwk4T6115LMQqwZb9e6kt6BAFsY+6O7I6t3pCw==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-1lAKKKiH7eduzqcPDB03iPz38yNXn3Y4Q/3jULjaRc3EFAplfBsYVwJ9kGjXPZSrpt/AY7w5ATY55/r5B3gQnA==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "17.2.6", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-LrJySMWrO5oWMrP4VOWM1hr3c4rtxHGCcRy19VwqvaAPDrnsg0qfPjv4q1C9YyIU8sj+T3oJs1yZdnNntlN8ew==" + } + }, + "npm:@nx/plugin": { + "type": "npm", + "name": "npm:@nx/plugin", + "data": { + "version": "17.2.6", + "packageName": "@nx/plugin", + "hash": "sha512-K9DZhFeqtmRSELwEbrK2zLOHhCf97glBjF2vRN24zb5k7tCAOtpsK7L6TD9Xl5OSx1e9ffi9emRJUjPli6XoRw==" + } + }, + "npm:@nx/web": { + "type": "npm", + "name": "npm:@nx/web", + "data": { + "version": "17.2.6", + "packageName": "@nx/web", + "hash": "sha512-6VkA19bFepNmrIISxXwYMo5nm/uUAPHQKNPfSHqxo9Ef57WS93dDMVRqc7641lRvT31Nc75Uu0NPYGo/B/s87A==" + } + }, + "npm:@nx/webpack": { + "type": "npm", + "name": "npm:@nx/webpack", + "data": { + "version": "17.2.6", + "packageName": "@nx/webpack", + "hash": "sha512-vODJosrOh5ru1Gy7rBp9yXVeeSF32bq1qTjOX3ez1OOXbw5fmJcxaOjOoh44ty0+d9wIB2YIl8lHsmmaCcmOnw==" + } + }, + "npm:array-union@3.0.1": { + "type": "npm", + "name": "npm:array-union@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:copy-webpack-plugin@10.2.4": { + "type": "npm", + "name": "npm:copy-webpack-plugin@10.2.4", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "11.0.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" + } + }, + "npm:cosmiconfig@7.1.0": { + "type": "npm", + "name": "npm:cosmiconfig@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "cosmiconfig", + "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:cosmiconfig@8.3.6": { + "type": "npm", + "name": "npm:cosmiconfig@8.3.6", + "data": { + "version": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:globby@12.2.0": { + "type": "npm", + "name": "npm:globby@12.2.0", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:globby@14.0.0": { + "type": "npm", + "name": "npm:globby@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "globby", + "hash": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==" + } + }, + "npm:globby@13.2.2": { + "type": "npm", + "name": "npm:globby@13.2.2", + "data": { + "version": "13.2.2", + "packageName": "globby", + "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:iconv-lite@0.6.3": { + "type": "npm", + "name": "npm:iconv-lite@0.6.3", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:less@4.1.3": { + "type": "npm", + "name": "npm:less@4.1.3", + "data": { + "version": "4.1.3", + "packageName": "less", + "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" + } + }, + "npm:less": { + "type": "npm", + "name": "npm:less", + "data": { + "version": "4.2.0", + "packageName": "less", + "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" + } + }, + "npm:loader-utils@2.0.4": { + "type": "npm", + "name": "npm:loader-utils@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "3.2.1", + "packageName": "loader-utils", + "hash": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir@4.0.0": { + "type": "npm", + "name": "npm:make-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:mini-css-extract-plugin@2.4.7": { + "type": "npm", + "name": "npm:mini-css-extract-plugin@2.4.7", + "data": { + "version": "2.4.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.7.6", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==" + } + }, + "npm:parse5@4.0.0": { + "type": "npm", + "name": "npm:parse5@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse5", + "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pify@3.0.0": { + "type": "npm", + "name": "npm:pify@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "npm:postcss-loader@6.2.1": { + "type": "npm", + "name": "npm:postcss-loader@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "postcss-loader", + "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "7.3.3", + "packageName": "postcss-loader", + "hash": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==" + } + }, + "npm:sass-loader@12.6.0": { + "type": "npm", + "name": "npm:sass-loader@12.6.0", + "data": { + "version": "12.6.0", + "packageName": "sass-loader", + "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "13.3.2", + "packageName": "sass-loader", + "hash": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:source-map-loader@3.0.2": { + "type": "npm", + "name": "npm:source-map-loader@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "source-map-loader", + "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "4.0.1", + "packageName": "source-map-loader", + "hash": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==" + } + }, + "npm:@nx/workspace": { + "type": "npm", + "name": "npm:@nx/workspace", + "data": { + "version": "17.2.6", + "packageName": "@nx/workspace", + "hash": "sha512-mss1RggPBWpggMJ7ok83iHx/PdlevhDqayLvjguRKjPwk0rTBRUuvY78AkKo2RbMOQyywNMt09MNz5FOmfCfqg==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "4.0.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "5.0.2", + "packageName": "@octokit/core", + "hash": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "9.0.4", + "packageName": "@octokit/endpoint", + "hash": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "7.0.2", + "packageName": "@octokit/graphql", + "hash": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "19.1.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "9.1.5", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==" + } + }, + "npm:@octokit/plugin-retry": { + "type": "npm", + "name": "npm:@octokit/plugin-retry", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-retry", + "hash": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==" + } + }, + "npm:@octokit/plugin-throttling": { + "type": "npm", + "name": "npm:@octokit/plugin-throttling", + "data": { + "version": "8.1.3", + "packageName": "@octokit/plugin-throttling", + "hash": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "8.1.6", + "packageName": "@octokit/request", + "hash": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "5.0.1", + "packageName": "@octokit/request-error", + "hash": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "12.4.0", + "packageName": "@octokit/types", + "hash": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@pnpm/config.env-replace": { + "type": "npm", + "name": "npm:@pnpm/config.env-replace", + "data": { + "version": "1.1.0", + "packageName": "@pnpm/config.env-replace", + "hash": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==" + } + }, + "npm:@pnpm/network.ca-file": { + "type": "npm", + "name": "npm:@pnpm/network.ca-file", + "data": { + "version": "1.0.2", + "packageName": "@pnpm/network.ca-file", + "hash": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==" + } + }, + "npm:graceful-fs@4.2.10": { + "type": "npm", + "name": "npm:graceful-fs@4.2.10", + "data": { + "version": "4.2.10", + "packageName": "graceful-fs", + "hash": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:@pnpm/npm-conf": { + "type": "npm", + "name": "npm:@pnpm/npm-conf", + "data": { + "version": "2.2.2", + "packageName": "@pnpm/npm-conf", + "hash": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==" + } + }, + "npm:magic-string@0.30.0": { + "type": "npm", + "name": "npm:magic-string@0.30.0", + "data": { + "version": "0.30.0", + "packageName": "magic-string", + "hash": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.5", + "packageName": "magic-string", + "hash": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==" + } + }, + "npm:@semantic-release/changelog": { + "type": "npm", + "name": "npm:@semantic-release/changelog", + "data": { + "version": "6.0.3", + "packageName": "@semantic-release/changelog", + "hash": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==" + } + }, + "npm:@semantic-release/commit-analyzer": { + "type": "npm", + "name": "npm:@semantic-release/commit-analyzer", + "data": { + "version": "11.1.0", + "packageName": "@semantic-release/commit-analyzer", + "hash": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==" + } + }, + "npm:@semantic-release/error": { + "type": "npm", + "name": "npm:@semantic-release/error", + "data": { + "version": "3.0.0", + "packageName": "@semantic-release/error", + "hash": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==" + } + }, + "npm:@semantic-release/error@4.0.0": { + "type": "npm", + "name": "npm:@semantic-release/error@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "@semantic-release/error", + "hash": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==" + } + }, + "npm:@semantic-release/exec": { + "type": "npm", + "name": "npm:@semantic-release/exec", + "data": { + "version": "6.0.3", + "packageName": "@semantic-release/exec", + "hash": "sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==" + } + }, + "npm:@semantic-release/git": { + "type": "npm", + "name": "npm:@semantic-release/git", + "data": { + "version": "10.0.1", + "packageName": "@semantic-release/git", + "hash": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==" + } + }, + "npm:@semantic-release/github": { + "type": "npm", + "name": "npm:@semantic-release/github", + "data": { + "version": "9.2.5", + "packageName": "@semantic-release/github", + "hash": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==" + } + }, + "npm:aggregate-error@5.0.0": { + "type": "npm", + "name": "npm:aggregate-error@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "aggregate-error", + "hash": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:aggregate-error@4.0.1": { + "type": "npm", + "name": "npm:aggregate-error@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "aggregate-error", + "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" + } + }, + "npm:clean-stack@5.2.0": { + "type": "npm", + "name": "npm:clean-stack@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "clean-stack", + "hash": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clean-stack@4.2.0": { + "type": "npm", + "name": "npm:clean-stack@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "clean-stack", + "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:mime@4.0.1": { + "type": "npm", + "name": "npm:mime@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "mime", + "hash": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==" + } + }, + "npm:mime@2.6.0": { + "type": "npm", + "name": "npm:mime@2.6.0", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@1.4.1": { + "type": "npm", + "name": "npm:mime@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "mime", + "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + } + }, + "npm:mime@3.0.0": { + "type": "npm", + "name": "npm:mime@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "mime", + "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + }, + "npm:path-type@5.0.0": { + "type": "npm", + "name": "npm:path-type@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-type", + "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:url-join@5.0.0": { + "type": "npm", + "name": "npm:url-join@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "url-join", + "hash": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:@semantic-release/npm": { + "type": "npm", + "name": "npm:@semantic-release/npm", + "data": { + "version": "11.0.2", + "packageName": "@semantic-release/npm", + "hash": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==" + } + }, + "npm:execa@8.0.1": { + "type": "npm", + "name": "npm:execa@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "execa", + "hash": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==" + } + }, + "npm:execa@0.7.0": { + "type": "npm", + "name": "npm:execa@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "execa", + "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" + } + }, + "npm:execa@4.1.0": { + "type": "npm", + "name": "npm:execa@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "execa", + "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:execa@7.2.0": { + "type": "npm", + "name": "npm:execa@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "execa", + "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" + } + }, + "npm:get-stream@8.0.1": { + "type": "npm", + "name": "npm:get-stream@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "get-stream", + "hash": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" + } + }, + "npm:get-stream@3.0.0": { + "type": "npm", + "name": "npm:get-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "get-stream", + "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream@6.0.1": { + "type": "npm", + "name": "npm:get-stream@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "7.0.1", + "packageName": "get-stream", + "hash": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==" + } + }, + "npm:human-signals@5.0.0": { + "type": "npm", + "name": "npm:human-signals@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "human-signals", + "hash": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" + } + }, + "npm:human-signals@1.1.1": { + "type": "npm", + "name": "npm:human-signals@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:is-stream@1.1.0": { + "type": "npm", + "name": "npm:is-stream@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:normalize-url@8.0.0": { + "type": "npm", + "name": "npm:normalize-url@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "normalize-url", + "hash": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-run-path@5.1.0": { + "type": "npm", + "name": "npm:npm-run-path@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "npm-run-path", + "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:parse-json@8.1.0": { + "type": "npm", + "name": "npm:parse-json@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "parse-json", + "hash": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-key@2.0.1": { + "type": "npm", + "name": "npm:path-key@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "15700571927724585982" + } + }, + "npm:read-pkg@9.0.1": { + "type": "npm", + "name": "npm:read-pkg@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "read-pkg", + "hash": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==" + } + }, + "npm:signal-exit@4.1.0": { + "type": "npm", + "name": "npm:signal-exit@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:strip-final-newline@3.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:@semantic-release/release-notes-generator": { + "type": "npm", + "name": "npm:@semantic-release/release-notes-generator", + "data": { + "version": "12.1.0", + "packageName": "@semantic-release/release-notes-generator", + "hash": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==" + } + }, + "npm:@sigstore/bundle": { + "type": "npm", + "name": "npm:@sigstore/bundle", + "data": { + "version": "2.1.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.2.1", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==" + } + }, + "npm:@sigstore/sign": { + "type": "npm", + "name": "npm:@sigstore/sign", + "data": { + "version": "2.2.0", + "packageName": "@sigstore/sign", + "hash": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "2.2.0", + "packageName": "@sigstore/tuf", + "hash": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.6.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" + } + }, + "npm:@sindresorhus/merge-streams": { + "type": "npm", + "name": "npm:@sindresorhus/merge-streams", + "data": { + "version": "1.0.0", + "packageName": "@sindresorhus/merge-streams", + "hash": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@socket.io/component-emitter": { + "type": "npm", + "name": "npm:@socket.io/component-emitter", + "data": { + "version": "3.1.0", + "packageName": "@socket.io/component-emitter", + "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" + } + }, + "npm:@swc-node/core": { + "type": "npm", + "name": "npm:@swc-node/core", + "data": { + "version": "1.10.6", + "packageName": "@swc-node/core", + "hash": "sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==" + } + }, + "npm:@swc-node/register": { + "type": "npm", + "name": "npm:@swc-node/register", + "data": { + "version": "1.6.8", + "packageName": "@swc-node/register", + "hash": "sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==" + } + }, + "npm:@swc-node/sourcemap-support": { + "type": "npm", + "name": "npm:@swc-node/sourcemap-support", + "data": { + "version": "0.3.0", + "packageName": "@swc-node/sourcemap-support", + "hash": "sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==" + } + }, + "npm:@swc/cli": { + "type": "npm", + "name": "npm:@swc/cli", + "data": { + "version": "0.1.63", + "packageName": "@swc/cli", + "hash": "sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==" + } + }, + "npm:@swc/core": { + "type": "npm", + "name": "npm:@swc/core", + "data": { + "version": "1.3.101", + "packageName": "@swc/core", + "hash": "sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==" + } + }, + "npm:@swc/core-darwin-arm64": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==" + } + }, + "npm:@swc/core-darwin-x64": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==" + } + }, + "npm:@swc/core-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==" + } + }, + "npm:@swc/core-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==" + } + }, + "npm:@swc/core-linux-arm64-musl": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==" + } + }, + "npm:@swc/core-linux-x64-gnu": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==" + } + }, + "npm:@swc/core-linux-x64-musl": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==" + } + }, + "npm:@swc/core-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==" + } + }, + "npm:@swc/core-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==" + } + }, + "npm:@swc/core-win32-x64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc", + "data": { + "version": "1.3.101", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==" + } + }, + "npm:@swc/counter": { + "type": "npm", + "name": "npm:@swc/counter", + "data": { + "version": "0.1.2", + "packageName": "@swc/counter", + "hash": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==" + } + }, + "npm:@swc/helpers": { + "type": "npm", + "name": "npm:@swc/helpers", + "data": { + "version": "0.5.3", + "packageName": "@swc/helpers", + "hash": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==" + } + }, + "npm:@swc/types": { + "type": "npm", + "name": "npm:@swc/types", + "data": { + "version": "0.1.5", + "packageName": "@swc/types", + "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.6", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" + } + }, + "npm:@tokenizer/token": { + "type": "npm", + "name": "npm:@tokenizer/token", + "data": { + "version": "0.3.0", + "packageName": "@tokenizer/token", + "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node10", + "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.11", + "packageName": "@tsconfig/node12", + "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node14", + "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.4", + "packageName": "@tsconfig/node16", + "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "2.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "2.0.0", + "packageName": "@tufjs/models", + "hash": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==" + } + }, + "npm:brace-expansion@2.0.1": { + "type": "npm", + "name": "npm:brace-expansion@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__core", + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.8", + "packageName": "@types/babel__generator", + "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.4", + "packageName": "@types/babel__template", + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.4", + "packageName": "@types/babel__traverse", + "hash": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.5", + "packageName": "@types/body-parser", + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.13", + "packageName": "@types/bonjour", + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.3", + "packageName": "@types/cacheable-request", + "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.4", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:@types/cors": { + "type": "npm", + "name": "npm:@types/cors", + "data": { + "version": "2.8.17", + "packageName": "@types/cors", + "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "8.56.0", + "packageName": "@types/eslint", + "hash": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.7", + "packageName": "@types/eslint-scope", + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.5", + "packageName": "@types/estree", + "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.21", + "packageName": "@types/express", + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.41", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.9", + "packageName": "@types/graceful-fs", + "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.4", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.4", + "packageName": "@types/http-errors", + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.14", + "packageName": "@types/http-proxy", + "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" + } + }, + "npm:@types/inquirer": { + "type": "npm", + "name": "npm:@types/inquirer", + "data": { + "version": "9.0.7", + "packageName": "@types/inquirer", + "hash": "sha512-Q0zyBupO6NxGRZut/JdmqYKOnN95Eg5V8Csg3PGKkP+FnvsUZx1jAyK7fztIszxxMuoBA6E3KXWvdZVXIpx60g==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.6", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.3", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.4", + "packageName": "@types/istanbul-reports", + "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.11", + "packageName": "@types/jest", + "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.15", + "packageName": "@types/json-schema", + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.4", + "packageName": "@types/keyv", + "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.202", + "packageName": "@types/lodash", + "hash": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.5", + "packageName": "@types/mime", + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.16.9", + "packageName": "@types/node", + "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" + } + }, + "npm:@types/node@16.18.68": { + "type": "npm", + "name": "npm:@types/node@16.18.68", + "data": { + "version": "16.18.68", + "packageName": "@types/node", + "hash": "sha512-sG3hPIQwJLoewrN7cr0dwEy+yF5nD4D/4FxtQpFciRD/xwUzgD+G05uxZHv5mhfXo4F9Jkp13jjn0CC2q325sg==" + } + }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.10", + "packageName": "@types/node-forge", + "hash": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.4", + "packageName": "@types/normalize-package-data", + "hash": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.2", + "packageName": "@types/parse-json", + "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.10", + "packageName": "@types/qs", + "hash": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.3", + "packageName": "@types/responselike", + "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.5.6", + "packageName": "@types/semver", + "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.4", + "packageName": "@types/send", + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.4", + "packageName": "@types/serve-index", + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.5", + "packageName": "@types/serve-static", + "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.1", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" + } + }, + "npm:@types/sizzle": { + "type": "npm", + "name": "npm:@types/sizzle", + "data": { + "version": "2.3.8", + "packageName": "@types/sizzle", + "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.36", + "packageName": "@types/sockjs", + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.3", + "packageName": "@types/stack-utils", + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + } + }, + "npm:@types/through": { + "type": "npm", + "name": "npm:@types/through", + "data": { + "version": "0.0.33", + "packageName": "@types/through", + "hash": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.5", + "packageName": "@types/tough-cookie", + "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.10", + "packageName": "@types/ws", + "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.32", + "packageName": "@types/yargs", + "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.3", + "packageName": "@types/yargs-parser", + "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.10.3", + "packageName": "@types/yauzl", + "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==" + } + }, + "npm:@typescript-eslint/type-utils@6.15.0": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils@6.15.0", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==" + } + }, + "npm:@typescript-eslint/utils@6.15.0": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@6.15.0", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==" + } + }, + "npm:@typescript-eslint/scope-manager@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==" + } + }, + "npm:@typescript-eslint/types@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/types@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==" + } + }, + "npm:@typescript-eslint/typescript-estree@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==" + } + }, + "npm:@typescript-eslint/visitor-keys@6.13.1": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@6.13.1", + "data": { + "version": "6.13.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "6.15.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==" + } + }, + "npm:@verdaccio/commons-api": { + "type": "npm", + "name": "npm:@verdaccio/commons-api", + "data": { + "version": "10.2.0", + "packageName": "@verdaccio/commons-api", + "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" + } + }, + "npm:@verdaccio/config": { + "type": "npm", + "name": "npm:@verdaccio/config", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/config", + "hash": "sha512-bMQEL+ZGzoH8WIHEoC1HZon35QIWjY3KdYGyKc4eUKr6bUyQSRksmPQ40NQVgcUY0vlfkJMB+TCvgVXaf8kfBw==" + } + }, + "npm:@verdaccio/core": { + "type": "npm", + "name": "npm:@verdaccio/core", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/core", + "hash": "sha512-wbgFq7d2m/ijmusD6wPVxm6aCxvSLNcP/XagrNKahEbdcgMcDv+6Dm6ZBaKcVgtIMv++aZkc3F3mV4Scj3snSQ==" + } + }, + "npm:@verdaccio/file-locking": { + "type": "npm", + "name": "npm:@verdaccio/file-locking", + "data": { + "version": "10.3.1", + "packageName": "@verdaccio/file-locking", + "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" + } + }, + "npm:@verdaccio/file-locking@12.0.0-next.1": { + "type": "npm", + "name": "npm:@verdaccio/file-locking@12.0.0-next.1", + "data": { + "version": "12.0.0-next.1", + "packageName": "@verdaccio/file-locking", + "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" + } + }, + "npm:@verdaccio/local-storage": { + "type": "npm", + "name": "npm:@verdaccio/local-storage", + "data": { + "version": "10.3.3", + "packageName": "@verdaccio/local-storage", + "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" + } + }, + "npm:async@3.2.4": { + "type": "npm", + "name": "npm:async@3.2.4", + "data": { + "version": "3.2.4", + "packageName": "async", + "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.5", + "packageName": "async", + "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + } + }, + "npm:async@2.6.4": { + "type": "npm", + "name": "npm:async@2.6.4", + "data": { + "version": "2.6.4", + "packageName": "async", + "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:@verdaccio/logger-7": { + "type": "npm", + "name": "npm:@verdaccio/logger-7", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/logger-7", + "hash": "sha512-kx+/vY9THFHXTxsQT/McbqG4psu6CmlkjnLvcrk0Gbyki3Uaquo79K/3rPokHWnS7Ur45gxYIukIAzVfcA0mKA==" + } + }, + "npm:@verdaccio/logger-commons": { + "type": "npm", + "name": "npm:@verdaccio/logger-commons", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/logger-commons", + "hash": "sha512-l7T3u8eW84UrQQHAOjqUw12t9q2IRleCnniQ9wV/KpBQNwuE3BPPy6t9/64QW9eXOzldJ8G3w7ttPCsK+cq8uw==" + } + }, + "npm:@verdaccio/logger-prettify": { + "type": "npm", + "name": "npm:@verdaccio/logger-prettify", + "data": { + "version": "7.0.0-next.1", + "packageName": "@verdaccio/logger-prettify", + "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" + } + }, + "npm:dayjs@1.11.7": { + "type": "npm", + "name": "npm:dayjs@1.11.7", + "data": { + "version": "1.11.7", + "packageName": "dayjs", + "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.10", + "packageName": "dayjs", + "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + } + }, + "npm:@verdaccio/middleware": { + "type": "npm", + "name": "npm:@verdaccio/middleware", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/middleware", + "hash": "sha512-EjRif42rbikn5WUB6+an9IX6zoAXiIG5jKOmzdOx6vIZ3iYg0HmgEFW5do2gVchFiox1+M2WMRTS55J0xG+dCA==" + } + }, + "npm:@verdaccio/search": { + "type": "npm", + "name": "npm:@verdaccio/search", + "data": { + "version": "7.0.0-next.2", + "packageName": "@verdaccio/search", + "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" + } + }, + "npm:@verdaccio/signature": { + "type": "npm", + "name": "npm:@verdaccio/signature", + "data": { + "version": "7.0.0-next.2", + "packageName": "@verdaccio/signature", + "hash": "sha512-rxoSmdKrSJZEoSsWKjgytpqf2Bltbs6sR5Hflu8xXfPZPmHpXkGgAdb8tuSlnmjzo6hXoKfje8b9BJoP2bDwbA==" + } + }, + "npm:@verdaccio/streams": { + "type": "npm", + "name": "npm:@verdaccio/streams", + "data": { + "version": "10.2.1", + "packageName": "@verdaccio/streams", + "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" + } + }, + "npm:@verdaccio/tarball": { + "type": "npm", + "name": "npm:@verdaccio/tarball", + "data": { + "version": "12.0.0-next.4", + "packageName": "@verdaccio/tarball", + "hash": "sha512-3GuyDaoshKOYdv+zTEKiyUO/0h3xGvr+RCJBkvMkPwIXfbkWDPyk00lxSXZDCqwFePZgcDaHOqS7krz2rMdsoQ==" + } + }, + "npm:@verdaccio/ui-theme": { + "type": "npm", + "name": "npm:@verdaccio/ui-theme", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/ui-theme", + "hash": "sha512-zvkAMyBmD0txGEpocdGQ9yRCvPYZEb0lH6lh0AAOcKwXg5SaY9yW/n2Rx3k6873xebA4bEMldWB3j+Uv8Jciqw==" + } + }, + "npm:@verdaccio/url": { + "type": "npm", + "name": "npm:@verdaccio/url", + "data": { + "version": "12.0.0-next.4", + "packageName": "@verdaccio/url", + "hash": "sha512-0SszVxX6VGgbrwPWU2WzvEbTUEZP4j6Krulb7Ju6hCVrV6A1/W/CGrztnRNcdE/avSZWZvvDpQ65NBRFE7pjtQ==" + } + }, + "npm:validator@13.9.0": { + "type": "npm", + "name": "npm:validator@13.9.0", + "data": { + "version": "13.9.0", + "packageName": "validator", + "hash": "sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.11.0", + "packageName": "validator", + "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" + } + }, + "npm:@verdaccio/utils": { + "type": "npm", + "name": "npm:@verdaccio/utils", + "data": { + "version": "7.0.0-next.4", + "packageName": "@verdaccio/utils", + "hash": "sha512-hgGUkmxBl03TvXQSvgHeI9BU6JrCW/QQu7O3+9f1etvCz2EWQ81JvCv8qsY3bHCT/ggYapvr/8xcjtUtJ1/KgA==" + } + }, + "npm:@vitejs/plugin-basic-ssl": { + "type": "npm", + "name": "npm:@vitejs/plugin-basic-ssl", + "data": { + "version": "1.0.1", + "packageName": "@vitejs/plugin-basic-ssl", + "hash": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:argparse@2.0.1": { + "type": "npm", + "name": "npm:argparse@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "2.0.0", + "packageName": "abbrev", + "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.11.2", + "packageName": "acorn", + "hash": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.3.1", + "packageName": "acorn-walk", + "hash": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.2.2", + "packageName": "address", + "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" + } + }, + "npm:adjust-sourcemap-loader": { + "type": "npm", + "name": "npm:adjust-sourcemap-loader", + "data": { + "version": "4.0.0", + "packageName": "adjust-sourcemap-loader", + "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "7.1.0", + "packageName": "agent-base", + "hash": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==" + } + }, + "npm:agent-base@6.0.2": { + "type": "npm", + "name": "npm:agent-base@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:ajv-formats": { + "type": "npm", + "name": "npm:ajv-formats", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv-keywords@3.5.2": { + "type": "npm", + "name": "npm:ajv-keywords@3.5.2", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.3", + "packageName": "ansi-colors", + "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:ansi-escapes@5.0.0": { + "type": "npm", + "name": "npm:ansi-escapes@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ansi-escapes", + "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-red": { + "type": "npm", + "name": "npm:ansi-red", + "data": { + "version": "0.1.1", + "packageName": "ansi-red", + "hash": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==" + } + }, + "npm:ansi-wrap": { + "type": "npm", + "name": "npm:ansi-wrap", + "data": { + "version": "0.1.0", + "packageName": "ansi-wrap", + "hash": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==" + } + }, + "npm:ansicolors": { + "type": "npm", + "name": "npm:ansicolors", + "data": { + "version": "0.3.2", + "packageName": "ansicolors", + "hash": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:picomatch@2.3.1": { + "type": "npm", + "name": "npm:picomatch@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "3.0.1", + "packageName": "picomatch", + "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" + } + }, + "npm:apache-md5": { + "type": "npm", + "name": "npm:apache-md5", + "data": { + "version": "1.1.8", + "packageName": "apache-md5", + "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" + } + }, + "npm:arch": { + "type": "npm", + "name": "npm:arch", + "data": { + "version": "2.2.0", + "packageName": "arch", + "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:argv-formatter": { + "type": "npm", + "name": "npm:argv-formatter", + "data": { + "version": "1.0.0", + "packageName": "argv-formatter", + "hash": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "5.3.0", + "packageName": "aria-query", + "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + } + }, + "npm:array-flatten@2.1.2": { + "type": "npm", + "name": "npm:array-flatten@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.2", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" + } + }, + "npm:asn1": { + "type": "npm", + "name": "npm:asn1", + "data": { + "version": "0.2.6", + "packageName": "asn1", + "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async-each-series": { + "type": "npm", + "name": "npm:async-each-series", + "data": { + "version": "0.1.1", + "packageName": "async-each-series", + "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:atomic-sleep": { + "type": "npm", + "name": "npm:atomic-sleep", + "data": { + "version": "1.0.0", + "packageName": "atomic-sleep", + "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" + } + }, + "npm:autolinker": { + "type": "npm", + "name": "npm:autolinker", + "data": { + "version": "0.28.1", + "packageName": "autolinker", + "hash": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.16", + "packageName": "autoprefixer", + "hash": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:aws-sign2": { + "type": "npm", + "name": "npm:aws-sign2", + "data": { + "version": "0.7.0", + "packageName": "aws-sign2", + "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" + } + }, + "npm:aws4": { + "type": "npm", + "name": "npm:aws4", + "data": { + "version": "1.12.0", + "packageName": "aws4", + "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "0.21.4", + "packageName": "axios", + "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" + } + }, + "npm:axios@1.6.2": { + "type": "npm", + "name": "npm:axios@1.6.2", + "data": { + "version": "1.6.2", + "packageName": "axios", + "hash": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "4.0.0", + "packageName": "axobject-query", + "hash": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.1.3", + "packageName": "babel-loader", + "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" + } + }, + "npm:find-cache-dir@4.0.0": { + "type": "npm", + "name": "npm:find-cache-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, + "npm:find-up@5.0.0": { + "type": "npm", + "name": "npm:find-up@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==" + } + }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, + "npm:locate-path@6.0.0": { + "type": "npm", + "name": "npm:locate-path@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:p-locate@5.0.0": { + "type": "npm", + "name": "npm:p-locate@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:pkg-dir@7.0.0": { + "type": "npm", + "name": "npm:pkg-dir@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:istanbul-lib-instrument@5.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "6.0.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:babel-plugin-macros@3.1.0": { + "type": "npm", + "name": "npm:babel-plugin-macros@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.4.7", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.8.7", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.5.4", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.6.3", + "packageName": "babel-preset-jest", + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:base64id": { + "type": "npm", + "name": "npm:base64id", + "data": { + "version": "2.0.0", + "packageName": "base64id", + "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" + } + }, + "npm:basic-auth": { + "type": "npm", + "name": "npm:basic-auth", + "data": { + "version": "2.0.1", + "packageName": "basic-auth", + "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "12153499668482607410" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" + } + }, + "npm:bcryptjs": { + "type": "npm", + "name": "npm:bcryptjs", + "data": { + "version": "2.4.3", + "packageName": "bcryptjs", + "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.3", + "packageName": "before-after-hook", + "hash": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:bin-check": { + "type": "npm", + "name": "npm:bin-check", + "data": { + "version": "4.1.0", + "packageName": "bin-check", + "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" + } + }, + "npm:cross-spawn@5.1.0": { + "type": "npm", + "name": "npm:cross-spawn@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "cross-spawn", + "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:shebang-command@1.2.0": { + "type": "npm", + "name": "npm:shebang-command@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "341129833107810678" + } + }, + "npm:shebang-regex@1.0.0": { + "type": "npm", + "name": "npm:shebang-regex@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "3348982168836855660" + } + }, + "npm:bin-version": { + "type": "npm", + "name": "npm:bin-version", + "data": { + "version": "6.0.0", + "packageName": "bin-version", + "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" + } + }, + "npm:bin-version-check": { + "type": "npm", + "name": "npm:bin-version-check", + "data": { + "version": "5.1.0", + "packageName": "bin-version-check", + "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:readable-stream@3.6.2": { + "type": "npm", + "name": "npm:readable-stream@3.6.2", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readable-stream@4.4.2": { + "type": "npm", + "name": "npm:readable-stream@4.4.2", + "data": { + "version": "4.4.2", + "packageName": "readable-stream", + "hash": "41880603492280987" + } + }, + "npm:readable-stream@4.5.1": { + "type": "npm", + "name": "npm:readable-stream@4.5.1", + "data": { + "version": "4.5.1", + "packageName": "readable-stream", + "hash": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:blob-util": { + "type": "npm", + "name": "npm:blob-util", + "data": { + "version": "2.0.2", + "packageName": "blob-util", + "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.7.2", + "packageName": "bluebird", + "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.2", + "packageName": "body-parser", + "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" + } + }, + "npm:body-parser@1.20.1": { + "type": "npm", + "name": "npm:body-parser@1.20.1", + "data": { + "version": "1.20.1", + "packageName": "body-parser", + "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + }, + "npm:ms@2.1.3": { + "type": "npm", + "name": "npm:ms@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:on-finished@2.4.1": { + "type": "npm", + "name": "npm:on-finished@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" + } + }, + "npm:qs@6.11.0": { + "type": "npm", + "name": "npm:qs@6.11.0", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.10.4", + "packageName": "qs", + "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.1.1", + "packageName": "bonjour-service", + "hash": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:bottleneck": { + "type": "npm", + "name": "npm:bottleneck", + "data": { + "version": "2.19.5", + "packageName": "bottleneck", + "hash": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:browser-sync": { + "type": "npm", + "name": "npm:browser-sync", + "data": { + "version": "2.29.3", + "packageName": "browser-sync", + "hash": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==" + } + }, + "npm:browser-sync-client": { + "type": "npm", + "name": "npm:browser-sync-client", + "data": { + "version": "2.29.3", + "packageName": "browser-sync-client", + "hash": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==" + } + }, + "npm:browser-sync-ui": { + "type": "npm", + "name": "npm:browser-sync-ui", + "data": { + "version": "2.29.3", + "packageName": "browser-sync-ui", + "hash": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==" + } + }, + "npm:fs-extra@3.0.1": { + "type": "npm", + "name": "npm:fs-extra@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "fs-extra", + "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-extra@10.1.0": { + "type": "npm", + "name": "npm:fs-extra@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:jsonfile@3.0.1": { + "type": "npm", + "name": "npm:jsonfile@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "jsonfile", + "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonfile@5.0.0": { + "type": "npm", + "name": "npm:jsonfile@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "jsonfile", + "hash": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.22.2", + "packageName": "browserslist", + "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" + } + }, + "npm:bs-logger": { + "type": "npm", + "name": "npm:bs-logger", + "data": { + "version": "0.2.6", + "packageName": "bs-logger", + "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" + } + }, + "npm:bs-recipes": { + "type": "npm", + "name": "npm:bs-recipes", + "data": { + "version": "1.3.4", + "packageName": "bs-recipes", + "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:btoa": { + "type": "npm", + "name": "npm:btoa", + "data": { + "version": "1.2.1", + "packageName": "btoa", + "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:buffer@6.0.3": { + "type": "npm", + "name": "npm:buffer@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "buffer", + "hash": "9693504204722543652" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + } + }, + "npm:buffer-equal-constant-time": { + "type": "npm", + "name": "npm:buffer-equal-constant-time", + "data": { + "version": "1.0.1", + "packageName": "buffer-equal-constant-time", + "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "18.0.1", + "packageName": "cacache", + "hash": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==" + } + }, + "npm:glob@10.3.10": { + "type": "npm", + "name": "npm:glob@10.3.10", + "data": { + "version": "10.3.10", + "packageName": "glob", + "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:glob@6.0.4": { + "type": "npm", + "name": "npm:glob@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "glob", + "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.4", + "packageName": "cacheable-request", + "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.4.0", + "packageName": "cachedir", + "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.5", + "packageName": "call-bind", + "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001570", + "packageName": "caniuse-lite", + "hash": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==" + } + }, + "npm:cardinal": { + "type": "npm", + "name": "npm:cardinal", + "data": { + "version": "2.1.1", + "packageName": "cardinal", + "hash": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:check-more-types": { + "type": "npm", + "name": "npm:check-more-types", + "data": { + "version": "2.24.0", + "packageName": "check-more-types", + "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.9.0", + "packageName": "ci-info", + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + } + }, + "npm:ci-info@4.0.0": { + "type": "npm", + "name": "npm:ci-info@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "ci-info", + "hash": "8652404921969079036" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-cursor@4.0.0": { + "type": "npm", + "name": "npm:cli-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-cursor", + "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.3", + "packageName": "cli-table3", + "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:cli-truncate@3.1.0": { + "type": "npm", + "name": "npm:cli-truncate@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:clipanion": { + "type": "npm", + "name": "npm:clipanion", + "data": { + "version": "3.2.1", + "packageName": "clipanion", + "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:cliui@7.0.4": { + "type": "npm", + "name": "npm:cliui@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:kind-of@6.0.3": { + "type": "npm", + "name": "npm:kind-of@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "3.2.2", + "packageName": "kind-of", + "hash": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.3", + "packageName": "clone-response", + "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:coffee-script": { + "type": "npm", + "name": "npm:coffee-script", + "data": { + "version": "1.12.7", + "packageName": "coffee-script", + "hash": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.2", + "packageName": "collect-v8-coverage", + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@6.2.1": { + "type": "npm", + "name": "npm:commander@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.2", + "packageName": "common-tags", + "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "1.6.2", + "packageName": "concat-stream", + "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + } + }, + "npm:concat-with-sourcemaps": { + "type": "npm", + "name": "npm:concat-with-sourcemaps", + "data": { + "version": "1.1.0", + "packageName": "concat-with-sourcemaps", + "hash": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==" + } + }, + "npm:config-chain": { + "type": "npm", + "name": "npm:config-chain", + "data": { + "version": "1.1.13", + "packageName": "config-chain", + "hash": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==" + } + }, + "npm:ini@1.3.8": { + "type": "npm", + "name": "npm:ini@1.3.8", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "4.1.1", + "packageName": "ini", + "hash": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==" + } + }, + "npm:confusing-browser-globals": { + "type": "npm", + "name": "npm:confusing-browser-globals", + "data": { + "version": "1.0.11", + "packageName": "confusing-browser-globals", + "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + } + }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.6.6", + "packageName": "connect", + "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "1.6.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + } + }, + "npm:connect-history-api-fallback@2.0.0": { + "type": "npm", + "name": "npm:connect-history-api-fallback@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:connect-pause": { + "type": "npm", + "name": "npm:connect-pause", + "data": { + "version": "0.1.1", + "packageName": "connect-pause", + "hash": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "7.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==" + } + }, + "npm:conventional-changelog-conventionalcommits": { + "type": "npm", + "name": "npm:conventional-changelog-conventionalcommits", + "data": { + "version": "7.0.2", + "packageName": "conventional-changelog-conventionalcommits", + "hash": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "7.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "5.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:cookie@0.4.2": { + "type": "npm", + "name": "npm:cookie@0.4.2", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + } + }, + "npm:cookies": { + "type": "npm", + "name": "npm:cookies", + "data": { + "version": "0.8.0", + "packageName": "cookies", + "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" + } + }, + "npm:copy-anything": { + "type": "npm", + "name": "npm:copy-anything", + "data": { + "version": "2.0.6", + "packageName": "copy-anything", + "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.30.2", + "packageName": "core-js", + "hash": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.34.0", + "packageName": "core-js-compat", + "hash": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:core-util-is@1.0.2": { + "type": "npm", + "name": "npm:core-util-is@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "core-util-is", + "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + } + }, + "npm:cors": { + "type": "npm", + "name": "npm:cors", + "data": { + "version": "2.8.5", + "packageName": "cors", + "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" + } + }, + "npm:corser": { + "type": "npm", + "name": "npm:corser", + "data": { + "version": "2.0.1", + "packageName": "corser", + "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:critters": { + "type": "npm", + "name": "npm:critters", + "data": { + "version": "0.0.20", + "packageName": "critters", + "hash": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "4.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "7.1.1", + "packageName": "css-declaration-sorter", + "hash": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.8.1", + "packageName": "css-loader", + "hash": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "5.0.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:css-tree@2.2.1": { + "type": "npm", + "name": "npm:css-tree@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "css-tree", + "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "6.0.2", + "packageName": "cssnano", + "hash": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "6.0.2", + "packageName": "cssnano-preset-default", + "hash": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "4.0.1", + "packageName": "cssnano-utils", + "hash": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "5.0.5", + "packageName": "csso", + "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" + } + }, + "npm:mdn-data@2.0.28": { + "type": "npm", + "name": "npm:mdn-data@2.0.28", + "data": { + "version": "2.0.28", + "packageName": "mdn-data", + "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:cypress": { + "type": "npm", + "name": "npm:cypress", + "data": { + "version": "12.17.4", + "packageName": "cypress", + "hash": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==" + } + }, + "npm:dashdash": { + "type": "npm", + "name": "npm:dashdash", + "data": { + "version": "1.14.1", + "packageName": "dashdash", + "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:mimic-response@3.1.0": { + "type": "npm", + "name": "npm:mimic-response@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.1", + "packageName": "define-data-property", + "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.1", + "packageName": "define-properties", + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:dequal": { + "type": "npm", + "name": "npm:dequal", + "data": { + "version": "2.0.3", + "packageName": "dequal", + "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:destroy@1.0.4": { + "type": "npm", + "name": "npm:destroy@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "destroy", + "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:dev-ip": { + "type": "npm", + "name": "npm:dev-ip", + "data": { + "version": "1.0.1", + "packageName": "dev-ip", + "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" + } + }, + "npm:diacritics-map": { + "type": "npm", + "name": "npm:diacritics-map", + "data": { + "version": "0.1.0", + "packageName": "diacritics-map", + "hash": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:diff@5.1.0": { + "type": "npm", + "name": "npm:diff@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "diff", + "hash": "14595041656651737167" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.1", + "packageName": "dns-packet", + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "3.1.0", + "packageName": "domutils", + "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "16.3.1", + "packageName": "dotenv", + "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:duplexify": { + "type": "npm", + "name": "npm:duplexify", + "data": { + "version": "4.1.2", + "packageName": "duplexify", + "hash": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:easy-extender": { + "type": "npm", + "name": "npm:easy-extender", + "data": { + "version": "2.3.4", + "packageName": "easy-extender", + "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" + } + }, + "npm:eazy-logger": { + "type": "npm", + "name": "npm:eazy-logger", + "data": { + "version": "4.0.1", + "packageName": "eazy-logger", + "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" + } + }, + "npm:ecc-jsbn": { + "type": "npm", + "name": "npm:ecc-jsbn", + "data": { + "version": "0.1.2", + "packageName": "ecc-jsbn", + "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" + } + }, + "npm:ecdsa-sig-formatter": { + "type": "npm", + "name": "npm:ecdsa-sig-formatter", + "data": { + "version": "1.0.11", + "packageName": "ecdsa-sig-formatter", + "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.9", + "packageName": "ejs", + "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.615", + "packageName": "electron-to-chromium", + "hash": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emojilib": { + "type": "npm", + "name": "npm:emojilib", + "data": { + "version": "2.4.0", + "packageName": "emojilib", + "hash": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:engine.io": { + "type": "npm", + "name": "npm:engine.io", + "data": { + "version": "6.5.4", + "packageName": "engine.io", + "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" + } + }, + "npm:engine.io-client": { + "type": "npm", + "name": "npm:engine.io-client", + "data": { + "version": "6.5.3", + "packageName": "engine.io-client", + "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" + } + }, + "npm:ws@8.11.0": { + "type": "npm", + "name": "npm:ws@8.11.0", + "data": { + "version": "8.11.0", + "packageName": "ws", + "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.15.1", + "packageName": "ws", + "hash": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==" + } + }, + "npm:engine.io-parser": { + "type": "npm", + "name": "npm:engine.io-parser", + "data": { + "version": "5.2.1", + "packageName": "engine.io-parser", + "hash": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:env-ci": { + "type": "npm", + "name": "npm:env-ci", + "data": { + "version": "10.0.0", + "packageName": "env-ci", + "hash": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.11.0", + "packageName": "envinfo", + "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:errorhandler": { + "type": "npm", + "name": "npm:errorhandler", + "data": { + "version": "1.5.1", + "packageName": "errorhandler", + "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.22.3", + "packageName": "es-abstract", + "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.4.1", + "packageName": "es-module-lexer", + "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.2", + "packageName": "es-set-tostringtag", + "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.19.5", + "packageName": "esbuild", + "hash": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==" + } + }, + "npm:esbuild@0.18.20": { + "type": "npm", + "name": "npm:esbuild@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "esbuild", + "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" + } + }, + "npm:esbuild-wasm": { + "type": "npm", + "name": "npm:esbuild-wasm", + "data": { + "version": "0.19.5", + "packageName": "esbuild-wasm", + "hash": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "8.48.0", + "packageName": "eslint", + "hash": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "9.1.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==" + } + }, + "npm:eslint-plugin-cypress": { + "type": "npm", + "name": "npm:eslint-plugin-cypress", + "data": { + "version": "2.15.1", + "packageName": "eslint-plugin-cypress", + "hash": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" + } + }, + "npm:eslint-scope@5.1.1": { + "type": "npm", + "name": "npm:eslint-scope@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.3", + "packageName": "eslint-visitor-keys", + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:eventemitter-asyncresource": { + "type": "npm", + "name": "npm:eventemitter-asyncresource", + "data": { + "version": "1.0.0", + "packageName": "eventemitter-asyncresource", + "hash": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==" + } + }, + "npm:eventemitter2": { + "type": "npm", + "name": "npm:eventemitter2", + "data": { + "version": "6.4.7", + "packageName": "eventemitter2", + "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:eventemitter3@5.0.1": { + "type": "npm", + "name": "npm:eventemitter3@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "eventemitter3", + "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:executable": { + "type": "npm", + "name": "npm:executable", + "data": { + "version": "4.1.1", + "packageName": "executable", + "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expand-range": { + "type": "npm", + "name": "npm:expand-range", + "data": { + "version": "1.8.2", + "packageName": "expand-range", + "hash": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==" + } + }, + "npm:fill-range@2.2.4": { + "type": "npm", + "name": "npm:fill-range@2.2.4", + "data": { + "version": "2.2.4", + "packageName": "fill-range", + "hash": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:isobject@2.1.0": { + "type": "npm", + "name": "npm:isobject@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "isobject", + "hash": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.7.0", + "packageName": "expect", + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" + } + }, + "npm:exponential-backoff": { + "type": "npm", + "name": "npm:exponential-backoff", + "data": { + "version": "3.1.1", + "packageName": "exponential-backoff", + "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.2", + "packageName": "express", + "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" + } + }, + "npm:express-rate-limit": { + "type": "npm", + "name": "npm:express-rate-limit", + "data": { + "version": "5.5.1", + "packageName": "express-rate-limit", + "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" + } + }, + "npm:express-urlrewrite": { + "type": "npm", + "name": "npm:express-urlrewrite", + "data": { + "version": "1.4.0", + "packageName": "express-urlrewrite", + "hash": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==" + } + }, + "npm:isarray@0.0.1": { + "type": "npm", + "name": "npm:isarray@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, + "npm:isarray@2.0.5": { + "type": "npm", + "name": "npm:isarray@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:path-to-regexp@1.8.0": { + "type": "npm", + "name": "npm:path-to-regexp@1.8.0", + "data": { + "version": "1.8.0", + "packageName": "path-to-regexp", + "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + } + }, + "npm:finalhandler@1.2.0": { + "type": "npm", + "name": "npm:finalhandler@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.0", + "packageName": "finalhandler", + "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" + } + }, + "npm:raw-body@2.5.1": { + "type": "npm", + "name": "npm:raw-body@2.5.1", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.2", + "packageName": "raw-body", + "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" + } + }, + "npm:send@0.18.0": { + "type": "npm", + "name": "npm:send@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.16.2", + "packageName": "send", + "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" + } + }, + "npm:serve-static@1.15.0": { + "type": "npm", + "name": "npm:serve-static@1.15.0", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.13.2", + "packageName": "serve-static", + "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" + } + }, + "npm:statuses@2.0.1": { + "type": "npm", + "name": "npm:statuses@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:statuses@1.4.0": { + "type": "npm", + "name": "npm:statuses@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "statuses", + "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "1.3.1", + "packageName": "statuses", + "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" + } + }, + "npm:ext-list": { + "type": "npm", + "name": "npm:ext-list", + "data": { + "version": "2.2.2", + "packageName": "ext-list", + "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" + } + }, + "npm:ext-name": { + "type": "npm", + "name": "npm:ext-name", + "data": { + "version": "5.0.0", + "packageName": "ext-name", + "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:extsprintf": { + "type": "npm", + "name": "npm:extsprintf", + "data": { + "version": "1.3.0", + "packageName": "extsprintf", + "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-redact": { + "type": "npm", + "name": "npm:fast-redact", + "data": { + "version": "3.3.0", + "packageName": "fast-redact", + "hash": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==" + } + }, + "npm:fast-safe-stringify": { + "type": "npm", + "name": "npm:fast-safe-stringify", + "data": { + "version": "2.1.1", + "packageName": "fast-safe-stringify", + "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.16.0", + "packageName": "fastq", + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:file-type": { + "type": "npm", + "name": "npm:file-type", + "data": { + "version": "17.1.6", + "packageName": "file-type", + "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.4", + "packageName": "filelist", + "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" + } + }, + "npm:filename-reserved-regex": { + "type": "npm", + "name": "npm:filename-reserved-regex", + "data": { + "version": "3.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" + } + }, + "npm:filenamify": { + "type": "npm", + "name": "npm:filenamify", + "data": { + "version": "5.1.1", + "packageName": "filenamify", + "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" + } + }, + "npm:find-up-simple": { + "type": "npm", + "name": "npm:find-up-simple", + "data": { + "version": "1.0.0", + "packageName": "find-up-simple", + "hash": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==" + } + }, + "npm:find-versions": { + "type": "npm", + "name": "npm:find-versions", + "data": { + "version": "5.1.0", + "packageName": "find-versions", + "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.2.0", + "packageName": "flat-cache", + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.9", + "packageName": "flatted", + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.3", + "packageName": "follow-redirects", + "hash": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:for-in": { + "type": "npm", + "name": "npm:for-in", + "data": { + "version": "1.0.2", + "packageName": "for-in", + "hash": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "7.2.13", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.2.0", + "packageName": "schema-utils", + "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:form-data@4.0.0": { + "type": "npm", + "name": "npm:form-data@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.3.7", + "packageName": "fraction.js", + "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + } + }, + "npm:from2": { + "type": "npm", + "name": "npm:from2", + "data": { + "version": "2.3.0", + "packageName": "from2", + "hash": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" + } + }, + "npm:fs-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "11506148351665826113" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.5", + "packageName": "fs-monkey", + "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.6", + "packageName": "function.prototype.name", + "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.2", + "packageName": "get-intrinsic", + "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:getos": { + "type": "npm", + "name": "npm:getos", + "data": { + "version": "3.2.1", + "packageName": "getos", + "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" + } + }, + "npm:git-log-parser": { + "type": "npm", + "name": "npm:git-log-parser", + "data": { + "version": "1.2.0", + "packageName": "git-log-parser", + "hash": "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==" + } + }, + "npm:split2@1.0.0": { + "type": "npm", + "name": "npm:split2@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "split2", + "hash": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "4.2.0", + "packageName": "split2", + "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "3.0.1", + "packageName": "global-dirs", + "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.6", + "packageName": "got", + "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:gray-matter": { + "type": "npm", + "name": "npm:gray-matter", + "data": { + "version": "2.1.1", + "packageName": "gray-matter", + "hash": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==" + } + }, + "npm:gulp-header": { + "type": "npm", + "name": "npm:gulp-header", + "data": { + "version": "1.8.12", + "packageName": "gulp-header", + "hash": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.8", + "packageName": "handlebars", + "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.1", + "packageName": "has-property-descriptors", + "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + } + }, + "npm:hdr-histogram-js": { + "type": "npm", + "name": "npm:hdr-histogram-js", + "data": { + "version": "2.0.3", + "packageName": "hdr-histogram-js", + "hash": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==" + } + }, + "npm:hdr-histogram-percentiles-obj": { + "type": "npm", + "name": "npm:hdr-histogram-percentiles-obj", + "data": { + "version": "3.0.0", + "packageName": "hdr-histogram-percentiles-obj", + "hash": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hook-std": { + "type": "npm", + "name": "npm:hook-std", + "data": { + "version": "3.0.0", + "packageName": "hook-std", + "hash": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "7.0.1", + "packageName": "hosted-git-info", + "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.4.0", + "packageName": "html-entities", + "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "8.0.2", + "packageName": "htmlparser2", + "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.8", + "packageName": "http-parser-js", + "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:http-server": { + "type": "npm", + "name": "npm:http-server", + "data": { + "version": "14.1.1", + "packageName": "http-server", + "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.3.6", + "packageName": "http-signature", + "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" + } + }, + "npm:http-status-codes": { + "type": "npm", + "name": "npm:http-status-codes", + "data": { + "version": "2.2.0", + "packageName": "http-status-codes", + "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.3", + "packageName": "http2-wrapper", + "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "7.0.2", + "packageName": "https-proxy-agent", + "hash": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==" + } + }, + "npm:https-proxy-agent@5.0.1": { + "type": "npm", + "name": "npm:https-proxy-agent@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.0", + "packageName": "ignore", + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "6.0.4", + "packageName": "ignore-walk", + "hash": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "0.5.5", + "packageName": "image-size", + "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "3.8.2", + "packageName": "immutable", + "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" + } + }, + "npm:immutable@4.3.4": { + "type": "npm", + "name": "npm:immutable@4.3.4", + "data": { + "version": "4.3.4", + "packageName": "immutable", + "hash": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:import-from-esm": { + "type": "npm", + "name": "npm:import-from-esm", + "data": { + "version": "1.3.3", + "packageName": "import-from-esm", + "hash": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:import-meta-resolve": { + "type": "npm", + "name": "npm:import-meta-resolve", + "data": { + "version": "4.0.0", + "packageName": "import-meta-resolve", + "hash": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:index-to-position": { + "type": "npm", + "name": "npm:index-to-position", + "data": { + "version": "0.1.2", + "packageName": "index-to-position", + "hash": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, + "npm:inquirer-autocomplete-prompt": { + "type": "npm", + "name": "npm:inquirer-autocomplete-prompt", + "data": { + "version": "2.0.1", + "packageName": "inquirer-autocomplete-prompt", + "hash": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.6", + "packageName": "internal-slot", + "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" + } + }, + "npm:into-stream": { + "type": "npm", + "name": "npm:into-stream", + "data": { + "version": "7.0.0", + "packageName": "into-stream", + "hash": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "2.0.0", + "packageName": "ip", + "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js@2.1.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "ipaddr.js", + "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.13.1", + "packageName": "is-core-module", + "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + } + }, + "npm:is-extendable@1.0.1": { + "type": "npm", + "name": "npm:is-extendable@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-extendable", + "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-fullwidth-code-point@4.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "2.1.0", + "packageName": "is-number", + "hash": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==" + } + }, + "npm:is-number@4.0.0": { + "type": "npm", + "name": "npm:is-number@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-number", + "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + } + }, + "npm:is-number@7.0.0": { + "type": "npm", + "name": "npm:is-number@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-number-like": { + "type": "npm", + "name": "npm:is-number-like", + "data": { + "version": "1.0.8", + "packageName": "is-number-like", + "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "2.2.2", + "packageName": "is-promise", + "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "2.0.0", + "packageName": "is-text-path", + "hash": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.12", + "packageName": "is-typed-array", + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "3.14.1", + "packageName": "is-what", + "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:is-wsl@1.1.0": { + "type": "npm", + "name": "npm:is-wsl@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + } + }, + "npm:issue-parser": { + "type": "npm", + "name": "npm:issue-parser", + "data": { + "version": "6.0.0", + "packageName": "issue-parser", + "hash": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.2", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.1", + "packageName": "istanbul-lib-report", + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.6", + "packageName": "istanbul-reports", + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.3.6", + "packageName": "jackspeak", + "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.7", + "packageName": "jake", + "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" + } + }, + "npm:java-properties": { + "type": "npm", + "name": "npm:java-properties", + "data": { + "version": "1.0.2", + "packageName": "java-properties", + "hash": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.7.0", + "packageName": "jest", + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.7.0", + "packageName": "jest-changed-files", + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.7.0", + "packageName": "jest-circus", + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:dedent@1.5.1": { + "type": "npm", + "name": "npm:dedent@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.7.0", + "packageName": "jest-cli", + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.7.0", + "packageName": "jest-diff", + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.7.0", + "packageName": "jest-docblock", + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.7.0", + "packageName": "jest-each", + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.6.3", + "packageName": "jest-get-type", + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.7.0", + "packageName": "jest-haste-map", + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.7.0", + "packageName": "jest-leak-detector", + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.7.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.7.0", + "packageName": "jest-message-util", + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.7.0", + "packageName": "jest-mock", + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:jest-preset-angular": { + "type": "npm", + "name": "npm:jest-preset-angular", + "data": { + "version": "13.1.4", + "packageName": "jest-preset-angular", + "hash": "sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.6.3", + "packageName": "jest-regex-util", + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:resolve.exports@2.0.2": { + "type": "npm", + "name": "npm:resolve.exports@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.7.0", + "packageName": "jest-runner", + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.7.0", + "packageName": "jest-runtime", + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.7.0", + "packageName": "jest-util", + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.7.0", + "packageName": "jest-validate", + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.7.0", + "packageName": "jest-watcher", + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "1.21.0", + "packageName": "jiti", + "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors@3.0.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "json-parse-even-better-errors", + "hash": "12902821898341430299" + } + }, + "npm:json-parse-helpfulerror": { + "type": "npm", + "name": "npm:json-parse-helpfulerror", + "data": { + "version": "1.0.3", + "packageName": "json-parse-helpfulerror", + "hash": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:json-server": { + "type": "npm", + "name": "npm:json-server", + "data": { + "version": "0.17.4", + "packageName": "json-server", + "hash": "sha512-bGBb0WtFuAKbgI7JV3A864irWnMZSvBYRJbohaOuatHwKSRFUfqtQlrYMrB6WbalXy/cJabyjlb7JkHli6dYjQ==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonc-eslint-parser": { + "type": "npm", + "name": "npm:jsonc-eslint-parser", + "data": { + "version": "2.4.0", + "packageName": "jsonc-eslint-parser", + "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:jsonwebtoken": { + "type": "npm", + "name": "npm:jsonwebtoken", + "data": { + "version": "9.0.2", + "packageName": "jsonwebtoken", + "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "2.0.2", + "packageName": "jsprim", + "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" + } + }, + "npm:jwa": { + "type": "npm", + "name": "npm:jwa", + "data": { + "version": "1.4.1", + "packageName": "jwa", + "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" + } + }, + "npm:jws": { + "type": "npm", + "name": "npm:jws", + "data": { + "version": "3.2.2", + "packageName": "jws", + "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" + } + }, + "npm:karma-source-map-support": { + "type": "npm", + "name": "npm:karma-source-map-support", + "data": { + "version": "1.4.0", + "packageName": "karma-source-map-support", + "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" + } + }, + "npm:keygrip": { + "type": "npm", + "name": "npm:keygrip", + "data": { + "version": "1.1.0", + "packageName": "keygrip", + "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:kleur@4.1.5": { + "type": "npm", + "name": "npm:kleur@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.6.1", + "packageName": "launch-editor", + "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" + } + }, + "npm:lazy-ass": { + "type": "npm", + "name": "npm:lazy-ass", + "data": { + "version": "1.6.0", + "packageName": "lazy-ass", + "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" + } + }, + "npm:lazy-cache": { + "type": "npm", + "name": "npm:lazy-cache", + "data": { + "version": "2.0.2", + "packageName": "lazy-cache", + "hash": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==" + } + }, + "npm:less-loader": { + "type": "npm", + "name": "npm:less-loader", + "data": { + "version": "11.1.0", + "packageName": "less-loader", + "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "4.0.2", + "packageName": "license-webpack-plugin", + "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "3.0.0", + "packageName": "lilconfig", + "hash": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==" + } + }, + "npm:lilconfig@2.1.0": { + "type": "npm", + "name": "npm:lilconfig@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:limiter": { + "type": "npm", + "name": "npm:limiter", + "data": { + "version": "1.1.5", + "packageName": "limiter", + "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.4", + "packageName": "lines-and-columns", + "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "13.3.0", + "packageName": "lint-staged", + "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" + } + }, + "npm:listr2@6.6.1": { + "type": "npm", + "name": "npm:listr2@6.6.1", + "data": { + "version": "6.6.1", + "packageName": "listr2", + "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:log-update@5.0.1": { + "type": "npm", + "name": "npm:log-update@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "log-update", + "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:restore-cursor@4.0.0": { + "type": "npm", + "name": "npm:restore-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "restore-cursor", + "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:slice-ansi@5.0.0": { + "type": "npm", + "name": "npm:slice-ansi@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:slice-ansi@4.0.0": { + "type": "npm", + "name": "npm:slice-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:list-item": { + "type": "npm", + "name": "npm:list-item", + "data": { + "version": "1.1.1", + "packageName": "list-item", + "hash": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==" + } + }, + "npm:strip-bom@3.0.0": { + "type": "npm", + "name": "npm:strip-bom@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:localtunnel": { + "type": "npm", + "name": "npm:localtunnel", + "data": { + "version": "2.0.2", + "packageName": "localtunnel", + "hash": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==" + } + }, + "npm:yargs@17.1.1": { + "type": "npm", + "name": "npm:yargs@17.1.1", + "data": { + "version": "17.1.1", + "packageName": "yargs", + "hash": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==" + } + }, + "npm:yargs@16.2.0": { + "type": "npm", + "name": "npm:yargs@16.2.0", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yargs-parser@20.2.9": { + "type": "npm", + "name": "npm:yargs-parser@20.2.9", + "data": { + "version": "20.2.9", + "packageName": "yargs-parser", + "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:lockfile": { + "type": "npm", + "name": "npm:lockfile", + "data": { + "version": "1.0.4", + "packageName": "lockfile", + "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:lodash-id": { + "type": "npm", + "name": "npm:lodash-id", + "data": { + "version": "0.14.1", + "packageName": "lodash-id", + "hash": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==" + } + }, + "npm:lodash._reinterpolate": { + "type": "npm", + "name": "npm:lodash._reinterpolate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reinterpolate", + "hash": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + } + }, + "npm:lodash.capitalize": { + "type": "npm", + "name": "npm:lodash.capitalize", + "data": { + "version": "4.2.1", + "packageName": "lodash.capitalize", + "hash": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + } + }, + "npm:lodash.escaperegexp": { + "type": "npm", + "name": "npm:lodash.escaperegexp", + "data": { + "version": "4.1.2", + "packageName": "lodash.escaperegexp", + "hash": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" + } + }, + "npm:lodash.includes": { + "type": "npm", + "name": "npm:lodash.includes", + "data": { + "version": "4.3.0", + "packageName": "lodash.includes", + "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" + } + }, + "npm:lodash.isboolean": { + "type": "npm", + "name": "npm:lodash.isboolean", + "data": { + "version": "3.0.3", + "packageName": "lodash.isboolean", + "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + } + }, + "npm:lodash.isfinite": { + "type": "npm", + "name": "npm:lodash.isfinite", + "data": { + "version": "3.3.2", + "packageName": "lodash.isfinite", + "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" + } + }, + "npm:lodash.isinteger": { + "type": "npm", + "name": "npm:lodash.isinteger", + "data": { + "version": "4.0.4", + "packageName": "lodash.isinteger", + "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" + } + }, + "npm:lodash.isnumber": { + "type": "npm", + "name": "npm:lodash.isnumber", + "data": { + "version": "3.0.3", + "packageName": "lodash.isnumber", + "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + } + }, + "npm:lodash.isplainobject": { + "type": "npm", + "name": "npm:lodash.isplainobject", + "data": { + "version": "4.0.6", + "packageName": "lodash.isplainobject", + "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + } + }, + "npm:lodash.isstring": { + "type": "npm", + "name": "npm:lodash.isstring", + "data": { + "version": "4.0.1", + "packageName": "lodash.isstring", + "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.once": { + "type": "npm", + "name": "npm:lodash.once", + "data": { + "version": "4.1.1", + "packageName": "lodash.once", + "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" + } + }, + "npm:lodash.template": { + "type": "npm", + "name": "npm:lodash.template", + "data": { + "version": "4.5.0", + "packageName": "lodash.template", + "hash": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" + } + }, + "npm:lodash.templatesettings": { + "type": "npm", + "name": "npm:lodash.templatesettings", + "data": { + "version": "4.2.0", + "packageName": "lodash.templatesettings", + "hash": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash.uniqby": { + "type": "npm", + "name": "npm:lodash.uniqby", + "data": { + "version": "4.7.0", + "packageName": "lodash.uniqby", + "hash": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:lowdb": { + "type": "npm", + "name": "npm:lowdb", + "data": { + "version": "1.0.0", + "packageName": "lowdb", + "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "13.0.0", + "packageName": "make-fetch-happen", + "hash": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:markdown-link": { + "type": "npm", + "name": "npm:markdown-link", + "data": { + "version": "0.1.1", + "packageName": "markdown-link", + "hash": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==" + } + }, + "npm:markdown-toc": { + "type": "npm", + "name": "npm:markdown-toc", + "data": { + "version": "1.2.0", + "packageName": "markdown-toc", + "hash": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "9.1.6", + "packageName": "marked", + "hash": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==" + } + }, + "npm:marked-terminal": { + "type": "npm", + "name": "npm:marked-terminal", + "data": { + "version": "6.2.0", + "packageName": "marked-terminal", + "hash": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==" + } + }, + "npm:math-random": { + "type": "npm", + "name": "npm:math-random", + "data": { + "version": "1.0.4", + "packageName": "math-random", + "hash": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.5.3", + "packageName": "memfs", + "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" + } + }, + "npm:memorystream": { + "type": "npm", + "name": "npm:memorystream", + "data": { + "version": "0.3.1", + "packageName": "memorystream", + "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "12.1.1", + "packageName": "meow", + "hash": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:method-override": { + "type": "npm", + "name": "npm:method-override", + "data": { + "version": "3.0.0", + "packageName": "method-override", + "hash": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "7.0.4", + "packageName": "minipass", + "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" + } + }, + "npm:minipass@3.3.6": { + "type": "npm", + "name": "npm:minipass@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "967233070033727926" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "2.0.1", + "packageName": "minipass-collect", + "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.4", + "packageName": "minipass-fetch", + "hash": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "1.2.0", + "packageName": "mitt", + "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" + } + }, + "npm:mixin-deep": { + "type": "npm", + "name": "npm:mixin-deep", + "data": { + "version": "1.3.2", + "packageName": "mixin-deep", + "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + } + }, + "npm:morgan": { + "type": "npm", + "name": "npm:morgan", + "data": { + "version": "1.10.0", + "packageName": "morgan", + "hash": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "1.0.1", + "packageName": "mrmime", + "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, + "npm:mv": { + "type": "npm", + "name": "npm:mv", + "data": { + "version": "2.1.1", + "packageName": "mv", + "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" + } + }, + "npm:rimraf@2.4.5": { + "type": "npm", + "name": "npm:rimraf@2.4.5", + "data": { + "version": "2.4.5", + "packageName": "rimraf", + "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@2.6.3": { + "type": "npm", + "name": "npm:rimraf@2.6.3", + "data": { + "version": "2.6.3", + "packageName": "rimraf", + "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" + } + }, + "npm:nanoclone": { + "type": "npm", + "name": "npm:nanoclone", + "data": { + "version": "0.2.1", + "packageName": "nanoclone", + "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.7", + "packageName": "nanoid", + "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" + } + }, + "npm:needle": { + "type": "npm", + "name": "npm:needle", + "data": { + "version": "3.3.1", + "packageName": "needle", + "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:nerf-dart": { + "type": "npm", + "name": "npm:nerf-dart", + "data": { + "version": "1.0.0", + "packageName": "nerf-dart", + "hash": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==" + } + }, + "npm:nice-napi": { + "type": "npm", + "name": "npm:nice-napi", + "data": { + "version": "1.0.2", + "packageName": "nice-napi", + "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "2.1.3", + "packageName": "node-emoji", + "hash": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "10.0.1", + "packageName": "node-gyp", + "hash": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.7.1", + "packageName": "node-gyp-build", + "hash": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.14", + "packageName": "node-releases", + "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "7.2.0", + "packageName": "nopt", + "hash": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "6.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==" + } + }, + "npm:normalize-package-data@2.5.0": { + "type": "npm", + "name": "npm:normalize-package-data@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + } + }, + "npm:npm": { + "type": "npm", + "name": "npm:npm", + "data": { + "version": "10.2.5", + "packageName": "npm", + "hash": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "6.3.0", + "packageName": "npm-install-checks", + "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "11.0.1", + "packageName": "npm-package-arg", + "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "8.0.1", + "packageName": "npm-packlist", + "hash": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "9.0.0", + "packageName": "npm-pick-manifest", + "hash": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "16.1.0", + "packageName": "npm-registry-fetch", + "hash": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==" + } + }, + "npm:npm-run-all": { + "type": "npm", + "name": "npm:npm-run-all", + "data": { + "version": "4.1.5", + "packageName": "npm-run-all", + "hash": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==" + } + }, + "npm:pidtree@0.3.1": { + "type": "npm", + "name": "npm:pidtree@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "pidtree", + "hash": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:@isaacs/string-locale-compare@1.1.0": { + "type": "npm", + "name": "npm:@isaacs/string-locale-compare@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "@isaacs/string-locale-compare", + "hash": "13187644880041451271" + } + }, + "npm:@npmcli/arborist@7.2.2": { + "type": "npm", + "name": "npm:@npmcli/arborist@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "@npmcli/arborist", + "hash": "7182259164219824660" + } + }, + "npm:@npmcli/config@8.0.3": { + "type": "npm", + "name": "npm:@npmcli/config@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "@npmcli/config", + "hash": "8820709041531503664" + } + }, + "npm:@npmcli/disparity-colors@3.0.0": { + "type": "npm", + "name": "npm:@npmcli/disparity-colors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/disparity-colors", + "hash": "14187036782924450815" + } + }, + "npm:@npmcli/map-workspaces@3.0.4": { + "type": "npm", + "name": "npm:@npmcli/map-workspaces@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "@npmcli/map-workspaces", + "hash": "13154714750762064630" + } + }, + "npm:@npmcli/metavuln-calculator@7.0.0": { + "type": "npm", + "name": "npm:@npmcli/metavuln-calculator@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "@npmcli/metavuln-calculator", + "hash": "2521549270537825900" + } + }, + "npm:@npmcli/name-from-folder@2.0.0": { + "type": "npm", + "name": "npm:@npmcli/name-from-folder@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@npmcli/name-from-folder", + "hash": "14253416717500769425" + } + }, + "npm:@npmcli/package-json@5.0.0": { + "type": "npm", + "name": "npm:@npmcli/package-json@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@npmcli/package-json", + "hash": "15072336541895224028" + } + }, + "npm:@npmcli/query@3.0.1": { + "type": "npm", + "name": "npm:@npmcli/query@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@npmcli/query", + "hash": "2838677265610359007" + } + }, + "npm:aproba@2.0.0": { + "type": "npm", + "name": "npm:aproba@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "aproba", + "hash": "17279615999774402081" + } + }, + "npm:archy@1.0.0": { + "type": "npm", + "name": "npm:archy@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "7927190020983769851" + } + }, + "npm:are-we-there-yet@4.0.1": { + "type": "npm", + "name": "npm:are-we-there-yet@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "are-we-there-yet", + "hash": "2067525616894023226" + } + }, + "npm:bin-links@4.0.3": { + "type": "npm", + "name": "npm:bin-links@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "bin-links", + "hash": "6676388443930273422" + } + }, + "npm:cidr-regex@4.0.3": { + "type": "npm", + "name": "npm:cidr-regex@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "cidr-regex", + "hash": "6423967580007982965" + } + }, + "npm:cli-columns@4.0.0": { + "type": "npm", + "name": "npm:cli-columns@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-columns", + "hash": "11864858422112434879" + } + }, + "npm:cmd-shim@6.0.2": { + "type": "npm", + "name": "npm:cmd-shim@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "cmd-shim", + "hash": "11797498964257484434" + } + }, + "npm:color-support@1.1.3": { + "type": "npm", + "name": "npm:color-support@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "3393818179792164157" + } + }, + "npm:common-ancestor-path@1.0.1": { + "type": "npm", + "name": "npm:common-ancestor-path@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "common-ancestor-path", + "hash": "6661427358504839173" + } + }, + "npm:console-control-strings@1.1.0": { + "type": "npm", + "name": "npm:console-control-strings@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "15599562434471903839" + } + }, + "npm:delegates@1.0.0": { + "type": "npm", + "name": "npm:delegates@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "8733352999539432694" + } + }, + "npm:fastest-levenshtein@1.0.16": { + "type": "npm", + "name": "npm:fastest-levenshtein@1.0.16", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "8701148827062880145" + } + }, + "npm:gauge@5.0.1": { + "type": "npm", + "name": "npm:gauge@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "gauge", + "hash": "11205983861061131040" + } + }, + "npm:has-unicode@2.0.1": { + "type": "npm", + "name": "npm:has-unicode@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "13943981828416008621" + } + }, + "npm:init-package-json@6.0.0": { + "type": "npm", + "name": "npm:init-package-json@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "init-package-json", + "hash": "12382910830993440062" + } + }, + "npm:ip-regex@5.0.0": { + "type": "npm", + "name": "npm:ip-regex@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ip-regex", + "hash": "6181509096878655535" + } + }, + "npm:is-cidr@5.0.3": { + "type": "npm", + "name": "npm:is-cidr@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "is-cidr", + "hash": "9300924457576055299" + } + }, + "npm:json-stringify-nice@1.1.4": { + "type": "npm", + "name": "npm:json-stringify-nice@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "json-stringify-nice", + "hash": "1591436175625616703" + } + }, + "npm:just-diff@6.0.2": { + "type": "npm", + "name": "npm:just-diff@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "just-diff", + "hash": "8534278321911344784" + } + }, + "npm:just-diff-apply@5.5.0": { + "type": "npm", + "name": "npm:just-diff-apply@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "just-diff-apply", + "hash": "12715064950501085530" + } + }, + "npm:libnpmaccess@8.0.2": { + "type": "npm", + "name": "npm:libnpmaccess@8.0.2", + "data": { + "version": "8.0.2", + "packageName": "libnpmaccess", + "hash": "16421526142808800212" + } + }, + "npm:libnpmdiff@6.0.4": { + "type": "npm", + "name": "npm:libnpmdiff@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "libnpmdiff", + "hash": "3820498454041815106" + } + }, + "npm:libnpmexec@7.0.5": { + "type": "npm", + "name": "npm:libnpmexec@7.0.5", + "data": { + "version": "7.0.5", + "packageName": "libnpmexec", + "hash": "17794617723037587231" + } + }, + "npm:libnpmfund@5.0.2": { + "type": "npm", + "name": "npm:libnpmfund@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "libnpmfund", + "hash": "12305598745182060946" + } + }, + "npm:libnpmhook@10.0.1": { + "type": "npm", + "name": "npm:libnpmhook@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "libnpmhook", + "hash": "8875117050333550796" + } + }, + "npm:libnpmorg@6.0.2": { + "type": "npm", + "name": "npm:libnpmorg@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "libnpmorg", + "hash": "10290805547791020319" + } + }, + "npm:libnpmpack@6.0.4": { + "type": "npm", + "name": "npm:libnpmpack@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "libnpmpack", + "hash": "5406464303373104244" + } + }, + "npm:libnpmpublish@9.0.3": { + "type": "npm", + "name": "npm:libnpmpublish@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "libnpmpublish", + "hash": "8046954149526535727" + } + }, + "npm:libnpmsearch@7.0.1": { + "type": "npm", + "name": "npm:libnpmsearch@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "libnpmsearch", + "hash": "15325769825788437107" + } + }, + "npm:libnpmteam@6.0.1": { + "type": "npm", + "name": "npm:libnpmteam@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "libnpmteam", + "hash": "1683769112741320527" + } + }, + "npm:libnpmversion@5.0.2": { + "type": "npm", + "name": "npm:libnpmversion@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "libnpmversion", + "hash": "17375154425837329637" + } + }, + "npm:npm-audit-report@5.0.0": { + "type": "npm", + "name": "npm:npm-audit-report@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "npm-audit-report", + "hash": "6354832541033058707" + } + }, + "npm:npm-profile@9.0.0": { + "type": "npm", + "name": "npm:npm-profile@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "npm-profile", + "hash": "11172665038688662263" + } + }, + "npm:npm-user-validate@2.0.0": { + "type": "npm", + "name": "npm:npm-user-validate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "npm-user-validate", + "hash": "7397416590274487050" + } + }, + "npm:npmlog@7.0.1": { + "type": "npm", + "name": "npm:npmlog@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "npmlog", + "hash": "17299148607020464567" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "17854661287334559550" + } + }, + "npm:p-map@5.5.0": { + "type": "npm", + "name": "npm:p-map@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "p-map", + "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" + } + }, + "npm:pacote@17.0.5": { + "type": "npm", + "name": "npm:pacote@17.0.5", + "data": { + "version": "17.0.5", + "packageName": "pacote", + "hash": "18157225445049205745" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "17.0.4", + "packageName": "pacote", + "hash": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==" + } + }, + "npm:parse-conflict-json@3.0.1": { + "type": "npm", + "name": "npm:parse-conflict-json@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "parse-conflict-json", + "hash": "4836433519110231199" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "12011382365270888598" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "18317171813795956011" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "15686043515984890271" + } + }, + "npm:process": { + "type": "npm", + "name": "npm:process", + "data": { + "version": "0.11.10", + "packageName": "process", + "hash": "5899774364612678558" + } + }, + "npm:promise-all-reject-late@1.0.1": { + "type": "npm", + "name": "npm:promise-all-reject-late@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "promise-all-reject-late", + "hash": "8115079043743132112" + } + }, + "npm:promise-call-limit@1.0.2": { + "type": "npm", + "name": "npm:promise-call-limit@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "promise-call-limit", + "hash": "15188836213578786777" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "17505959410500941643" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "6430051236100879397" + } + }, + "npm:promzard@1.0.0": { + "type": "npm", + "name": "npm:promzard@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "1630102348184705762" + } + }, + "npm:qrcode-terminal@0.12.0": { + "type": "npm", + "name": "npm:qrcode-terminal@0.12.0", + "data": { + "version": "0.12.0", + "packageName": "qrcode-terminal", + "hash": "8604977206135799318" + } + }, + "npm:read@2.1.0": { + "type": "npm", + "name": "npm:read@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "15091997822902067721" + } + }, + "npm:read-cmd-shim@4.0.0": { + "type": "npm", + "name": "npm:read-cmd-shim@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "8789385965959140586" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "7.0.0", + "packageName": "read-package-json", + "hash": "2832168133989722474" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "15039476735012127087" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "577959566566698873" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "16796670911009069817" + } + }, + "npm:set-blocking@2.0.0": { + "type": "npm", + "name": "npm:set-blocking@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "7925479020392693302" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "2.1.0", + "packageName": "sigstore", + "hash": "1779417821879983691" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "9325347317011058594" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.7.1", + "packageName": "socks", + "hash": "10075606660716242987" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "8.0.2", + "packageName": "socks-proxy-agent", + "hash": "16729279058560436716" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "5441723641692029835" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.3.0", + "packageName": "spdx-exceptions", + "hash": "7642298428353548034" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "1415946028849809017" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.16", + "packageName": "spdx-license-ids", + "hash": "14586284776616244379" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.5", + "packageName": "ssri", + "hash": "3448831591758618758" + } + }, + "npm:string_decoder@1.3.0": { + "type": "npm", + "name": "npm:string_decoder@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "7047277384104003716" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "16568546503867287883" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "17289454424302757271" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.2.0", + "packageName": "tar", + "hash": "6383215585396908452" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "18257468142112457810" + } + }, + "npm:tiny-relative-date@1.3.0": { + "type": "npm", + "name": "npm:tiny-relative-date@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "tiny-relative-date", + "hash": "13109578067881593908" + } + }, + "npm:treeverse@3.0.0": { + "type": "npm", + "name": "npm:treeverse@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "treeverse", + "hash": "6817532506522309275" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "2.1.0", + "packageName": "tuf-js", + "hash": "3979877721881428053" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "7886949599248485097" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "15025672285505434477" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "17916194938027055625" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "14893158163252173577" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "2171344116929511877" + } + }, + "npm:walk-up-path@3.0.1": { + "type": "npm", + "name": "npm:walk-up-path@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "walk-up-path", + "hash": "10198965256615950216" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "10410747907664628096" + } + }, + "npm:wide-align@1.1.5": { + "type": "npm", + "name": "npm:wide-align@1.1.5", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "9514910874233485267" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "13425223611772983678" + } + }, + "npm:write-file-atomic@5.0.1": { + "type": "npm", + "name": "npm:write-file-atomic@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "9705229754480736912" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.7", + "packageName": "nwsapi", + "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "17.2.6", + "packageName": "nx", + "hash": "sha512-lBHp0e0AMBwYwpT44a8b0j29szspmYUhY1okqNctz/3ifuonNFG9WGfbzRO4YKOrVkfNsuaomHVAE6gtqo55ng==" + } + }, + "npm:nx-release": { + "type": "npm", + "name": "npm:nx-release", + "data": { + "version": "3.1.6", + "packageName": "nx-release", + "hash": "sha512-TmQCB7CZiacIKBQZOaK2o9Q0Ee31LM7uX+6C9z32M/z+xBTK/shmizBOYr1+1m5F2ycNtGQVVfFBxyfZI1k4iQ==" + } + }, + "npm:proxy-from-env@1.1.0": { + "type": "npm", + "name": "npm:proxy-from-env@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.0.0", + "packageName": "proxy-from-env", + "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.13.1", + "packageName": "object-inspect", + "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.5", + "packageName": "object.assign", + "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" + } + }, + "npm:object.pick": { + "type": "npm", + "name": "npm:object.pick", + "data": { + "version": "1.3.0", + "packageName": "object.pick", + "hash": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:on-exit-leak-free": { + "type": "npm", + "name": "npm:on-exit-leak-free", + "data": { + "version": "0.2.0", + "packageName": "on-exit-leak-free", + "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:openurl": { + "type": "npm", + "name": "npm:openurl", + "data": { + "version": "1.1.1", + "packageName": "openurl", + "hash": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" + } + }, + "npm:opn": { + "type": "npm", + "name": "npm:opn", + "data": { + "version": "5.3.0", + "packageName": "opn", + "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:os-filter-obj": { + "type": "npm", + "name": "npm:os-filter-obj", + "data": { + "version": "2.0.0", + "packageName": "os-filter-obj", + "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:ospath": { + "type": "npm", + "name": "npm:ospath", + "data": { + "version": "1.2.2", + "packageName": "ospath", + "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.1.1", + "packageName": "p-cancelable", + "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + } + }, + "npm:p-each-series": { + "type": "npm", + "name": "npm:p-each-series", + "data": { + "version": "3.0.0", + "packageName": "p-each-series", + "hash": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "3.0.0", + "packageName": "p-filter", + "hash": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "npm:p-is-promise": { + "type": "npm", + "name": "npm:p-is-promise", + "data": { + "version": "3.0.0", + "packageName": "p-is-promise", + "hash": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-reduce@3.0.0": { + "type": "npm", + "name": "npm:p-reduce@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-reduce", + "hash": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" + } + }, + "npm:pako": { + "type": "npm", + "name": "npm:pako", + "data": { + "version": "1.0.11", + "packageName": "pako", + "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:parse5-html-rewriting-stream": { + "type": "npm", + "name": "npm:parse5-html-rewriting-stream", + "data": { + "version": "7.0.0", + "packageName": "parse5-html-rewriting-stream", + "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" + } + }, + "npm:parse5-sax-parser": { + "type": "npm", + "name": "npm:parse5-sax-parser", + "data": { + "version": "7.0.0", + "packageName": "parse5-sax-parser", + "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:peek-readable": { + "type": "npm", + "name": "npm:peek-readable", + "data": { + "version": "5.0.0", + "packageName": "peek-readable", + "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + } + }, + "npm:performance-now": { + "type": "npm", + "name": "npm:performance-now", + "data": { + "version": "2.1.0", + "packageName": "performance-now", + "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:pino": { + "type": "npm", + "name": "npm:pino", + "data": { + "version": "7.11.0", + "packageName": "pino", + "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" + } + }, + "npm:pino-abstract-transport": { + "type": "npm", + "name": "npm:pino-abstract-transport", + "data": { + "version": "1.0.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" + } + }, + "npm:pino-abstract-transport@0.5.0": { + "type": "npm", + "name": "npm:pino-abstract-transport@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" + } + }, + "npm:pino-std-serializers": { + "type": "npm", + "name": "npm:pino-std-serializers", + "data": { + "version": "4.0.0", + "packageName": "pino-std-serializers", + "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" + } + }, + "npm:sonic-boom@2.8.0": { + "type": "npm", + "name": "npm:sonic-boom@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "sonic-boom", + "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" + } + }, + "npm:sonic-boom": { + "type": "npm", + "name": "npm:sonic-boom", + "data": { + "version": "3.3.0", + "packageName": "sonic-boom", + "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:piscina": { + "type": "npm", + "name": "npm:piscina", + "data": { + "version": "4.1.0", + "packageName": "piscina", + "hash": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==" + } + }, + "npm:pkg-conf": { + "type": "npm", + "name": "npm:pkg-conf", + "data": { + "version": "2.1.0", + "packageName": "pkg-conf", + "hash": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==" + } + }, + "npm:pkginfo": { + "type": "npm", + "name": "npm:pkginfo", + "data": { + "version": "0.4.1", + "packageName": "pkginfo", + "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" + } + }, + "npm:please-upgrade-node": { + "type": "npm", + "name": "npm:please-upgrade-node", + "data": { + "version": "3.2.0", + "packageName": "please-upgrade-node", + "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "8.0.0", + "packageName": "pluralize", + "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.32", + "packageName": "portfinder", + "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" + } + }, + "npm:portscanner": { + "type": "npm", + "name": "npm:portscanner", + "data": { + "version": "2.2.0", + "packageName": "portscanner", + "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.31", + "packageName": "postcss", + "hash": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "9.0.1", + "packageName": "postcss-calc", + "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "6.0.1", + "packageName": "postcss-colormin", + "hash": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-convert-values", + "hash": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-comments", + "hash": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "6.0.1", + "packageName": "postcss-discard-overridden", + "hash": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==" + } + }, + "npm:postcss-import": { + "type": "npm", + "name": "npm:postcss-import", + "data": { + "version": "14.1.0", + "packageName": "postcss-import", + "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "6.0.1", + "packageName": "postcss-merge-longhand", + "hash": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "6.0.2", + "packageName": "postcss-merge-rules", + "hash": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-font-values", + "hash": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-params", + "hash": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "6.0.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.3", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-charset", + "hash": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-string", + "hash": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-url", + "hash": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "6.0.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "6.0.1", + "packageName": "postcss-ordered-values", + "hash": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "6.0.1", + "packageName": "postcss-reduce-initial", + "hash": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "6.0.1", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "6.0.1", + "packageName": "postcss-svgo", + "hash": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "6.0.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.7.0", + "packageName": "pretty-format", + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:process-warning": { + "type": "npm", + "name": "npm:process-warning", + "data": { + "version": "1.0.0", + "packageName": "process-warning", + "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:property-expr": { + "type": "npm", + "name": "npm:property-expr", + "data": { + "version": "2.0.6", + "packageName": "property-expr", + "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" + } + }, + "npm:proto-list": { + "type": "npm", + "name": "npm:proto-list", + "data": { + "version": "1.2.4", + "packageName": "proto-list", + "hash": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + } + }, + "npm:pseudomap": { + "type": "npm", + "name": "npm:pseudomap", + "data": { + "version": "1.0.2", + "packageName": "pseudomap", + "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.9.0", + "packageName": "psl", + "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.1", + "packageName": "punycode", + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.4", + "packageName": "pure-rand", + "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:quick-format-unescaped": { + "type": "npm", + "name": "npm:quick-format-unescaped", + "data": { + "version": "4.0.4", + "packageName": "quick-format-unescaped", + "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:randomatic": { + "type": "npm", + "name": "npm:randomatic", + "data": { + "version": "3.1.1", + "packageName": "randomatic", + "hash": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:read-cache": { + "type": "npm", + "name": "npm:read-cache", + "data": { + "version": "1.0.0", + "packageName": "read-cache", + "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "11.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==" + } + }, + "npm:readable-web-to-node-stream": { + "type": "npm", + "name": "npm:readable-web-to-node-stream", + "data": { + "version": "3.0.2", + "packageName": "readable-web-to-node-stream", + "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:real-require": { + "type": "npm", + "name": "npm:real-require", + "data": { + "version": "0.1.0", + "packageName": "real-require", + "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" + } + }, + "npm:redeyed": { + "type": "npm", + "name": "npm:redeyed", + "data": { + "version": "2.1.1", + "packageName": "redeyed", + "hash": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==" + } + }, + "npm:reflect-metadata": { + "type": "npm", + "name": "npm:reflect-metadata", + "data": { + "version": "0.1.14", + "packageName": "reflect-metadata", + "hash": "sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.1", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.14.1", + "packageName": "regenerator-runtime", + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.2", + "packageName": "regenerator-transform", + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" + } + }, + "npm:regex-parser": { + "type": "npm", + "name": "npm:regex-parser", + "data": { + "version": "2.2.11", + "packageName": "regex-parser", + "hash": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.1", + "packageName": "regexp.prototype.flags", + "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "5.0.2", + "packageName": "registry-auth-token", + "hash": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:remarkable": { + "type": "npm", + "name": "npm:remarkable", + "data": { + "version": "1.7.4", + "packageName": "remarkable", + "hash": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==" + } + }, + "npm:repeat-element": { + "type": "npm", + "name": "npm:repeat-element", + "data": { + "version": "1.1.4", + "packageName": "repeat-element", + "hash": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" + } + }, + "npm:replace-json-property": { + "type": "npm", + "name": "npm:replace-json-property", + "data": { + "version": "1.9.0", + "packageName": "replace-json-property", + "hash": "sha512-+X6pZXsXSUKT9OzpJQjeDgLp9d0Ck7fsLZcNLhVL29XkwmB5oBz5T3fovs23/P0rLpzbCXrzG9/mbnyDrau+pw==" + } + }, + "npm:request-progress": { + "type": "npm", + "name": "npm:request-progress", + "data": { + "version": "3.0.0", + "packageName": "request-progress", + "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-url-loader": { + "type": "npm", + "name": "npm:resolve-url-loader", + "data": { + "version": "5.0.0", + "packageName": "resolve-url-loader", + "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" + } + }, + "npm:resp-modifier": { + "type": "npm", + "name": "npm:resp-modifier", + "data": { + "version": "6.0.2", + "packageName": "resp-modifier", + "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.1", + "packageName": "responselike", + "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "3.29.4", + "packageName": "rollup", + "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:rx": { + "type": "npm", + "name": "npm:rx", + "data": { + "version": "4.1.0", + "packageName": "rx", + "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.0.1", + "packageName": "safe-array-concat", + "hash": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.0", + "packageName": "safe-regex-test", + "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" + } + }, + "npm:safe-stable-stringify": { + "type": "npm", + "name": "npm:safe-stable-stringify", + "data": { + "version": "2.4.3", + "packageName": "safe-stable-stringify", + "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.69.5", + "packageName": "sass", + "hash": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:sax@1.2.4": { + "type": "npm", + "name": "npm:sax@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:secure-compare": { + "type": "npm", + "name": "npm:secure-compare", + "data": { + "version": "3.0.1", + "packageName": "secure-compare", + "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.4.1", + "packageName": "selfsigned", + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" + } + }, + "npm:semantic-release": { + "type": "npm", + "name": "npm:semantic-release", + "data": { + "version": "22.0.12", + "packageName": "semantic-release", + "hash": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==" + } + }, + "npm:semver-compare": { + "type": "npm", + "name": "npm:semver-compare", + "data": { + "version": "1.0.0", + "packageName": "semver-compare", + "hash": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "4.0.0", + "packageName": "semver-diff", + "hash": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==" + } + }, + "npm:semver-regex": { + "type": "npm", + "name": "npm:semver-regex", + "data": { + "version": "4.0.5", + "packageName": "semver-regex", + "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" + } + }, + "npm:semver-truncate": { + "type": "npm", + "name": "npm:semver-truncate", + "data": { + "version": "3.0.0", + "packageName": "semver-truncate", + "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:server-destroy": { + "type": "npm", + "name": "npm:server-destroy", + "data": { + "version": "1.0.1", + "packageName": "server-destroy", + "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.1.1", + "packageName": "set-function-length", + "hash": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.1", + "packageName": "set-function-name", + "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" + } + }, + "npm:set-getter": { + "type": "npm", + "name": "npm:set-getter", + "data": { + "version": "0.1.1", + "packageName": "set-getter", + "hash": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signale": { + "type": "npm", + "name": "npm:signale", + "data": { + "version": "1.4.0", + "packageName": "signale", + "hash": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:skin-tone": { + "type": "npm", + "name": "npm:skin-tone", + "data": { + "version": "2.0.0", + "packageName": "skin-tone", + "hash": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==" + } + }, + "npm:socket.io": { + "type": "npm", + "name": "npm:socket.io", + "data": { + "version": "4.7.2", + "packageName": "socket.io", + "hash": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==" + } + }, + "npm:socket.io-adapter": { + "type": "npm", + "name": "npm:socket.io-adapter", + "data": { + "version": "2.5.2", + "packageName": "socket.io-adapter", + "hash": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==" + } + }, + "npm:socket.io-client": { + "type": "npm", + "name": "npm:socket.io-client", + "data": { + "version": "4.7.2", + "packageName": "socket.io-client", + "hash": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==" + } + }, + "npm:socket.io-parser": { + "type": "npm", + "name": "npm:socket.io-parser", + "data": { + "version": "4.2.4", + "packageName": "socket.io-parser", + "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "1.1.2", + "packageName": "sort-keys", + "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" + } + }, + "npm:sort-keys-length": { + "type": "npm", + "name": "npm:sort-keys-length", + "data": { + "version": "1.0.1", + "packageName": "sort-keys-length", + "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" + } + }, + "npm:source-map-explorer": { + "type": "npm", + "name": "npm:source-map-explorer", + "data": { + "version": "2.5.3", + "packageName": "source-map-explorer", + "hash": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:spawn-error-forwarder": { + "type": "npm", + "name": "npm:spawn-error-forwarder", + "data": { + "version": "1.0.0", + "packageName": "spawn-error-forwarder", + "hash": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.18.0", + "packageName": "sshpk", + "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:steno": { + "type": "npm", + "name": "npm:steno", + "data": { + "version": "0.4.4", + "packageName": "steno", + "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" + } + }, + "npm:stream-combiner2": { + "type": "npm", + "name": "npm:stream-combiner2", + "data": { + "version": "1.1.1", + "packageName": "stream-combiner2", + "hash": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==" + } + }, + "npm:stream-shift": { + "type": "npm", + "name": "npm:stream-shift", + "data": { + "version": "1.0.1", + "packageName": "stream-shift", + "hash": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + } + }, + "npm:stream-throttle": { + "type": "npm", + "name": "npm:stream-throttle", + "data": { + "version": "0.1.3", + "packageName": "stream-throttle", + "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.2", + "packageName": "string-argv", + "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.1.5", + "packageName": "string.prototype.padend", + "hash": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.8", + "packageName": "string.prototype.trim", + "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimend", + "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimstart", + "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" + } + }, + "npm:strip-color": { + "type": "npm", + "name": "npm:strip-color", + "data": { + "version": "0.1.0", + "packageName": "strip-color", + "hash": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" + } + }, + "npm:strip-outer": { + "type": "npm", + "name": "npm:strip-outer", + "data": { + "version": "2.0.0", + "packageName": "strip-outer", + "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:strtok3": { + "type": "npm", + "name": "npm:strtok3", + "data": { + "version": "7.0.0", + "packageName": "strtok3", + "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.3", + "packageName": "style-loader", + "hash": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "6.0.1", + "packageName": "stylehacks", + "hash": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==" + } + }, + "npm:stylus": { + "type": "npm", + "name": "npm:stylus", + "data": { + "version": "0.59.0", + "packageName": "stylus", + "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" + } + }, + "npm:stylus-loader": { + "type": "npm", + "name": "npm:stylus-loader", + "data": { + "version": "7.1.3", + "packageName": "stylus-loader", + "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "3.0.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "3.1.0", + "packageName": "svgo", + "hash": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==" + } + }, + "npm:symbol-observable": { + "type": "npm", + "name": "npm:symbol-observable", + "data": { + "version": "4.0.0", + "packageName": "symbol-observable", + "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.9.4", + "packageName": "temp", + "hash": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "3.0.0", + "packageName": "temp-dir", + "hash": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "3.1.0", + "packageName": "tempy", + "hash": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.24.0", + "packageName": "terser", + "hash": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.9", + "packageName": "terser-webpack-plugin", + "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "2.4.0", + "packageName": "text-extensions", + "hash": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==" + } + }, + "npm:thread-stream": { + "type": "npm", + "name": "npm:thread-stream", + "data": { + "version": "0.15.2", + "packageName": "thread-stream", + "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" + } + }, + "npm:throttleit": { + "type": "npm", + "name": "npm:throttleit", + "data": { + "version": "1.0.1", + "packageName": "throttleit", + "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:to-object-path": { + "type": "npm", + "name": "npm:to-object-path", + "data": { + "version": "0.3.0", + "packageName": "to-object-path", + "hash": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:token-types": { + "type": "npm", + "name": "npm:token-types", + "data": { + "version": "5.0.1", + "packageName": "token-types", + "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" + } + }, + "npm:toml": { + "type": "npm", + "name": "npm:toml", + "data": { + "version": "2.3.6", + "packageName": "toml", + "hash": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" + } + }, + "npm:toposort": { + "type": "npm", + "name": "npm:toposort", + "data": { + "version": "2.0.2", + "packageName": "toposort", + "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.3", + "packageName": "tough-cookie", + "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.7", + "packageName": "traverse", + "hash": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==" + } + }, + "npm:tree-kill": { + "type": "npm", + "name": "npm:tree-kill", + "data": { + "version": "1.2.2", + "packageName": "tree-kill", + "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" + } + }, + "npm:trim-repeated": { + "type": "npm", + "name": "npm:trim-repeated", + "data": { + "version": "2.0.0", + "packageName": "trim-repeated", + "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" + } + }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "1.0.3", + "packageName": "ts-api-utils", + "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.1.1", + "packageName": "ts-jest", + "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" + } + }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.5.1", + "packageName": "ts-loader", + "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.2", + "packageName": "tslib", + "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + }, + "npm:tsscmp": { + "type": "npm", + "name": "npm:tsscmp", + "data": { + "version": "1.0.6", + "packageName": "tsscmp", + "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" + } + }, + "npm:tweetnacl": { + "type": "npm", + "name": "npm:tweetnacl", + "data": { + "version": "0.14.5", + "packageName": "tweetnacl", + "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + } + }, + "npm:typanion": { + "type": "npm", + "name": "npm:typanion", + "data": { + "version": "3.14.0", + "packageName": "typanion", + "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:typed-assert": { + "type": "npm", + "name": "npm:typed-assert", + "data": { + "version": "1.0.9", + "packageName": "typed-assert", + "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "5.2.2", + "packageName": "typescript", + "hash": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "1.0.37", + "packageName": "ua-parser-js", + "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.17.4", + "packageName": "uglify-js", + "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:undici": { + "type": "npm", + "name": "npm:undici", + "data": { + "version": "5.27.2", + "packageName": "undici", + "hash": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-emoji-modifier-base": { + "type": "npm", + "name": "npm:unicode-emoji-modifier-base", + "data": { + "version": "1.0.0", + "packageName": "unicode-emoji-modifier-base", + "hash": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:unicorn-magic": { + "type": "npm", + "name": "npm:unicorn-magic", + "data": { + "version": "0.1.0", + "packageName": "unicorn-magic", + "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" + } + }, + "npm:union": { + "type": "npm", + "name": "npm:union", + "data": { + "version": "0.5.0", + "packageName": "union", + "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "3.0.0", + "packageName": "unique-string", + "hash": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.1", + "packageName": "universal-user-agent", + "hash": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" + } + }, + "npm:unix-crypt-td-js": { + "type": "npm", + "name": "npm:unix-crypt-td-js", + "data": { + "version": "1.1.4", + "packageName": "unix-crypt-td-js", + "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:untildify": { + "type": "npm", + "name": "npm:untildify", + "data": { + "version": "4.0.0", + "packageName": "untildify", + "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.13", + "packageName": "update-browserslist-db", + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.2.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:verdaccio": { + "type": "npm", + "name": "npm:verdaccio", + "data": { + "version": "5.29.0", + "packageName": "verdaccio", + "hash": "sha512-Le3MhojXDCoXIDFNp5VaAalu8FtoZAJo6YTWxEAKCOO4MFN19XzwZsu4FkLrPHc5fPhyhqerTHBsG2qtoutxQA==" + } + }, + "npm:verdaccio-audit": { + "type": "npm", + "name": "npm:verdaccio-audit", + "data": { + "version": "12.0.0-next.4", + "packageName": "verdaccio-audit", + "hash": "sha512-X8Qe8Qv/BZPng7dQCCdot8g53eU65zM6GfLw0P1A68Hf5dzv/GJgekiPnIAXgSw5KJMKE8loNzd6+FfFLnQUSA==" + } + }, + "npm:verdaccio-htpasswd": { + "type": "npm", + "name": "npm:verdaccio-htpasswd", + "data": { + "version": "12.0.0-next.4", + "packageName": "verdaccio-htpasswd", + "hash": "sha512-q4SxBIWMkVPUoKk2/JSPJjlTdC8treuLtVV/omRYjEgSbwJBhJlSeqwEiHlv0/idv/cfwXoDR3/WY9CWq8gieg==" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" + } + }, + "npm:vite": { + "type": "npm", + "name": "npm:vite", + "data": { + "version": "4.5.1", + "packageName": "vite", + "hash": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.89.0", + "packageName": "webpack", + "hash": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "6.1.1", + "packageName": "webpack-dev-middleware", + "hash": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==" + } + }, + "npm:webpack-dev-middleware@5.3.3": { + "type": "npm", + "name": "npm:webpack-dev-middleware@5.3.3", + "data": { + "version": "5.3.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.15.1", + "packageName": "webpack-dev-server", + "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.10.0", + "packageName": "webpack-merge", + "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" + } + }, + "npm:webpack-node-externals": { + "type": "npm", + "name": "npm:webpack-node-externals", + "data": { + "version": "3.0.0", + "packageName": "webpack-node-externals", + "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack-subresource-integrity": { + "type": "npm", + "name": "npm:webpack-subresource-integrity", + "data": { + "version": "5.1.0", + "packageName": "webpack-subresource-integrity", + "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.13", + "packageName": "which-typed-array", + "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.1", + "packageName": "wildcard", + "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:xmlhttprequest-ssl": { + "type": "npm", + "name": "npm:xmlhttprequest-ssl", + "data": { + "version": "2.0.0", + "packageName": "xmlhttprequest-ssl", + "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:yup": { + "type": "npm", + "name": "npm:yup", + "data": { + "version": "0.32.11", + "packageName": "yup", + "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" + } + }, + "npm:zone.js": { + "type": "npm", + "name": "npm:zone.js", + "data": { + "version": "0.14.2", + "packageName": "zone.js", + "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" + } + } + }, "dependencies": { "tooling-nx-plugin-generators": [ { - "source": "tooling-nx-plugin-generators", - "target": "tooling-nx-plugin-config", + "source": "tooling-nx-plugin-generators", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@angular/router", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nx/angular", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-config", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@ngrx/store", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:nx", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "tooling-nx-plugin-validators", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "tooling-nx-plugin-generators", + "target": "npm:inquirer-autocomplete-prompt", + "type": "static" + } + ], + "tooling-nx-plugin-validators": [ + { + "source": "tooling-nx-plugin-validators", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "tooling-nx-plugin-validators", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "tooling-nx-plugin-validators", + "target": "tooling-nx-plugin-config", + "type": "static" + } + ], + "tooling-nx-plugin-config": [ + { + "source": "tooling-nx-plugin-config", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "tooling-nx-plugin-config", + "target": "npm:@types/inquirer", + "type": "static" + }, + { + "source": "tooling-nx-plugin-config", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "ax-nx-plugin-workspace": [ + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/animations", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/cdk", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/forms", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/platform-browser-dynamic", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/router", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@ngrx/store", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@types/inquirer", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:zone.js", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular-eslint/eslint-plugin-template", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular-eslint/template-parser", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/cli", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@angular/language-service", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/angular", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/cypress", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/eslint-plugin", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/plugin", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/web", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@schematics/angular", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@semantic-release/changelog", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@semantic-release/commit-analyzer", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@semantic-release/exec", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@semantic-release/git", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@semantic-release/release-notes-generator", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@swc-node/register", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@swc/cli", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@types/jest", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:conventional-changelog-conventionalcommits", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:cypress", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:eslint-plugin-cypress", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:http-server", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:husky", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:inquirer-autocomplete-prompt", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:jest", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:jest-preset-angular", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:json-server", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:jsonc-eslint-parser", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:lint-staged", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:markdown-toc", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:npm-run-all", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:nx", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:nx-release", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:replace-json-property", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:source-map-explorer", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:ts-jest", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "ax-nx-plugin-workspace", + "target": "npm:verdaccio", + "type": "static" + } + ], + "npm:@ampproject/remapping": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@angular-devkit/architect": [ + { + "source": "npm:@angular-devkit/architect", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/architect", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@angular-devkit/build-angular": [ + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/build-webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@ngtools/webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:@vitejs/plugin-basic-ssl", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:browser-sync", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:critters", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:esbuild-wasm", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:inquirer@9.2.11", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:karma-source-map-support", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:parse5-html-rewriting-stream", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:piscina", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:resolve-url-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:sass-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:undici", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:webpack-subresource-integrity", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-angular", + "target": "npm:esbuild", + "type": "static" + } + ], + "npm:figures@5.0.0": [ + { + "source": "npm:figures@5.0.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:figures@5.0.0", + "target": "npm:is-unicode-supported@1.3.0", + "type": "static" + } + ], + "npm:inquirer@9.2.11": [ + { + "source": "npm:inquirer@9.2.11", + "target": "npm:@ljharb/through", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:cli-width@4.1.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:figures@5.0.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:mute-stream@1.0.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:run-async@3.0.0", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer@9.2.11", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:@angular-devkit/build-webpack": [ + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular-devkit/build-webpack", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@angular-devkit/core": [ + { + "source": "npm:@angular-devkit/core", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@angular-devkit/schematics": [ + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@angular-eslint/eslint-plugin": [ + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:@angular-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + } + ], + "npm:@angular-eslint/eslint-plugin-template": [ + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@angular-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:@angular-eslint/eslint-plugin-template", + "target": "npm:axobject-query", + "type": "static" + } + ], + "npm:@angular-eslint/template-parser": [ + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/template-parser", + "target": "npm:eslint-scope", + "type": "static" + } + ], + "npm:@angular-eslint/utils": [ + { + "source": "npm:@angular-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:@angular-eslint/bundled-angular-compiler", + "type": "static" + }, + { + "source": "npm:@angular-eslint/utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + } + ], + "npm:@angular/animations": [ + { + "source": "npm:@angular/animations", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/animations", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/cdk": [ + { + "source": "npm:@angular/cdk", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/cdk", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:@angular/cli": [ + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/architect", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@schematics/angular@17.0.7", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:inquirer@9.2.11", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:symbol-observable", + "type": "static" + }, + { + "source": "npm:@angular/cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:@schematics/angular@17.0.7": [ + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@schematics/angular@17.0.7", + "target": "npm:jsonc-parser", + "type": "static" + } + ], + "npm:@angular/common": [ + { + "source": "npm:@angular/common", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/common", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/compiler": [ + { + "source": "npm:@angular/compiler", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/compiler", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/compiler-cli": [ + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:reflect-metadata", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@angular/compiler-cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:@angular/core": [ + { + "source": "npm:@angular/core", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:zone.js", + "type": "static" + }, + { + "source": "npm:@angular/core", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/forms": [ + { + "source": "npm:@angular/forms", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/forms", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/platform-browser": [ + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/animations", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/platform-browser-dynamic": [ + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/compiler", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/platform-browser-dynamic", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@angular/router": [ + { + "source": "npm:@angular/router", + "target": "npm:@angular/common", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:@angular/platform-browser", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular/router", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@babel/code-frame": [ + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:ansi-styles@3.2.1": [ + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + } + ], + "npm:chalk@2.4.2": [ + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:color-convert@1.9.3": [ + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + } + ], + "npm:supports-color@5.5.0": [ + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + } + ], + "npm:@babel/core": [ + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/generator": [ + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/helper-annotate-as-pure": [ + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-compilation-targets": [ + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-class-features-plugin": [ + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-regexp-features-plugin": [ + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-define-polyfill-provider": [ + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:@babel/helper-function-name": [ + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-hoist-variables": [ + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-member-expression-to-functions": [ + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-imports": [ + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-transforms": [ + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/helper-optimise-call-expression": [ + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-remap-async-to-generator": [ + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + } + ], + "npm:@babel/helper-replace-supers": [ + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + } + ], + "npm:@babel/helper-simple-access": [ + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-skip-transparent-expression-wrappers": [ + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-split-export-declaration": [ + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-wrap-function": [ + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helpers": [ + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/highlight": [ + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-decorators": [ + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-private-property-in-object": [ + { + "source": "npm:@babel/plugin-proposal-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-async-generators": [ + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-bigint": [ + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-properties": [ + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-static-block": [ + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-decorators": [ + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-dynamic-import": [ + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-namespace-from": [ + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-assertions": [ + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-attributes": [ + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-meta": [ + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-json-strings": [ + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx": [ + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-numeric-separator": [ + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-object-rest-spread": [ + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-chaining": [ + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-private-property-in-object": [ + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-top-level-await": [ + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-typescript": [ + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-arrow-functions": [ + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-generator-functions": [ + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-to-generator": [ + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoped-functions": [ + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoping": [ + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-properties": [ + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-static-block": [ + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + } + ], + "npm:@babel/plugin-transform-classes": [ + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/plugin-transform-computed-properties": [ + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + } + ], + "npm:@babel/plugin-transform-destructuring": [ + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dotall-regex": [ + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-duplicate-keys": [ + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dynamic-import": [ + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + } + ], + "npm:@babel/plugin-transform-exponentiation-operator": [ + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-export-namespace-from": [ + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + } + ], + "npm:@babel/plugin-transform-for-of": [ + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-function-name": [ + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-json-strings": [ + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + } + ], + "npm:@babel/plugin-transform-literals": [ + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-member-expression-literals": [ + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-amd": [ + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-commonjs": [ + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-systemjs": [ + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-umd": [ + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-named-capturing-groups-regex": [ + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-new-target": [ + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-numeric-separator": [ + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-rest-spread": [ + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-super": [ + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-chaining": [ + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-transform-parameters": [ + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-methods": [ + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-property-in-object": [ + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + } + ], + "npm:@babel/plugin-transform-property-literals": [ + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-regenerator": [ + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + } + ], + "npm:@babel/plugin-transform-reserved-words": [ + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-runtime": [ + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/plugin-transform-shorthand-properties": [ + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-spread": [ + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-sticky-regex": [ + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-template-literals": [ + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typeof-symbol": [ + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typescript": [ + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-escapes": [ + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-property-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/preset-env": [ + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/preset-modules": [ + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:@babel/preset-typescript": [ + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + } + ], + "npm:@babel/runtime": [ + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@babel/template": [ + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/traverse": [ + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator@7.23.6", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/generator@7.23.6": [ + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.23.6", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/types": [ + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + } + ], + "npm:@cspotcode/source-map-support": [ + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping@0.3.9": [ + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@cypress/request": [ + { + "source": "npm:@cypress/request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@cypress/xvfb": [ + { + "source": "npm:@cypress/xvfb", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:lodash.once", + "type": "static" + } + ], + "npm:debug@3.2.7": [ + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + } + ], + "npm:@eslint-community/eslint-utils": [ + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@eslint/eslintrc": [ + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@13.24.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:ajv@6.12.6": [ + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:globals@13.24.0": [ + { + "source": "npm:globals@13.24.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + } + ], + "npm:minimatch@3.1.2": [ + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:@humanwhocodes/config-array": [ + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:@isaacs/cliui": [ + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:string-width@5.1.2": [ + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:strip-ansi@7.1.0": [ + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi@8.1.0": [ + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:@istanbuljs/load-nyc-config": [ + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:js-yaml@3.14.1": [ + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:@jest/console": [ + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/core": [ + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:@jest/environment": [ + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/expect": [ + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:@jest/expect-utils": [ + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + } + ], + "npm:@jest/fake-timers": [ + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:@jest/globals": [ + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/reporters": [ + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + } + ], + "npm:@jest/schemas": [ + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + } + ], + "npm:@jest/source-map": [ + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:@jest/test-result": [ + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + } + ], + "npm:@jest/test-sequencer": [ + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/transform": [ + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:@jest/types": [ + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping": [ + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/source-map": [ + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping": [ + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@ljharb/through": [ + { + "source": "npm:@ljharb/through", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:@mole-inc/bin-wrapper": [ + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-version-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:ext-name", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:file-type", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:filenamify", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:os-filter-obj", + "type": "static" + } + ], + "npm:@ngrx/store": [ + { + "source": "npm:@ngrx/store", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@ngrx/store", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@ngtools/webpack": [ + { + "source": "npm:@ngtools/webpack", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@ngtools/webpack", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@nodelib/fs.scandir": [ + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + } + ], + "npm:@nodelib/fs.walk": [ + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:@npmcli/agent": [ + { + "source": "npm:@npmcli/agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:socks-proxy-agent", + "type": "static" + } + ], + "npm:http-proxy-agent@7.0.0": [ + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@7.0.0", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@npmcli/fs": [ + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/git": [ + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:which@4.0.0": [ + { + "source": "npm:which@4.0.0", + "target": "npm:isexe@3.1.1", + "type": "static" + } + ], + "npm:@npmcli/installed-package-contents": [ + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:@npmcli/promise-spawn": [ + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:@npmcli/run-script": [ + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:@nrwl/angular": [ + { + "source": "npm:@nrwl/angular", + "target": "npm:@nx/angular", + "type": "static" + }, + { + "source": "npm:@nrwl/angular", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nrwl/cypress": [ + { + "source": "npm:@nrwl/cypress", + "target": "npm:@nx/cypress", + "type": "static" + } + ], + "npm:@nrwl/devkit": [ + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "npm:@nrwl/eslint-plugin-nx": [ + { + "source": "npm:@nrwl/eslint-plugin-nx", + "target": "npm:@nx/eslint-plugin", + "type": "static" + } + ], + "npm:@nrwl/jest": [ + { + "source": "npm:@nrwl/jest", + "target": "npm:@nx/jest", + "type": "static" + } + ], + "npm:@nrwl/js": [ + { + "source": "npm:@nrwl/js", + "target": "npm:@nx/js", + "type": "static" + } + ], + "npm:@nrwl/nx-plugin": [ + { + "source": "npm:@nrwl/nx-plugin", + "target": "npm:@nx/plugin", + "type": "static" + } + ], + "npm:@nrwl/tao": [ + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nrwl/web": [ + { + "source": "npm:@nrwl/web", + "target": "npm:@nx/web", + "type": "static" + } + ], + "npm:@nrwl/webpack": [ + { + "source": "npm:@nrwl/webpack", + "target": "npm:@nx/webpack", + "type": "static" + } + ], + "npm:@nrwl/workspace": [ + { + "source": "npm:@nrwl/workspace", + "target": "npm:@nx/workspace", + "type": "static" + } + ], + "npm:@nx/angular": [ + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/core", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@angular-devkit/schematics", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@schematics/angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nrwl/angular", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/cypress", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/eslint", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/web", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/webpack", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/angular", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:lru-cache@6.0.0": [ + { + "source": "npm:lru-cache@6.0.0", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:semver@7.5.3": [ + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache@6.0.0", + "type": "static" + } + ], + "npm:@nx/cypress": [ + { + "source": "npm:@nx/cypress", + "target": "npm:cypress", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nrwl/cypress", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/eslint", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/cypress", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/devkit": [ + { + "source": "npm:@nx/devkit", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/eslint": [ + { + "source": "npm:@nx/eslint", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/eslint", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@nx/eslint-plugin": [ + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nrwl/eslint-plugin-nx", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:confusing-browser-globals", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:jsonc-eslint-parser", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/eslint-plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/jest": [ + { + "source": "npm:@nx/jest", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nrwl/jest", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/js": [ + { + "source": "npm:@nx/js", + "target": "npm:verdaccio", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nrwl/js", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ora@5.3.0", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:fast-glob@3.2.7": [ + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:ora@5.3.0": [ + { + "source": "npm:ora@5.3.0", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.3.0", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:source-map-support@0.5.19": [ + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:@nx/linter": [ + { + "source": "npm:@nx/linter", + "target": "npm:@nx/eslint", + "type": "static" + } + ], + "npm:@nx/plugin": [ + { + "source": "npm:@nx/plugin", + "target": "npm:@nrwl/nx-plugin", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/eslint", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/web": [ + { + "source": "npm:@nx/web", + "target": "npm:@nrwl/web", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:http-server", + "type": "static" + }, + { + "source": "npm:@nx/web", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/webpack": [ + { + "source": "npm:@nx/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nrwl/webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:copy-webpack-plugin@10.2.4", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less@4.1.3", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:mini-css-extract-plugin@2.4.7", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:parse5@4.0.0", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-import", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-loader@6.2.1", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-loader@12.6.0", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:source-map-loader@3.0.2", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ts-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tsconfig-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-node-externals", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-subresource-integrity", + "type": "static" + } + ], + "npm:copy-webpack-plugin@10.2.4": [ + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:globby@12.2.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin@10.2.4", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:cosmiconfig@7.1.0": [ + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.1.0", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:glob-parent@6.0.2": [ + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:globby@12.2.0": [ + { + "source": "npm:globby@12.2.0", + "target": "npm:array-union@3.0.1", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:iconv-lite@0.6.3": [ + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:less@4.1.3": [ + { + "source": "npm:less@4.1.3", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less@4.1.3", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:loader-utils@2.0.4": [ + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@2.0.4", + "target": "npm:json5", + "type": "static" + } + ], + "npm:make-dir@2.1.0": [ + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.2", + "type": "static" + } + ], + "npm:mini-css-extract-plugin@2.4.7": [ + { + "source": "npm:mini-css-extract-plugin@2.4.7", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin@2.4.7", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:postcss-loader@6.2.1": [ + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader@6.2.1", + "target": "npm:semver", + "type": "static" + } + ], + "npm:sass-loader@12.6.0": [ + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:sass-loader@12.6.0", + "target": "npm:neo-async", + "type": "static" + } + ], + "npm:source-map-loader@3.0.2": [ + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:source-map-loader@3.0.2", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:@nx/workspace": [ + { + "source": "npm:@nx/workspace", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:@octokit/core": [ + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/endpoint": [ + { + "source": "npm:@octokit/endpoint", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/graphql": [ + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/plugin-paginate-rest": [ + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + } + ], + "npm:@octokit/plugin-retry": [ + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-retry", + "target": "npm:bottleneck", + "type": "static" + } + ], + "npm:@octokit/plugin-throttling": [ + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-throttling", + "target": "npm:bottleneck", + "type": "static" + } + ], + "npm:@octokit/request": [ + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/endpoint", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/request-error": [ + { + "source": "npm:@octokit/request-error", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:once", + "type": "static" + } + ], + "npm:@octokit/types": [ + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@phenomnomnominal/tsquery": [ + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + } + ], + "npm:@pnpm/network.ca-file": [ + { + "source": "npm:@pnpm/network.ca-file", + "target": "npm:graceful-fs@4.2.10", + "type": "static" + } + ], + "npm:@pnpm/npm-conf": [ + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:@pnpm/config.env-replace", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:@pnpm/network.ca-file", + "type": "static" + }, + { + "source": "npm:@pnpm/npm-conf", + "target": "npm:config-chain", + "type": "static" + } + ], + "npm:@schematics/angular": [ + { + "source": "npm:@schematics/angular", + "target": "npm:@angular-devkit/core@16.0.6", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:@angular-devkit/schematics@16.0.6", + "type": "static" + }, + { + "source": "npm:@schematics/angular", + "target": "npm:jsonc-parser", + "type": "static" + } + ], + "npm:@angular-devkit/core@16.0.6": [ + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@angular-devkit/core@16.0.6", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@angular-devkit/schematics@16.0.6": [ + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:@angular-devkit/core@16.0.6", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:magic-string@0.30.0", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@angular-devkit/schematics@16.0.6", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:magic-string@0.30.0": [ + { + "source": "npm:magic-string@0.30.0", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@semantic-release/changelog": [ + { + "source": "npm:@semantic-release/changelog", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@semantic-release/changelog", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@semantic-release/commit-analyzer": [ + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/commit-analyzer", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:@semantic-release/exec": [ + { + "source": "npm:@semantic-release/exec", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/exec", + "target": "npm:parse-json", + "type": "static" + } + ], + "npm:@semantic-release/git": [ + { + "source": "npm:@semantic-release/git", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:@semantic-release/error", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@semantic-release/git", + "target": "npm:p-reduce", + "type": "static" + } + ], + "npm:@semantic-release/github": [ + { + "source": "npm:@semantic-release/github", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-retry", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@octokit/plugin-throttling", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:globby@14.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:http-proxy-agent@7.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:issue-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:mime@4.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:p-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/github", + "target": "npm:url-join@5.0.0", + "type": "static" + } + ], + "npm:aggregate-error@5.0.0": [ + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:clean-stack@5.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@5.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + } + ], + "npm:clean-stack@5.2.0": [ + { + "source": "npm:clean-stack@5.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:fast-glob@3.3.2": [ + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.3.2", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:globby@14.0.0": [ + { + "source": "npm:globby@14.0.0", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:fast-glob@3.3.2", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:path-type@5.0.0", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:globby@14.0.0", + "target": "npm:unicorn-magic", + "type": "static" + } + ], + "npm:@semantic-release/npm": [ + { + "source": "npm:@semantic-release/npm", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:nerf-dart", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:normalize-url@8.0.0", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:npm", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:read-pkg@9.0.1", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@semantic-release/npm", + "target": "npm:tempy", + "type": "static" + } + ], + "npm:execa@8.0.1": [ + { + "source": "npm:execa@8.0.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:get-stream@8.0.1", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:human-signals@5.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@8.0.1", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + } + ], + "npm:npm-run-path@5.1.0": [ + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + } + ], + "npm:onetime@6.0.0": [ + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + } + ], + "npm:parse-json@8.1.0": [ + { + "source": "npm:parse-json@8.1.0", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:index-to-position", + "type": "static" + }, + { + "source": "npm:parse-json@8.1.0", + "target": "npm:type-fest@4.8.3", + "type": "static" + } + ], + "npm:read-pkg@9.0.1": [ + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:parse-json@8.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:type-fest@4.8.3", + "type": "static" + }, + { + "source": "npm:read-pkg@9.0.1", + "target": "npm:unicorn-magic", + "type": "static" + } + ], + "npm:@semantic-release/release-notes-generator": [ + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:semantic-release", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:into-stream", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:@semantic-release/release-notes-generator", + "target": "npm:read-pkg-up", + "type": "static" + } + ], + "npm:@sigstore/bundle": [ + { + "source": "npm:@sigstore/bundle", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + } + ], + "npm:@sigstore/sign": [ + { + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/sign", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:@sigstore/tuf": [ + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + } + ], + "npm:@sinonjs/commons": [ + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/fake-timers": [ + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + } + ], + "npm:@swc-node/core": [ + { + "source": "npm:@swc-node/core", + "target": "npm:@swc/core", + "type": "static" + } + ], + "npm:@swc-node/register": [ + { + "source": "npm:@swc-node/register", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc-node/core", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:@swc-node/sourcemap-support", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@swc-node/register", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@swc-node/sourcemap-support": [ + { + "source": "npm:@swc-node/sourcemap-support", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@swc-node/sourcemap-support", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@swc/cli": [ + { + "source": "npm:@swc/cli", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:@mole-inc/bin-wrapper", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@swc/core": [ + { + "source": "npm:@swc/core", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/counter", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/types", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-x64", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-x64-msvc", + "type": "static" + } + ], + "npm:@swc/helpers": [ + { + "source": "npm:@swc/helpers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@szmarczak/http-timer": [ + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + } + ], + "npm:@tufjs/models": [ + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.3", + "type": "static" + } + ], + "npm:brace-expansion@2.0.1": [ + { + "source": "npm:brace-expansion@2.0.1", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:minimatch@9.0.3": [ + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:@types/babel__core": [ + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:@types/babel__generator": [ + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__template": [ + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__traverse": [ + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/bonjour": [ + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/cacheable-request": [ + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/connect-history-api-fallback": [ + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/cors": [ + { + "source": "npm:@types/cors", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/eslint": [ + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@types/eslint-scope": [ + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + } + ], + "npm:@types/graceful-fs": [ + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/http-proxy": [ + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/inquirer": [ + { + "source": "npm:@types/inquirer", + "target": "npm:@types/through", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@types/istanbul-lib-report": [ + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + } + ], + "npm:@types/istanbul-reports": [ + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/jest": [ + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:@types/jsdom": [ + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:@types/keyv": [ + { + "source": "npm:@types/keyv", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/node-forge": [ + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/responselike": [ + { + "source": "npm:@types/responselike", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/send": [ + { + "source": "npm:@types/send", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/serve-index": [ + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/sockjs": [ + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/through": [ + { + "source": "npm:@types/through", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/ws": [ + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/yargs": [ + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yauzl": [ + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin": [ + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils@6.15.0": [ + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:@typescript-eslint/utils@6.15.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@6.15.0", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils@6.15.0": [ + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.15.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/parser": [ + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager": [ + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils": [ + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree@6.13.1": [ + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.13.1", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys@6.13.1": [ + { + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@6.13.1", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree": [ + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils": [ + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager@6.13.1": [ + { + "source": "npm:@typescript-eslint/scope-manager@6.13.1", + "target": "npm:@typescript-eslint/types@6.13.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@6.13.1", + "target": "npm:@typescript-eslint/visitor-keys@6.13.1", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys": [ + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@verdaccio/commons-api": [ + { + "source": "npm:@verdaccio/commons-api", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:@verdaccio/commons-api", + "target": "npm:http-status-codes", + "type": "static" + } + ], + "npm:@verdaccio/config": [ + { + "source": "npm:@verdaccio/config", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:minimatch@7.4.6", + "type": "static" + }, + { + "source": "npm:@verdaccio/config", + "target": "npm:yup", + "type": "static" + } + ], + "npm:minimatch@7.4.6": [ + { + "source": "npm:minimatch@7.4.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:@verdaccio/core": [ + { + "source": "npm:@verdaccio/core", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:http-status-codes", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:@verdaccio/core", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@verdaccio/file-locking": [ + { + "source": "npm:@verdaccio/file-locking", + "target": "npm:lockfile", + "type": "static" + } + ], + "npm:@verdaccio/local-storage": [ + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/commons-api", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/file-locking", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:@verdaccio/streams", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:async@3.2.4", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:lowdb", + "type": "static" + }, + { + "source": "npm:@verdaccio/local-storage", + "target": "npm:mkdirp@1.0.4", + "type": "static" + } + ], + "npm:@verdaccio/logger-7": [ + { + "source": "npm:@verdaccio/logger-7", + "target": "npm:@verdaccio/logger-commons", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-7", + "target": "npm:pino", + "type": "static" + } + ], + "npm:@verdaccio/logger-commons": [ + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:@verdaccio/logger-prettify", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-commons", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@verdaccio/logger-prettify": [ + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:dayjs@1.11.7", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:pino-abstract-transport", + "type": "static" + }, + { + "source": "npm:@verdaccio/logger-prettify", + "target": "npm:sonic-boom", + "type": "static" + } + ], + "npm:@verdaccio/middleware": [ + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:express-rate-limit", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:@verdaccio/middleware", + "target": "npm:mime@2.6.0", + "type": "static" + } + ], + "npm:@verdaccio/signature": [ + { + "source": "npm:@verdaccio/signature", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:@verdaccio/signature", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@verdaccio/tarball": [ + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/tarball", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@verdaccio/url": [ + { + "source": "npm:@verdaccio/url", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/url", + "target": "npm:validator@13.9.0", + "type": "static" + } + ], + "npm:@verdaccio/utils": [ + { + "source": "npm:@verdaccio/utils", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:minimatch@7.4.6", + "type": "static" + }, + { + "source": "npm:@verdaccio/utils", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@vitejs/plugin-basic-ssl": [ + { + "source": "npm:@vitejs/plugin-basic-ssl", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@webassemblyjs/ast": [ + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-numbers": [ + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754": [ + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128": [ + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit": [ + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen": [ + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt": [ + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser": [ + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer": [ + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@yarnpkg/parsers": [ + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@zkochan/js-yaml": [ + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse@2.0.1", + "type": "static" + } + ], + "npm:abort-controller": [ + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + } + ], + "npm:accepts": [ + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + } + ], + "npm:acorn-globals": [ + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + } + ], + "npm:acorn-import-assertions": [ + { + "source": "npm:acorn-import-assertions", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:acorn-jsx": [ + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:adjust-sourcemap-loader": [ + { + "source": "npm:adjust-sourcemap-loader", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:adjust-sourcemap-loader", + "target": "npm:regex-parser", + "type": "static" + } + ], + "npm:agent-base": [ + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + } + ], + "npm:aggregate-error": [ + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv-formats": [ + { + "source": "npm:ajv-formats", + "target": "npm:ajv", + "type": "static" + } + ], + "npm:ajv-keywords": [ + { + "source": "npm:ajv-keywords", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:ajv-keywords", + "target": "npm:fast-deep-equal", + "type": "static" + } + ], + "npm:ansi-escapes": [ + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:ansi-red": [ + { + "source": "npm:ansi-red", + "target": "npm:ansi-wrap", + "type": "static" + } + ], + "npm:ansi-styles": [ + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:anymatch": [ + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:argparse": [ + { + "source": "npm:argparse", + "target": "npm:sprintf-js", + "type": "static" + } + ], + "npm:aria-query": [ + { + "source": "npm:aria-query", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:array-buffer-byte-length": [ + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + } + ], + "npm:arraybuffer.prototype.slice": [ + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-shared-array-buffer", + "type": "static" + } + ], + "npm:asn1": [ + { + "source": "npm:asn1", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:autolinker": [ + { + "source": "npm:autolinker", + "target": "npm:gulp-header", + "type": "static" + } + ], + "npm:autoprefixer": [ + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:axios": [ + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + } + ], + "npm:axobject-query": [ + { + "source": "npm:axobject-query", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:babel-jest": [ + { + "source": "npm:babel-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + } + ], + "npm:babel-loader": [ + { + "source": "npm:babel-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:find-cache-dir@4.0.0": [ + { + "source": "npm:find-cache-dir@4.0.0", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir@4.0.0", + "target": "npm:pkg-dir@7.0.0", + "type": "static" + } + ], + "npm:find-up@6.3.0": [ + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + } + ], + "npm:locate-path@7.2.0": [ + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + } + ], + "npm:p-limit@4.0.0": [ + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + } + ], + "npm:p-locate@6.0.0": [ + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + } + ], + "npm:pkg-dir@7.0.0": [ + { + "source": "npm:pkg-dir@7.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + } + ], + "npm:babel-plugin-const-enum": [ + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse", + "type": "static" + } + ], + "npm:babel-plugin-istanbul": [ + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument@5.2.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + } + ], + "npm:istanbul-lib-instrument@5.2.1": [ + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:babel-plugin-jest-hoist": [ + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:babel-plugin-macros": [ + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs2": [ + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs3": [ + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-regenerator": [ + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + } + ], + "npm:babel-plugin-transform-typescript-metadata": [ + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:babel-preset-current-node-syntax": [ + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + } + ], + "npm:babel-preset-jest": [ + { + "source": "npm:babel-preset-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + } + ], + "npm:basic-auth": [ + { + "source": "npm:basic-auth", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:bcrypt-pbkdf": [ + { + "source": "npm:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:bin-check": [ + { + "source": "npm:bin-check", + "target": "npm:execa@0.7.0", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:executable", + "type": "static" + } + ], + "npm:cross-spawn@5.1.0": [ + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:lru-cache@4.1.5", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:execa@0.7.0": [ + { + "source": "npm:execa@0.7.0", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:get-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:strip-eof", + "type": "static" + } + ], + "npm:lru-cache@4.1.5": [ + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:pseudomap", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:yallist@2.1.2", + "type": "static" + } + ], + "npm:npm-run-path@2.0.2": [ + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key@2.0.1", + "type": "static" + } + ], + "npm:shebang-command@1.2.0": [ + { + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + } + ], + "npm:which@1.3.1": [ + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:bin-version": [ + { + "source": "npm:bin-version", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:find-versions", + "type": "static" + } + ], + "npm:bin-version-check": [ + { + "source": "npm:bin-version-check", + "target": "npm:bin-version", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver-truncate", + "type": "static" + } + ], + "npm:bl": [ + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream@3.6.2", + "type": "static" + } + ], + "npm:readable-stream@3.6.2": [ + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.2", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:body-parser": [ + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:debug@2.6.9": [ + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:on-finished@2.4.1": [ + { + "source": "npm:on-finished@2.4.1", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:qs@6.11.0": [ + { + "source": "npm:qs@6.11.0", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:bonjour-service": [ + { + "source": "npm:bonjour-service", + "target": "npm:array-flatten@2.1.2", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + } + ], + "npm:brace-expansion": [ + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:concat-map", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:browser-sync": [ + { + "source": "npm:browser-sync", + "target": "npm:browser-sync-client", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:browser-sync-ui", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:bs-recipes", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:dev-ip", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:easy-extender", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:eazy-logger", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:fs-extra@3.0.1", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:localtunnel", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:opn", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:portscanner", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:resp-modifier", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:rx", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:socket.io", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:ua-parser-js", + "type": "static" + }, + { + "source": "npm:browser-sync", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:browser-sync-client": [ + { + "source": "npm:browser-sync-client", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:browser-sync-client", + "target": "npm:mitt", + "type": "static" + } + ], + "npm:browser-sync-ui": [ + { + "source": "npm:browser-sync-ui", + "target": "npm:async-each-series", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:socket.io-client", + "type": "static" + }, + { + "source": "npm:browser-sync-ui", + "target": "npm:stream-throttle", + "type": "static" + } + ], + "npm:fs-extra@3.0.1": [ + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:jsonfile@3.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@3.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + } + ], + "npm:jsonfile@3.0.1": [ + { + "source": "npm:jsonfile@3.0.1", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:browserslist": [ + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + } + ], + "npm:bs-logger": [ + { + "source": "npm:bs-logger", + "target": "npm:fast-json-stable-stringify", + "type": "static" + } + ], + "npm:bser": [ + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + } + ], + "npm:buffer": [ + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:builtins": [ + { + "source": "npm:builtins", + "target": "npm:semver", + "type": "static" + } + ], + "npm:cacache": [ + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:glob@10.3.10": [ + { + "source": "npm:glob@10.3.10", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:cacheable-request": [ + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:get-stream@5.2.0": [ + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:call-bind": [ + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + } + ], + "npm:caniuse-api": [ + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + } + ], + "npm:cardinal": [ + { + "source": "npm:cardinal", + "target": "npm:ansicolors", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:redeyed", + "type": "static" + } + ], + "npm:chalk": [ + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + } + ], + "npm:cli-table3": [ + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + } + ], + "npm:cli-truncate": [ + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:clipanion": [ + { + "source": "npm:clipanion", + "target": "npm:typanion", + "type": "static" + } + ], + "npm:cliui": [ + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + } + ], + "npm:wrap-ansi@7.0.0": [ + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@7.0.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], + "npm:clone-response": [ + { + "source": "npm:clone-response", + "target": "npm:mimic-response", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:columnify": [ + { + "source": "npm:columnify", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:combined-stream": [ + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + } + ], + "npm:compare-func": [ + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop", + "type": "static" + } + ], + "npm:compressible": [ + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:compression": [ + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + } + ], + "npm:concat-stream": [ + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + } + ], + "npm:concat-with-sourcemaps": [ + { + "source": "npm:concat-with-sourcemaps", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:config-chain": [ + { + "source": "npm:config-chain", + "target": "npm:ini@1.3.8", + "type": "static" + }, + { + "source": "npm:config-chain", + "target": "npm:proto-list", + "type": "static" + } + ], + "npm:connect": [ + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + } + ], + "npm:content-disposition": [ + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:conventional-changelog-angular": [ + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-conventionalcommits": [ + { + "source": "npm:conventional-changelog-conventionalcommits", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-writer": [ + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split2", + "type": "static" + } + ], + "npm:conventional-commits-parser": [ + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + } + ], + "npm:cookies": [ + { + "source": "npm:cookies", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:keygrip", + "type": "static" + } + ], + "npm:copy-anything": [ + { + "source": "npm:copy-anything", + "target": "npm:is-what", + "type": "static" + } + ], + "npm:copy-webpack-plugin": [ + { + "source": "npm:copy-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@13.2.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:globby@13.2.2": [ + { + "source": "npm:globby@13.2.2", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:core-js-compat": [ + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + } + ], + "npm:cors": [ + { + "source": "npm:cors", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:vary", + "type": "static" + } + ], + "npm:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:create-jest": [ + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + } + ], + "npm:critters": [ + { + "source": "npm:critters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:critters", + "target": "npm:pretty-bytes", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + } + ], + "npm:crypto-random-string": [ + { + "source": "npm:crypto-random-string", + "target": "npm:type-fest@1.4.0", + "type": "static" + } + ], + "npm:css-declaration-sorter": [ + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:css-loader": [ + { + "source": "npm:css-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:css-minimizer-webpack-plugin": [ + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-tree": [ + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:cssnano": [ + { + "source": "npm:cssnano", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + } + ], + "npm:cssnano-preset-default": [ + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + } + ], + "npm:cssnano-utils": [ + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:csso": [ + { + "source": "npm:csso", + "target": "npm:css-tree@2.2.1", + "type": "static" + } + ], + "npm:css-tree@2.2.1": [ + { + "source": "npm:css-tree@2.2.1", + "target": "npm:mdn-data@2.0.28", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:cssstyle": [ + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + } + ], + "npm:cypress": [ + { + "source": "npm:cypress", + "target": "npm:@cypress/request", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/xvfb", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/node@16.18.68", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sizzle", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:blob-util", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:eventemitter2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:getos", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:ospath", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:request-progress", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:untildify", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:yauzl", + "type": "static" + } + ], + "npm:execa@4.1.0": [ + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:fs-extra@9.1.0": [ + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:supports-color@8.1.1": [ + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:dashdash": [ + { + "source": "npm:dashdash", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:data-urls": [ + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms", + "type": "static" + } + ], + "npm:decompress-response": [ + { + "source": "npm:decompress-response", + "target": "npm:mimic-response@3.1.0", + "type": "static" + } + ], + "npm:default-gateway": [ + { + "source": "npm:default-gateway", + "target": "npm:execa", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + } + ], + "npm:define-data-property": [ + { + "source": "npm:define-data-property", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:define-properties": [ + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:detect-port": [ + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + } + ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:dns-packet": [ + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + } + ], + "npm:domexception": [ + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:dot-prop": [ + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + } + ], + "npm:duplexer2": [ + { + "source": "npm:duplexer2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:duplexify": [ + { + "source": "npm:duplexify", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:stream-shift", + "type": "static" + } + ], + "npm:easy-extender": [ + { + "source": "npm:easy-extender", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:eazy-logger": [ + { + "source": "npm:eazy-logger", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:ecc-jsbn": [ + { + "source": "npm:ecc-jsbn", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:ecdsa-sig-formatter": [ + { + "source": "npm:ecdsa-sig-formatter", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:ejs": [ + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + } + ], + "npm:encoding": [ + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + } + ], + "npm:end-of-stream": [ + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + } + ], + "npm:engine.io": [ + { + "source": "npm:engine.io", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cookie@0.4.2", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:ws@8.11.0", + "type": "static" + } + ], + "npm:engine.io-client": [ + { + "source": "npm:engine.io-client", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:ws@8.11.0", + "type": "static" + }, + { + "source": "npm:engine.io-client", + "target": "npm:xmlhttprequest-ssl", + "type": "static" + } + ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:enquirer": [ + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + } + ], + "npm:env-ci": [ + { + "source": "npm:env-ci", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:env-ci", + "target": "npm:java-properties", + "type": "static" + } + ], + "npm:errno": [ + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:errorhandler": [ + { + "source": "npm:errorhandler", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:escape-html", + "type": "static" + } + ], + "npm:es-abstract": [ + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:es-set-tostringtag": [ + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:es-to-primitive": [ + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:esbuild": [ + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ia32", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-loong64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-mips64el", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ppc64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-riscv64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-s390x", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/sunos-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-arm64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-ia32", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-x64", + "type": "static" + } + ], + "npm:escodegen": [ + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:eslint": [ + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:find-up@5.0.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals@13.24.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + } + ], + "npm:eslint-config-prettier": [ + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "type": "static" + } + ], + "npm:eslint-plugin-cypress": [ + { + "source": "npm:eslint-plugin-cypress", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-cypress", + "target": "npm:globals@13.24.0", + "type": "static" + } + ], + "npm:eslint-scope": [ + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:find-up@5.0.0": [ + { + "source": "npm:find-up@5.0.0", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up@5.0.0", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:locate-path@6.0.0": [ + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + } + ], + "npm:p-locate@5.0.0": [ + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:espree": [ + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:executable": [ + { + "source": "npm:executable", + "target": "npm:pify", + "type": "static" + } + ], + "npm:expand-range": [ + { + "source": "npm:expand-range", + "target": "npm:fill-range@2.2.4", + "type": "static" + } + ], + "npm:fill-range@2.2.4": [ + { + "source": "npm:fill-range@2.2.4", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:isobject@2.1.0", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:randomatic", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:repeat-element", + "type": "static" + }, + { + "source": "npm:fill-range@2.2.4", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:isobject@2.1.0": [ + { + "source": "npm:isobject@2.1.0", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:expect": [ + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:express": [ + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser@1.20.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler@1.2.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send@0.18.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static@1.15.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + } + ], + "npm:express-urlrewrite": [ + { + "source": "npm:express-urlrewrite", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:express-urlrewrite", + "target": "npm:path-to-regexp@1.8.0", + "type": "static" + } + ], + "npm:path-to-regexp@1.8.0": [ + { + "source": "npm:path-to-regexp@1.8.0", + "target": "npm:isarray@0.0.1", + "type": "static" + } + ], + "npm:body-parser@1.20.1": [ + { + "source": "npm:body-parser@1.20.1", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:qs@6.11.0", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:raw-body@2.5.1", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser@1.20.1", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:finalhandler@1.2.0": [ + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:raw-body@2.5.1": [ + { + "source": "npm:raw-body@2.5.1", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body@2.5.1", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:send@0.18.0": [ + { + "source": "npm:send@0.18.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:on-finished@2.4.1", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send@0.18.0", + "target": "npm:statuses@2.0.1", + "type": "static" + } + ], + "npm:serve-static@1.15.0": [ + { + "source": "npm:serve-static@1.15.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static@1.15.0", + "target": "npm:send@0.18.0", + "type": "static" + } + ], + "npm:ext-list": [ + { + "source": "npm:ext-list", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:ext-name": [ + { + "source": "npm:ext-name", + "target": "npm:ext-list", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:sort-keys-length", + "type": "static" + } + ], + "npm:extend-shallow": [ + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + } + ], + "npm:external-editor": [ + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + } + ], + "npm:tmp@0.0.33": [ + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:extract-zip": [ + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + } + ], + "npm:fast-glob": [ + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:faye-websocket": [ + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:fb-watchman": [ + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + } + ], + "npm:fd-slicer": [ + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + } + ], + "npm:figures": [ + { + "source": "npm:figures", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + } + ], + "npm:file-entry-cache": [ + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + } + ], + "npm:file-type": [ + { + "source": "npm:file-type", + "target": "npm:readable-web-to-node-stream", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:strtok3", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:token-types", + "type": "static" + } + ], + "npm:filelist": [ + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + } + ], + "npm:minimatch@5.1.6": [ + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion@2.0.1", + "type": "static" + } + ], + "npm:filenamify": [ + { + "source": "npm:filenamify", + "target": "npm:filename-reserved-regex", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:strip-outer", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:trim-repeated", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + } + ], + "npm:finalhandler": [ + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:find-cache-dir": [ + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-versions": [ + { + "source": "npm:find-versions", + "target": "npm:semver-regex", + "type": "static" + } + ], + "npm:flat-cache": [ + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:for-each": [ + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:foreground-child": [ + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.1.0", + "type": "static" + } + ], + "npm:fork-ts-checker-webpack-plugin": [ + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:ajv-keywords@3.5.2": [ + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv@6.12.6", + "type": "static" + } + ], + "npm:fs-extra@10.1.0": [ + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:schema-utils@3.3.0": [ + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + } + ], + "npm:form-data": [ + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:from2": [ + { + "source": "npm:from2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:fs-extra": [ + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:function.prototype.name": [ + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + } + ], + "npm:get-intrinsic": [ + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:getos": [ + { + "source": "npm:getos", + "target": "npm:async", + "type": "static" + } + ], + "npm:getpass": [ + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:git-log-parser": [ + { + "source": "npm:git-log-parser", + "target": "npm:argv-formatter", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:spawn-error-forwarder", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:split2@1.0.0", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:stream-combiner2", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:git-log-parser", + "target": "npm:traverse", + "type": "static" + } + ], + "npm:split2@1.0.0": [ + { + "source": "npm:split2@1.0.0", + "target": "npm:through2", + "type": "static" + } + ], + "npm:glob": [ + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:global-dirs": [ + { + "source": "npm:global-dirs", + "target": "npm:ini@2.0.0", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + } + ], + "npm:gopd": [ + { + "source": "npm:gopd", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:got": [ + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:gray-matter": [ + { + "source": "npm:gray-matter", + "target": "npm:ansi-red", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:coffee-script", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:toml", + "type": "static" + } + ], + "npm:gulp-header": [ + { + "source": "npm:gulp-header", + "target": "npm:concat-with-sourcemaps", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:lodash.template", + "type": "static" + }, + { + "source": "npm:gulp-header", + "target": "npm:through2", + "type": "static" + } + ], + "npm:gzip-size": [ + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + } + ], + "npm:handlebars": [ + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map@0.6.1", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + } + ], + "npm:has-property-descriptors": [ + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:hasown": [ + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:hdr-histogram-js": [ + { + "source": "npm:hdr-histogram-js", + "target": "npm:@assemblyscript/loader", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:hdr-histogram-js", + "target": "npm:pako", + "type": "static" + } + ], + "npm:hosted-git-info": [ + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache@10.1.0", + "type": "static" + } + ], + "npm:hpack.js": [ + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:html-encoding-sniffer": [ + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + } + ], + "npm:htmlparser2": [ + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities", + "type": "static" + } + ], + "npm:http-errors": [ + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses@2.0.1", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + } + ], + "npm:http-proxy": [ + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:http-proxy-agent": [ + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:agent-base@6.0.2": [ + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-middleware": [ + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:http-server": [ + { + "source": "npm:http-server", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:corser", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:secure-compare", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:union", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:url-join", + "type": "static" + } + ], + "npm:http-signature": [ + { + "source": "npm:http-signature", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:jsprim", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:sshpk", + "type": "static" + } + ], + "npm:http2-wrapper": [ + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + } + ], + "npm:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:icss-utils": [ + { + "source": "npm:icss-utils", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:identity-obj-proxy": [ + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + } + ], + "npm:ignore-walk": [ + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@9.0.3", + "type": "static" + } + ], + "npm:import-fresh": [ + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + } + ], + "npm:import-from-esm": [ + { + "source": "npm:import-from-esm", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:import-from-esm", + "target": "npm:import-meta-resolve", + "type": "static" + } + ], + "npm:import-local": [ + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + } + ], + "npm:inflight": [ + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:inquirer": [ + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:inquirer-autocomplete-prompt": [ + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer-autocomplete-prompt", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:into-stream": [ + { + "source": "npm:into-stream", + "target": "npm:from2", + "type": "static" + }, + { + "source": "npm:into-stream", + "target": "npm:p-is-promise", + "type": "static" + } + ], + "npm:is-array-buffer": [ + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:is-bigint": [ + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + } + ], + "npm:is-binary-path": [ + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + } + ], + "npm:is-boolean-object": [ + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-ci": [ + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + } + ], + "npm:is-core-module": [ + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:is-date-object": [ + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-glob": [ + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-installed-globally": [ + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + } + ], + "npm:is-number": [ + { + "source": "npm:is-number", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:is-number-like": [ + { + "source": "npm:is-number-like", + "target": "npm:lodash.isfinite", + "type": "static" + } + ], + "npm:is-number-object": [ + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-plain-object": [ + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:is-regex": [ + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-shared-array-buffer": [ + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-symbol": [ + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:is-text-path": [ + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + } + ], + "npm:is-typed-array": [ + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:is-weakref": [ + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-wsl": [ + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + } + ], + "npm:issue-parser": [ + { + "source": "npm:issue-parser", + "target": "npm:lodash.capitalize", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.escaperegexp", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:issue-parser", + "target": "npm:lodash.uniqby", + "type": "static" + } + ], + "npm:istanbul-lib-instrument": [ + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + } + ], + "npm:istanbul-lib-report": [ + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:make-dir@4.0.0": [ + { + "source": "npm:make-dir@4.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:istanbul-lib-source-maps": [ + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:istanbul-reports": [ + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + } + ], + "npm:jackspeak": [ + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + } + ], + "npm:jake": [ + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch@3.1.2", + "type": "static" + } + ], + "npm:jest": [ + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + } + ], + "npm:jest-changed-files": [ + { + "source": "npm:jest-changed-files", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:jest-circus": [ + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent@1.5.1", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:babel-plugin-macros@3.1.0": [ + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:cosmiconfig@7.1.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:dedent@1.5.1": [ + { + "source": "npm:dedent@1.5.1", + "target": "npm:babel-plugin-macros@3.1.0", + "type": "static" + } + ], + "npm:jest-cli": [ + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:jest-config": [ + { + "source": "npm:jest-config", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:jest-diff": [ + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-docblock": [ + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline", + "type": "static" + } + ], + "npm:jest-each": [ + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-environment-jsdom": [ + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + } + ], + "npm:jest-environment-node": [ + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-haste-map": [ + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:jest-leak-detector": [ + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-matcher-utils": [ + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-message-util": [ + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-mock": [ + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-pnp-resolver": [ + { + "source": "npm:jest-pnp-resolver", + "target": "npm:jest-resolve", + "type": "static" + } + ], + "npm:jest-preset-angular": [ + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular-devkit/build-angular", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/compiler-cli", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/core", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:@angular/platform-browser-dynamic", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:esbuild-wasm", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:ts-jest", + "type": "static" + }, + { + "source": "npm:jest-preset-angular", + "target": "npm:esbuild", + "type": "static" + } + ], + "npm:jest-resolve": [ + { + "source": "npm:jest-resolve", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports@2.0.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + } + ], + "npm:jest-resolve-dependencies": [ + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:jest-runner": [ + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + } + ], + "npm:source-map-support@0.5.13": [ + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:jest-runtime": [ + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:jest-snapshot": [ + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jest-util": [ + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:jest-validate": [ + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-watcher": [ + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + } + ], + "npm:jest-worker": [ + { + "source": "npm:jest-worker", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse@2.0.1", + "type": "static" + } + ], + "npm:jsdom": [ + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent@5.0.1", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:form-data@4.0.0": [ + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:https-proxy-agent@5.0.1": [ + { + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.1", + "target": "npm:debug", + "type": "static" + } + ], + "npm:json-parse-helpfulerror": [ + { + "source": "npm:json-parse-helpfulerror", + "target": "npm:jju", + "type": "static" + } + ], + "npm:json-server": [ + { + "source": "npm:json-server", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:connect-pause", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:errorhandler", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:express-urlrewrite", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:json-parse-helpfulerror", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lodash-id", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:lowdb", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:method-override", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:morgan", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:server-destroy", + "type": "static" + }, + { + "source": "npm:json-server", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:jsonc-eslint-parser": [ + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:JSONStream": [ + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + } + ], + "npm:jsonwebtoken": [ + { + "source": "npm:jsonwebtoken", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isboolean", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isinteger", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isnumber", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jsprim": [ + { + "source": "npm:jsprim", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:verror", + "type": "static" + } + ], + "npm:jwa": [ + { + "source": "npm:jwa", + "target": "npm:buffer-equal-constant-time", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:ecdsa-sig-formatter", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:jws": [ + { + "source": "npm:jws", + "target": "npm:jwa", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:karma-source-map-support": [ + { + "source": "npm:karma-source-map-support", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:keygrip": [ + { + "source": "npm:keygrip", + "target": "npm:tsscmp", + "type": "static" + } + ], + "npm:keyv": [ + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + } + ], + "npm:kind-of": [ + { + "source": "npm:kind-of", + "target": "npm:is-buffer", + "type": "static" + } + ], + "npm:launch-editor": [ + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + } + ], + "npm:lazy-cache": [ + { + "source": "npm:lazy-cache", + "target": "npm:set-getter", + "type": "static" + } + ], + "npm:less": [ + { + "source": "npm:less", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:less-loader": [ + { + "source": "npm:less-loader", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:klona", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:license-webpack-plugin": [ + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:lint-staged": [ + { + "source": "npm:lint-staged", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@7.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:lilconfig@2.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2@6.6.1", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:yaml@2.3.1", + "type": "static" + } + ], + "npm:ansi-escapes@5.0.0": [ + { + "source": "npm:ansi-escapes@5.0.0", + "target": "npm:type-fest@1.4.0", + "type": "static" + } + ], + "npm:cli-cursor@4.0.0": [ + { + "source": "npm:cli-cursor@4.0.0", + "target": "npm:restore-cursor@4.0.0", + "type": "static" + } + ], + "npm:cli-truncate@3.1.0": [ + { + "source": "npm:cli-truncate@3.1.0", + "target": "npm:slice-ansi@5.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate@3.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + } + ], + "npm:execa@7.2.0": [ + { + "source": "npm:execa@7.2.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + } + ], + "npm:listr2@6.6.1": [ + { + "source": "npm:listr2@6.6.1", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:cli-truncate@3.1.0", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:eventemitter3@5.0.1", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:log-update@5.0.1", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@6.6.1", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:log-update@5.0.1": [ + { + "source": "npm:log-update@5.0.1", + "target": "npm:ansi-escapes@5.0.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:cli-cursor@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:slice-ansi@5.0.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:log-update@5.0.1", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:restore-cursor@4.0.0": [ + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + } + ], + "npm:slice-ansi@5.0.0": [ + { + "source": "npm:slice-ansi@5.0.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi@5.0.0", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + } + ], + "npm:list-item": [ + { + "source": "npm:list-item", + "target": "npm:expand-range", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:list-item", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:listr2": [ + { + "source": "npm:listr2", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + } + ], + "npm:load-json-file": [ + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@3.0.0", + "type": "static" + } + ], + "npm:parse-json@4.0.0": [ + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + } + ], + "npm:localtunnel": [ + { + "source": "npm:localtunnel", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:debug@4.3.2", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:openurl", + "type": "static" + }, + { + "source": "npm:localtunnel", + "target": "npm:yargs@17.1.1", + "type": "static" + } + ], + "npm:cliui@7.0.4": [ + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi@7.0.0", + "type": "static" + } + ], + "npm:debug@4.3.2": [ + { + "source": "npm:debug@4.3.2", + "target": "npm:ms", + "type": "static" + } + ], + "npm:yargs@17.1.1": [ + { + "source": "npm:yargs@17.1.1", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@17.1.1", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + } + ], + "npm:lockfile": [ + { + "source": "npm:lockfile", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:lodash.template": [ + { + "source": "npm:lodash.template", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.templatesettings", + "type": "static" + } + ], + "npm:lodash.templatesettings": [ + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash._reinterpolate", + "type": "static" + } + ], + "npm:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + } + ], + "npm:log-update": [ + { + "source": "npm:log-update", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:slice-ansi@4.0.0": [ + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:lowdb": [ + { + "source": "npm:lowdb", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:lowdb", + "target": "npm:steno", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:magic-string": [ + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:make-dir": [ + { + "source": "npm:make-dir", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:make-fetch-happen": [ + { + "source": "npm:make-fetch-happen", + "target": "npm:@npmcli/agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:makeerror": [ + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + } + ], + "npm:markdown-toc": [ + { + "source": "npm:markdown-toc", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:diacritics-map", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:gray-matter", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:lazy-cache", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:list-item", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:markdown-link", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:mixin-deep", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:remarkable", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:markdown-toc", + "target": "npm:strip-color", + "type": "static" + } + ], + "npm:marked-terminal": [ + { + "source": "npm:marked-terminal", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cardinal", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:supports-hyperlinks", + "type": "static" + } + ], + "npm:ansi-escapes@6.2.0": [ + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.13.1", + "type": "static" + } + ], + "npm:memfs": [ + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + } + ], + "npm:method-override": [ + { + "source": "npm:method-override", + "target": "npm:debug@3.1.0", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:method-override", + "target": "npm:vary", + "type": "static" + } + ], + "npm:debug@3.1.0": [ + { + "source": "npm:debug@3.1.0", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:mini-css-extract-plugin": [ + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-fetch": [ + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-flush": [ + { + "source": "npm:minipass-flush", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass@3.3.6": [ + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:minipass-json-stream": [ + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-pipeline": [ + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-sized": [ + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:mixin-deep": [ + { + "source": "npm:mixin-deep", + "target": "npm:for-in", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:is-extendable@1.0.1", + "type": "static" + } + ], + "npm:is-extendable@1.0.1": [ + { + "source": "npm:is-extendable@1.0.1", + "target": "npm:is-plain-object", + "type": "static" + } + ], + "npm:mkdirp": [ + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:morgan": [ + { + "source": "npm:morgan", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:morgan", + "target": "npm:on-headers", + "type": "static" + } + ], + "npm:multicast-dns": [ + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + } + ], + "npm:mv": [ + { + "source": "npm:mv", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:ncp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:rimraf@2.4.5", + "type": "static" + } + ], + "npm:glob@6.0.4": [ + { + "source": "npm:glob@6.0.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:rimraf@2.4.5": [ + { + "source": "npm:rimraf@2.4.5", + "target": "npm:glob@6.0.4", + "type": "static" + } + ], + "npm:needle": [ + { + "source": "npm:needle", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:sax", + "type": "static" + } + ], + "npm:nice-napi": [ + { + "source": "npm:nice-napi", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:nice-napi", + "target": "npm:node-gyp-build", + "type": "static" + } + ], + "npm:node-emoji": [ + { + "source": "npm:node-emoji", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:emojilib", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:skin-tone", + "type": "static" + } + ], + "npm:node-fetch": [ + { + "source": "npm:node-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + } + ], + "npm:whatwg-url@5.0.0": [ + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + } + ], + "npm:node-gyp": [ + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:exponential-backoff", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which@4.0.0", + "type": "static" + } + ], + "npm:nopt": [ + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + } + ], + "npm:normalize-package-data": [ + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:npm": [ + { + "source": "npm:npm", + "target": "npm:@isaacs/string-locale-compare@1.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/config@8.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/package-json@5.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:archy@1.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cli-columns@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:fastest-levenshtein@1.0.16", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:init-package-json@6.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:is-cidr@5.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmaccess@8.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmdiff@6.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmexec@7.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmfund@5.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmhook@10.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmorg@6.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmpack@6.0.4", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmpublish@9.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmsearch@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmteam@6.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:libnpmversion@5.0.2", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ms@2.1.3", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-audit-report@5.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-profile@9.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npm-user-validate@2.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:parse-conflict-json@3.0.1", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:qrcode-terminal@0.12.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:supports-color@9.4.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:tiny-relative-date@1.3.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:treeverse@3.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:which@4.0.0", + "type": "static" + }, + { + "source": "npm:npm", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + } + ], + "npm:npm-bundled": [ + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-install-checks": [ + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-package-arg": [ + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:npm-packlist": [ + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + } + ], + "npm:npm-pick-manifest": [ + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-registry-fetch": [ + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + } + ], + "npm:npm-run-all": [ + { + "source": "npm:npm-run-all", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:memorystream", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:pidtree@0.3.1", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:npm-run-all", + "target": "npm:string.prototype.padend", + "type": "static" + } + ], + "npm:cross-spawn@6.0.5": [ + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key@2.0.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key", + "type": "static" + } + ], + "npm:@npmcli/arborist@7.2.2": [ + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@isaacs/string-locale-compare@1.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/metavuln-calculator@7.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/name-from-folder@2.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/package-json@5.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/query@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:bin-links@4.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:common-ancestor-path@1.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:json-stringify-nice@1.1.4", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:parse-conflict-json@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:promise-all-reject-late@1.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:promise-call-limit@1.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:treeverse@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/arborist@7.2.2", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/config@8.0.3": [ + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:@npmcli/map-workspaces@3.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/config@8.0.3", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/disparity-colors@3.0.0": [ + { + "source": "npm:@npmcli/disparity-colors@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + } + ], + "npm:@npmcli/map-workspaces@3.0.4": [ + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:@npmcli/name-from-folder@2.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@npmcli/map-workspaces@3.0.4", + "target": "npm:read-package-json-fast", + "type": "static" + } + ], + "npm:@npmcli/metavuln-calculator@7.0.0": [ + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:@npmcli/metavuln-calculator@7.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/package-json@5.0.0": [ + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/package-json@5.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/query@3.0.1": [ + { + "source": "npm:@npmcli/query@3.0.1", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:are-we-there-yet@4.0.1": [ + { + "source": "npm:are-we-there-yet@4.0.1", + "target": "npm:delegates@1.0.0", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@4.0.1", + "target": "npm:readable-stream@4.4.2", + "type": "static" + } + ], + "npm:bin-links@4.0.3": [ + { + "source": "npm:bin-links@4.0.3", + "target": "npm:cmd-shim@6.0.2", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:read-cmd-shim@4.0.0", + "type": "static" + }, + { + "source": "npm:bin-links@4.0.3", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + } + ], + "npm:buffer@6.0.3": [ + { + "source": "npm:buffer@6.0.3", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:cidr-regex@4.0.3": [ + { + "source": "npm:cidr-regex@4.0.3", + "target": "npm:ip-regex@5.0.0", + "type": "static" + } + ], + "npm:cli-columns@4.0.0": [ + { + "source": "npm:cli-columns@4.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-columns@4.0.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:gauge@5.0.1": [ + { + "source": "npm:gauge@5.0.1", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:color-support@1.1.3", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:console-control-strings@1.1.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:has-unicode@2.0.1", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:gauge@5.0.1", + "target": "npm:wide-align@1.1.5", + "type": "static" + } + ], + "npm:init-package-json@6.0.0": [ + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:promzard@1.0.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json@6.0.0", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:is-cidr@5.0.3": [ + { + "source": "npm:is-cidr@5.0.3", + "target": "npm:cidr-regex@4.0.3", + "type": "static" + } + ], + "npm:libnpmaccess@8.0.2": [ + { + "source": "npm:libnpmaccess@8.0.2", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmaccess@8.0.2", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmdiff@6.0.4": [ + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/disparity-colors@3.0.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:diff@5.1.0", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmdiff@6.0.4", + "target": "npm:tar", + "type": "static" + } + ], + "npm:libnpmexec@7.0.5": [ + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:npmlog@7.0.1", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:pacote@17.0.5", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:read@2.1.0", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmexec@7.0.5", + "target": "npm:walk-up-path@3.0.1", + "type": "static" + } + ], + "npm:libnpmfund@5.0.2": [ + { + "source": "npm:libnpmfund@5.0.2", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + } + ], + "npm:libnpmhook@10.0.1": [ + { + "source": "npm:libnpmhook@10.0.1", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:libnpmhook@10.0.1", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmorg@6.0.2": [ + { + "source": "npm:libnpmorg@6.0.2", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:libnpmorg@6.0.2", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmpack@6.0.4": [ + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:@npmcli/arborist@7.2.2", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpack@6.0.4", + "target": "npm:pacote@17.0.5", + "type": "static" + } + ], + "npm:libnpmpublish@9.0.3": [ + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:ci-info@4.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish@9.0.3", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:libnpmsearch@7.0.1": [ + { + "source": "npm:libnpmsearch@7.0.1", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmteam@6.0.1": [ + { + "source": "npm:libnpmteam@6.0.1", + "target": "npm:aproba@2.0.0", + "type": "static" + }, + { + "source": "npm:libnpmteam@6.0.1", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmversion@5.0.2": [ + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmversion@5.0.2", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-profile@9.0.0": [ + { + "source": "npm:npm-profile@9.0.0", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:npm-profile@9.0.0", + "target": "npm:proc-log", + "type": "static" + } + ], + "npm:npmlog@7.0.1": [ + { + "source": "npm:npmlog@7.0.1", + "target": "npm:are-we-there-yet@4.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:console-control-strings@1.1.0", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:gauge@5.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@7.0.1", + "target": "npm:set-blocking@2.0.0", + "type": "static" + } + ], + "npm:p-map": [ + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:pacote@17.0.5": [ + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote@17.0.5", + "target": "npm:tar", + "type": "static" + } + ], + "npm:parse-conflict-json@3.0.1": [ + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:just-diff@6.0.2", + "type": "static" + }, + { + "source": "npm:parse-conflict-json@3.0.1", + "target": "npm:just-diff-apply@5.5.0", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.1.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:promise-retry": [ + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:promzard@1.0.0": [ + { + "source": "npm:promzard@1.0.0", + "target": "npm:read@2.1.0", + "type": "static" + } + ], + "npm:read@2.1.0": [ + { + "source": "npm:read@2.1.0", + "target": "npm:mute-stream@1.0.0", + "type": "static" + } + ], + "npm:read-package-json": [ + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:read-package-json-fast": [ + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:readable-stream@4.4.2": [ + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:readable-stream@4.4.2", + "target": "npm:string_decoder@1.3.0", + "type": "static" + } + ], + "npm:semver": [ + { + "source": "npm:semver", + "target": "npm:lru-cache@6.0.0", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:sigstore": [ + { + "source": "npm:sigstore", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/sign", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + } + ], + "npm:socks": [ + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + } + ], + "npm:socks-proxy-agent": [ + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + } + ], + "npm:spdx-correct": [ + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:spdx-expression-parse": [ + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:string_decoder@1.3.0": [ + { + "source": "npm:string_decoder@1.3.0", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:string-width": [ + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width-cjs": [ + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:tar": [ + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:fs-minipass@2.1.0": [ + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:tuf-js": [ + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:validate-npm-package-license": [ + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + } + ], + "npm:validate-npm-package-name": [ + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + } + ], + "npm:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:wide-align@1.1.5": [ + { + "source": "npm:wide-align@1.1.5", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:wrap-ansi-cjs": [ + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:write-file-atomic@5.0.1": [ + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:signal-exit@4.1.0", + "type": "static" + } + ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:nx": [ + { + "source": "npm:nx", + "target": "npm:@swc-node/register", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nrwl/tao", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios@1.6.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + } + ], + "npm:nx-release": [ + { + "source": "npm:nx-release", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:@nx/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:nx-release", + "target": "npm:process", + "type": "static" + } + ], + "npm:@nrwl/devkit@16.5.0": [ + { + "source": "npm:@nrwl/devkit@16.5.0", + "target": "npm:@nx/devkit@16.5.0", + "type": "static" + } + ], + "npm:@nx/devkit@16.5.0": [ + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:@nrwl/devkit@16.5.0", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.0", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:axios@1.6.2": [ + { + "source": "npm:axios@1.6.2", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios@1.6.2", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios@1.6.2", + "target": "npm:proxy-from-env@1.1.0", + "type": "static" + } + ], + "npm:glob@7.1.4": [ + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:object.assign": [ + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.pick": [ + { + "source": "npm:object.pick", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:on-finished": [ + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:open": [ + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:opn": [ + { + "source": "npm:opn", + "target": "npm:is-wsl@1.1.0", + "type": "static" + } + ], + "npm:optionator": [ + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:ora": [ + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:os-filter-obj": [ + { + "source": "npm:os-filter-obj", + "target": "npm:arch", + "type": "static" + } + ], + "npm:p-filter": [ + { + "source": "npm:p-filter", + "target": "npm:p-map@5.5.0", + "type": "static" + } + ], + "npm:aggregate-error@4.0.1": [ + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:clean-stack@4.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:indent-string@5.0.0", + "type": "static" + } + ], + "npm:clean-stack@4.2.0": [ + { + "source": "npm:clean-stack@4.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:p-map@5.5.0": [ + { + "source": "npm:p-map@5.5.0", + "target": "npm:aggregate-error@4.0.1", + "type": "static" + } + ], + "npm:p-limit": [ + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + } + ], + "npm:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-limit@2.3.0": [ + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + } + ], + "npm:pacote": [ + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + } + ], + "npm:parent-module": [ + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parse-json": [ + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + } + ], + "npm:parse5-html-rewriting-stream": [ + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:parse5-html-rewriting-stream", + "target": "npm:parse5-sax-parser", + "type": "static" + } + ], + "npm:parse5-sax-parser": [ + { + "source": "npm:parse5-sax-parser", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:pino": [ + { + "source": "npm:pino", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:fast-redact", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:on-exit-leak-free", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-abstract-transport@0.5.0", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-std-serializers", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:quick-format-unescaped", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:sonic-boom@2.8.0", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:thread-stream", + "type": "static" + } + ], + "npm:pino-abstract-transport": [ + { + "source": "npm:pino-abstract-transport", + "target": "npm:readable-stream@4.5.1", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport", + "target": "npm:split2", + "type": "static" + } + ], + "npm:readable-stream@4.5.1": [ + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:readable-stream@4.5.1", + "target": "npm:string_decoder@1.3.0", + "type": "static" + } + ], + "npm:pino-abstract-transport@0.5.0": [ + { + "source": "npm:pino-abstract-transport@0.5.0", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport@0.5.0", + "target": "npm:split2", + "type": "static" + } + ], + "npm:sonic-boom@2.8.0": [ + { + "source": "npm:sonic-boom@2.8.0", + "target": "npm:atomic-sleep", + "type": "static" + } + ], + "npm:piscina": [ + { + "source": "npm:piscina", + "target": "npm:eventemitter-asyncresource", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:hdr-histogram-js", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:hdr-histogram-percentiles-obj", + "type": "static" + }, + { + "source": "npm:piscina", + "target": "npm:nice-napi", + "type": "static" + } + ], + "npm:pkg-conf": [ + { + "source": "npm:pkg-conf", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:pkg-conf", + "target": "npm:load-json-file", + "type": "static" + } + ], + "npm:find-up@2.1.0": [ + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + } + ], + "npm:locate-path@2.0.0": [ + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + } + ], + "npm:p-limit@1.3.0": [ + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + } + ], + "npm:p-locate@2.0.0": [ + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + } + ], + "npm:pkg-dir": [ + { + "source": "npm:pkg-dir", + "target": "npm:find-up", + "type": "static" + } + ], + "npm:please-upgrade-node": [ + { + "source": "npm:please-upgrade-node", + "target": "npm:semver-compare", + "type": "static" + } + ], + "npm:portfinder": [ + { + "source": "npm:portfinder", + "target": "npm:async@2.6.4", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:mkdirp", + "type": "static" + } + ], + "npm:async@2.6.4": [ + { + "source": "npm:async@2.6.4", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:portscanner": [ + { + "source": "npm:portscanner", + "target": "npm:async@2.6.4", + "type": "static" + }, + { + "source": "npm:portscanner", + "target": "npm:is-number-like", + "type": "static" + } + ], + "npm:postcss": [ + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:postcss-calc": [ + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-colormin": [ + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-convert-values": [ + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-discard-comments": [ + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-duplicates": [ + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-empty": [ + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-overridden": [ + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-import": [ + { + "source": "npm:postcss-import", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:read-cache", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:postcss-loader": [ + { + "source": "npm:postcss-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:cosmiconfig@8.3.6": [ + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:postcss-merge-longhand": [ + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + } + ], + "npm:postcss-merge-rules": [ + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-minify-font-values": [ + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-gradients": [ + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-params": [ + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-selectors": [ + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-extract-imports": [ + { + "source": "npm:postcss-modules-extract-imports", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default": [ + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-modules-scope": [ + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-values": [ + { + "source": "npm:postcss-modules-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + } + ], + "npm:postcss-normalize-charset": [ + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-normalize-display-values": [ + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-positions": [ + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-repeat-style": [ + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-string": [ + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-timing-functions": [ + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-unicode": [ + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-url": [ + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-whitespace": [ + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-ordered-values": [ + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-reduce-initial": [ + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + } + ], + "npm:postcss-reduce-transforms": [ + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-svgo": [ + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:postcss-unique-selectors": [ + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:pretty-format": [ + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:prompts": [ + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + } + ], + "npm:proxy-addr": [ + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:qs": [ + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:randomatic": [ + { + "source": "npm:randomatic", + "target": "npm:is-number@4.0.0", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:kind-of@6.0.3", + "type": "static" + }, + { + "source": "npm:randomatic", + "target": "npm:math-random", + "type": "static" + } + ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:raw-body": [ + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:rc": [ + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini@1.3.8", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + } + ], + "npm:read-cache": [ + { + "source": "npm:read-cache", + "target": "npm:pify", + "type": "static" + } + ], + "npm:read-pkg": [ + { + "source": "npm:read-pkg", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + } + ], + "npm:read-pkg-up": [ + { + "source": "npm:read-pkg-up", + "target": "npm:find-up-simple", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@9.0.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@4.8.3", + "type": "static" + } + ], + "npm:normalize-package-data@2.5.0": [ + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:path-type@3.0.0": [ + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-web-to-node-stream": [ + { + "source": "npm:readable-web-to-node-stream", + "target": "npm:readable-stream@3.6.2", + "type": "static" + } + ], + "npm:readdirp": [ + { + "source": "npm:readdirp", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:redeyed": [ + { + "source": "npm:redeyed", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:regenerate-unicode-properties": [ + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + } + ], + "npm:regenerator-transform": [ + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:regexp.prototype.flags": [ + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:regexpu-core": [ + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + } + ], + "npm:registry-auth-token": [ + { + "source": "npm:registry-auth-token", + "target": "npm:@pnpm/npm-conf", + "type": "static" + } + ], + "npm:regjsparser": [ + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + } + ], + "npm:remarkable": [ + { + "source": "npm:remarkable", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:remarkable", + "target": "npm:autolinker", + "type": "static" + } + ], + "npm:replace-json-property": [ + { + "source": "npm:replace-json-property", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:replace-json-property", + "target": "npm:jsonfile@5.0.0", + "type": "static" + } + ], + "npm:jsonfile@5.0.0": [ + { + "source": "npm:jsonfile@5.0.0", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:jsonfile@5.0.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:request-progress": [ + { + "source": "npm:request-progress", + "target": "npm:throttleit", + "type": "static" + } + ], + "npm:resolve": [ + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve-url-loader": [ + { + "source": "npm:resolve-url-loader", + "target": "npm:adjust-sourcemap-loader", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:loader-utils@2.0.4", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:resolve-url-loader", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:resp-modifier": [ + { + "source": "npm:resp-modifier", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:resp-modifier", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:responselike": [ + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + } + ], + "npm:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:rimraf": [ + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rollup": [ + { + "source": "npm:rollup", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:run-parallel": [ + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + } + ], + "npm:rxjs": [ + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:safe-array-concat": [ + { + "source": "npm:safe-array-concat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:isarray@2.0.5", + "type": "static" + } + ], + "npm:safe-regex-test": [ + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + } + ], + "npm:sass": [ + { + "source": "npm:sass", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable@4.3.4", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:sass-loader": [ + { + "source": "npm:sass-loader", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + } + ], + "npm:saxes": [ + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + } + ], + "npm:schema-utils": [ + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:selfsigned": [ + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + } + ], + "npm:semantic-release": [ + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/commit-analyzer", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/error@4.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/github", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/npm", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:@semantic-release/release-notes-generator", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:aggregate-error@5.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:env-ci", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:execa@8.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:figures@6.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:find-versions", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:git-log-parser", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:hook-std", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:import-from-esm", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:marked-terminal", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:p-each-series", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:p-reduce@3.0.0", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:signale", + "type": "static" + }, + { + "source": "npm:semantic-release", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:figures@6.0.1": [ + { + "source": "npm:figures@6.0.1", + "target": "npm:is-unicode-supported@2.0.0", + "type": "static" + } + ], + "npm:semver-diff": [ + { + "source": "npm:semver-diff", + "target": "npm:semver", + "type": "static" + } + ], + "npm:semver-truncate": [ + { + "source": "npm:semver-truncate", + "target": "npm:semver", + "type": "static" + } + ], + "npm:send": [ + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy@1.0.4", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime@1.4.1", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses@1.4.0", + "type": "static" + } + ], + "npm:http-errors@1.6.3": [ + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.4.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + } + ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serve-index": [ + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + } + ], + "npm:serve-static": [ + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + } + ], + "npm:set-function-length": [ + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-function-name": [ + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-getter": [ + { + "source": "npm:set-getter", + "target": "npm:to-object-path", + "type": "static" + } + ], + "npm:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of@6.0.3", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + } + ], + "npm:signale": [ + { + "source": "npm:signale", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:figures@2.0.0", + "type": "static" + }, + { + "source": "npm:signale", + "target": "npm:pkg-conf", + "type": "static" + } + ], + "npm:figures@2.0.0": [ + { + "source": "npm:figures@2.0.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + } + ], + "npm:skin-tone": [ + { + "source": "npm:skin-tone", + "target": "npm:unicode-emoji-modifier-base", + "type": "static" + } + ], + "npm:slice-ansi": [ + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:socket.io": [ + { + "source": "npm:socket.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:engine.io", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-adapter", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-parser", + "type": "static" + } + ], + "npm:socket.io-adapter": [ + { + "source": "npm:socket.io-adapter", + "target": "npm:ws@8.11.0", + "type": "static" + } + ], + "npm:socket.io-client": [ + { + "source": "npm:socket.io-client", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-client", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io-client", + "target": "npm:engine.io-client", + "type": "static" + }, + { + "source": "npm:socket.io-client", + "target": "npm:socket.io-parser", + "type": "static" + } + ], + "npm:socket.io-parser": [ + { + "source": "npm:socket.io-parser", + "target": "npm:@socket.io/component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:sockjs": [ + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:sonic-boom": [ + { + "source": "npm:sonic-boom", + "target": "npm:atomic-sleep", + "type": "static" + } + ], + "npm:sort-keys": [ + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + } + ], + "npm:sort-keys-length": [ + { + "source": "npm:sort-keys-length", + "target": "npm:sort-keys", + "type": "static" + } + ], + "npm:source-map-explorer": [ + { + "source": "npm:source-map-explorer", + "target": "npm:btoa", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:temp", + "type": "static" + }, + { + "source": "npm:source-map-explorer", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:open@7.4.2": [ + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:yargs@16.2.0": [ + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:source-map-loader": [ + { + "source": "npm:source-map-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:source-map-support": [ + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map@0.6.1", + "type": "static" + } + ], + "npm:spdy": [ + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + } + ], + "npm:spdy-transport": [ + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream@3.6.2", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:sshpk": [ + { + "source": "npm:sshpk", + "target": "npm:asn1", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:dashdash", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:getpass", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:stack-utils": [ + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:steno": [ + { + "source": "npm:steno", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:stream-combiner2": [ + { + "source": "npm:stream-combiner2", + "target": "npm:duplexer2", + "type": "static" + }, + { + "source": "npm:stream-combiner2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:stream-throttle": [ + { + "source": "npm:stream-throttle", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:stream-throttle", + "target": "npm:limiter", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:string-length": [ + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string.prototype.padend": [ + { + "source": "npm:string.prototype.padend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trim": [ + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trimend": [ + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trimstart": [ + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:strong-log-transformer": [ + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + } + ], + "npm:strtok3": [ + { + "source": "npm:strtok3", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:peek-readable", + "type": "static" + } + ], + "npm:style-loader": [ + { + "source": "npm:style-loader", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:stylehacks": [ + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:stylus": [ + { + "source": "npm:stylus", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:sax@1.2.4", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:stylus-loader": [ + { + "source": "npm:stylus-loader", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:normalize-path", + "type": "static" + } + ], + "npm:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-hyperlinks": [ + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:svgo": [ + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:tar-stream": [ + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream@3.6.2", + "type": "static" + } + ], + "npm:temp": [ + { + "source": "npm:temp", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:temp", + "target": "npm:rimraf@2.6.3", + "type": "static" + } + ], + "npm:rimraf@2.6.3": [ + { + "source": "npm:rimraf@2.6.3", + "target": "npm:glob", + "type": "static" + } + ], + "npm:tempy": [ + { + "source": "npm:tempy", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@2.19.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + } + ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + } + ], + "npm:jest-worker@27.5.1": [ + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:test-exclude": [ + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:thread-stream": [ + { + "source": "npm:thread-stream", + "target": "npm:real-require", + "type": "static" + } + ], + "npm:through2": [ + { + "source": "npm:through2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:tmp": [ + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:to-object-path": [ + { + "source": "npm:to-object-path", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number@7.0.0", + "type": "static" + } + ], + "npm:token-types": [ + { + "source": "npm:token-types", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:tough-cookie": [ + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:url-parse", + "type": "static" + } + ], + "npm:tr46": [ + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:trim-repeated": [ + { + "source": "npm:trim-repeated", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:ts-api-utils": [ + { + "source": "npm:ts-api-utils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:ts-jest": [ + { + "source": "npm:ts-jest", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:ts-loader": [ + { + "source": "npm:ts-loader", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:ts-node": [ + { + "source": "npm:ts-node", + "target": "npm:@swc/core", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + } + ], + "npm:tsconfig-paths": [ + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom@3.0.0", + "type": "static" + } + ], + "npm:tsconfig-paths-webpack-plugin": [ + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths", + "type": "static" + } + ], + "npm:tunnel-agent": [ + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:type-check": [ + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + } + ], + "npm:type-is": [ + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:typed-array-buffer": [ + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-length": [ + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-offset": [ + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-length": [ + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:unbox-primitive": [ + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + } + ], + "npm:undici": [ + { + "source": "npm:undici", + "target": "npm:@fastify/busboy", + "type": "static" + } + ], + "npm:unicode-match-property-ecmascript": [ + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + } + ], + "npm:union": [ + { + "source": "npm:union", + "target": "npm:qs", + "type": "static" + } + ], + "npm:unique-string": [ + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + } + ], + "npm:update-browserslist-db": [ + { + "source": "npm:update-browserslist-db", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:uri-js": [ + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:url-parse": [ + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:v8-to-istanbul": [ + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + } + ], + "npm:verdaccio": [ + { + "source": "npm:verdaccio", + "target": "npm:@cypress/request@3.0.1", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/local-storage", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/logger-7", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/middleware", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/search", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/signature", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/streams", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/tarball", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/ui-theme", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/url", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:@verdaccio/utils", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:clipanion", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:cookies", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:express-rate-limit", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:fast-safe-stringify", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:kleur@4.1.5", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mime@3.0.0", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:mv", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:pkginfo", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:verdaccio-audit", + "type": "static" + }, + { + "source": "npm:verdaccio", + "target": "npm:verdaccio-htpasswd", + "type": "static" + } + ], + "npm:verdaccio-audit": [ + { + "source": "npm:verdaccio-audit", + "target": "npm:@verdaccio/config", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:verdaccio-audit", + "target": "npm:https-proxy-agent@5.0.1", + "type": "static" + } + ], + "npm:verdaccio-htpasswd": [ + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:@verdaccio/core", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:@verdaccio/file-locking@12.0.0-next.1", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:apache-md5", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:bcryptjs", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:verdaccio-htpasswd", + "target": "npm:unix-crypt-td-js", + "type": "static" + } + ], + "npm:@verdaccio/file-locking@12.0.0-next.1": [ + { + "source": "npm:@verdaccio/file-locking@12.0.0-next.1", + "target": "npm:lockfile", + "type": "static" + } + ], + "npm:@cypress/request@3.0.1": [ + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request@3.0.1", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:verror": [ + { + "source": "npm:verror", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:core-util-is@1.0.2", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:extsprintf", + "type": "static" + } + ], + "npm:vite": [ + { + "source": "npm:vite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:esbuild@0.18.20", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:rollup", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:esbuild@0.18.20": [ + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-loong64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-mips64el@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ppc64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-riscv64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-s390x@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/netbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/openbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/sunos-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-x64@0.18.20", + "type": "static" + } + ], + "npm:w3c-xmlserializer": [ + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:walker": [ + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + } + ], + "npm:watchpack": [ + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:wbuf": [ + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:webpack": [ + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:webpack-dev-middleware": [ + { + "source": "npm:webpack-dev-middleware", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:webpack-dev-server": [ + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", "type": "static" }, { - "source": "tooling-nx-plugin-generators", - "target": "tooling-nx-plugin-validators", + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback@2.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.1.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware@5.3.3", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", "type": "static" } ], - "tooling-nx-plugin-validators": [ + "npm:webpack-dev-middleware@5.3.3": [ { - "source": "tooling-nx-plugin-validators", - "target": "tooling-nx-plugin-config", + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.3", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:webpack-merge": [ + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + } + ], + "npm:webpack-subresource-integrity": [ + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:typed-assert", + "type": "static" + } + ], + "npm:eslint-scope@5.1.1": [ + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + } + ], + "npm:websocket-driver": [ + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + } + ], + "npm:whatwg-encoding": [ + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:which-boxed-primitive": [ + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:which-typed-array": [ + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:wrap-ansi": [ + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:write-file-atomic": [ + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", "type": "static" } ], - "tooling-nx-plugin-config": [], - "ax-nx-plugin-workspace": [] + "npm:yauzl": [ + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + } + ], + "npm:yup": [ + { + "source": "npm:yup", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:nanoclone", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:property-expr", + "type": "static" + }, + { + "source": "npm:yup", + "target": "npm:toposort", + "type": "static" + } + ], + "npm:zone.js": [ + { + "source": "npm:zone.js", + "target": "npm:tslib", + "type": "static" + } + ] }, "version": "6.0" } diff --git a/package-lock.json b/package-lock.json index 564cddc..8f7b697 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3338,12 +3338,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/@eslint/eslintrc/node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", @@ -3359,18 +3353,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -3564,6 +3546,19 @@ "node": ">=8" } }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", @@ -7571,12 +7566,6 @@ "url": "https://opencollective.com/verdaccio" } }, - "node_modules/@verdaccio/config/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/@verdaccio/config/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -7586,18 +7575,6 @@ "balanced-match": "^1.0.0" } }, - "node_modules/@verdaccio/config/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@verdaccio/config/node_modules/minimatch": { "version": "7.4.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", @@ -8130,6 +8107,19 @@ "node": ">=14.15.0" } }, + "node_modules/@yarnpkg/parsers/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@zkochan/js-yaml": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", @@ -12582,12 +12572,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -12631,18 +12615,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -14241,6 +14213,19 @@ "node": ">=0.10.0" } }, + "node_modules/gray-matter/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/gulp-header": { "version": "1.8.12", "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", @@ -16425,18 +16410,23 @@ "dev": true }, "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, + "node_modules/js-yaml/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, "node_modules/jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", @@ -22688,12 +22678,6 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/nx/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/nx/node_modules/axios": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", @@ -22736,18 +22720,6 @@ "node": "*" } }, - "node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/nx/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -23991,12 +23963,6 @@ "webpack": "^5.0.0" } }, - "node_modules/postcss-loader/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/postcss-loader/node_modules/cosmiconfig": { "version": "8.3.6", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", @@ -24023,18 +23989,6 @@ } } }, - "node_modules/postcss-loader/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/postcss-merge-longhand": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.1.tgz", @@ -25854,13 +25808,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "peer": true - }, "node_modules/semantic-release/node_modules/clean-stack": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", @@ -26032,19 +25979,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "peer": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/semantic-release/node_modules/mimic-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", @@ -29111,24 +29045,6 @@ "node": ">= 6" } }, - "node_modules/verdaccio/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/verdaccio/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/verdaccio/node_modules/kleur": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",